Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 37 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ members = [
"poh",
"poh-bench",
"poseidon",
"precompiles",
"program-runtime",
"program-test",
"programs/address-lookup-table",
Expand Down Expand Up @@ -176,6 +177,7 @@ Inflector = "0.11.4"
axum = "0.7.9"
agave-banking-stage-ingress-types = { path = "banking-stage-ingress-types", version = "=2.2.6" }
agave-feature-set = { path = "feature-set", version = "=2.2.6" }
agave-precompiles = { path = "precompiles", version = "=2.2.6" }
agave-reserved-account-keys = { path = "reserved-account-keys", version = "=2.2.6" }
agave-transaction-view = { path = "transaction-view", version = "=2.2.6" }
aquamarine = "0.6.0"
Expand Down Expand Up @@ -407,7 +409,7 @@ solana-decode-error = "=2.2.1"
solana-define-syscall = "=2.2.1"
solana-derivation-path = "=2.2.1"
solana-download-utils = { path = "download-utils", version = "=2.2.6" }
solana-ed25519-program = "=2.2.1"
solana-ed25519-program = "=2.2.2"
solana-entry = { path = "entry", version = "=2.2.6" }
solana-feature-set-interface = "=4.0.0"
solana-program-entrypoint = "=2.2.1"
Expand All @@ -419,7 +421,7 @@ solana-example-mocks = "=2.2.1"
solana-faucet = { path = "faucet", version = "=2.2.6" }
solana-feature-gate-client = "0.0.2"
solana-feature-gate-interface = "=2.2.1"
solana-feature-set = "=2.2.1"
solana-feature-set = "=2.2.4" # will be removed
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was required to satisfy the dependency resolver

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

these can be gone before the next 2.2 release, right?

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yeah they will be removed in #5537

solana-fee-calculator = "=2.2.1"
solana-fee = { path = "fee", version = "=2.2.6" }
solana-fee-structure = "=2.2.1"
Expand Down Expand Up @@ -471,7 +473,6 @@ solana-poh = { path = "poh", version = "=2.2.6" }
solana-poh-config = "=2.2.1"
solana-poseidon = { path = "poseidon", version = "=2.2.6" }
solana-precompile-error = "=2.2.1"
solana-precompiles = "=2.2.1"
solana-presigner = "=2.2.1"
solana-program = { version = "=2.2.1", default-features = false }
solana-program-error = "=2.2.1"
Expand All @@ -491,7 +492,7 @@ solana-rent-collector = "=2.2.1"
solana-rent-debits = "=2.2.1"
solana-reward-info = "=2.2.1"
solana-sanitize = "=2.2.1"
solana-secp256r1-program = "=2.2.1"
solana-secp256r1-program = "=2.2.2"
solana-seed-derivable = "=2.2.1"
solana-seed-phrase = "=2.2.1"
solana-serde = "=2.2.1"
Expand Down
44 changes: 44 additions & 0 deletions precompiles/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
[package]
name = "agave-precompiles"
description = "Solana precompiled programs."
documentation = "https://docs.rs/agave-precompiles"
version = { workspace = true }
authors = { workspace = true }
repository = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
edition = { workspace = true }

[dependencies]
bincode = { workspace = true }
bytemuck = { workspace = true }
digest = { workspace = true }
ed25519-dalek = { workspace = true }
lazy_static = { workspace = true }
libsecp256k1 = { workspace = true }
openssl = { workspace = true }
sha3 = { workspace = true }
solana-ed25519-program = { workspace = true }
solana-feature-set = { workspace = true }
solana-message = { workspace = true }
solana-precompile-error = { workspace = true }
solana-pubkey = { workspace = true }
solana-sdk-ids = { workspace = true }
solana-secp256k1-program = { workspace = true, features = ["serde"] }
solana-secp256r1-program = { workspace = true, features = ["openssl-vendored"] }

[dev-dependencies]
hex = { workspace = true }
rand0-7 = { workspace = true }
solana-instruction = { workspace = true }
solana-keccak-hasher = { workspace = true }
solana-logger = { workspace = true }
solana-secp256k1-program = { workspace = true, features = ["bincode"] }

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
all-features = true
rustdoc-args = ["--cfg=docsrs"]

[lints]
workspace = true
Loading
Loading