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
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ solana-svm-test-harness-instr = { path = "svm-test-harness/instr", version = "=4
solana-svm-timings = { path = "svm-timings", version = "=4.1.0-alpha.0", features = ["agave-unstable-api"] }
solana-svm-transaction = { path = "svm-transaction", version = "=4.1.0-alpha.0", features = ["agave-unstable-api"] }
solana-svm-type-overrides = { path = "svm-type-overrides", version = "=4.1.0-alpha.0", features = ["agave-unstable-api"] }
solana-system-interface = { version = "3.1", features = ["alloc","bincode","serde","wincode"] }
solana-system-interface = { version = "3.1", features = ["alloc", "bincode", "serde", "wincode"] }
solana-system-program = { path = "programs/system", version = "=4.1.0-alpha.0", features = ["agave-unstable-api"] }
solana-system-transaction = "4.0.0"
solana-sysvar = "4.0.0"
Expand Down
14 changes: 7 additions & 7 deletions banks-interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ agave-unstable-api = []

[dependencies]
serde = { workspace = true }
solana-account = { workspace = true, features = [ "serde" ] }
solana-account = { workspace = true, features = ["serde"] }
solana-clock = { workspace = true }
solana-commitment-config = { workspace = true, features = [ "serde" ] }
solana-commitment-config = { workspace = true, features = ["serde"] }
solana-hash = { workspace = true }
solana-message = { workspace = true, features = [ "serde" ] }
solana-message = { workspace = true, features = ["serde"] }
solana-pubkey = { workspace = true }
solana-signature = { workspace = true, features = [ "serde" ] }
solana-transaction = { workspace = true, features = [ "serde" ] }
solana-transaction-context = { workspace = true, features = [ "serde" ] }
solana-transaction-error = { workspace = true, features = [ "serde" ] }
solana-signature = { workspace = true, features = ["serde"] }
solana-transaction = { workspace = true, features = ["serde"] }
solana-transaction-context = { workspace = true, features = ["serde"] }
solana-transaction-error = { workspace = true, features = ["serde"] }
tarpc = { workspace = true, features = ["full"] }
5 changes: 1 addition & 4 deletions ledger/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,7 @@ crate-type = ["lib"]
name = "solana_ledger"

[features]
dev-context-only-utils = [
"solana-perf/dev-context-only-utils",
"solana-runtime/dev-context-only-utils",
]
dev-context-only-utils = ["solana-perf/dev-context-only-utils", "solana-runtime/dev-context-only-utils"]
frozen-abi = [
"dep:solana-frozen-abi",
"dep:solana-frozen-abi-macro",
Expand Down
5 changes: 1 addition & 4 deletions rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,7 @@ name = "solana_rpc"

[features]
agave-unstable-api = []
dev-context-only-utils = [
"solana-ledger/dev-context-only-utils",
"solana-rpc/dev-context-only-utils",
]
dev-context-only-utils = ["solana-ledger/dev-context-only-utils", "solana-rpc/dev-context-only-utils"]

[dependencies]
agave-feature-set = { workspace = true }
Expand Down
5 changes: 1 addition & 4 deletions svm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,7 @@ name = "solana_svm"
default = ["metrics"]
agave-unstable-api = []
dummy-for-ci-check = ["metrics"]
dev-context-only-utils = [
"dep:qualifier_attr",
"solana-program-runtime/dev-context-only-utils",
]
dev-context-only-utils = ["dep:qualifier_attr", "solana-program-runtime/dev-context-only-utils"]
frozen-abi = [
"dep:solana-frozen-abi",
"dep:solana-frozen-abi-macro",
Expand Down
6 changes: 1 addition & 5 deletions tpu-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,7 @@ default = ["spinner"]
agave-unstable-api = []
# Support tpu-client methods that feature a spinner progress bar for
# command-line interfaces
spinner = [
"dep:indicatif",
"dep:solana-message",
"solana-rpc-client/spinner",
]
spinner = ["dep:indicatif", "dep:solana-message", "solana-rpc-client/spinner"]

[dependencies]
bincode = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion turbine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ assert_matches = { workspace = true }
bencher = { workspace = true }
bs58 = { workspace = true }
solana-genesis-config = { workspace = true }
solana-ledger = { path = "../ledger", features = ["agave-unstable-api","dev-context-only-utils"] }
solana-ledger = { path = "../ledger", features = ["agave-unstable-api", "dev-context-only-utils"] }
solana-runtime = { path = "../runtime", features = ["agave-unstable-api", "dev-context-only-utils"] }
solana-signature = { workspace = true, features = ["rand"] }
solana-transaction = { workspace = true }
Expand Down
3 changes: 2 additions & 1 deletion votor-messages/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ log = { workspace = true }
serde = { workspace = true }
solana-address = { workspace = true, features = ["curve25519"] }
solana-bls-signatures = { workspace = true, features = [
"bytemuck", "solana-signer-derive",
"bytemuck",
"solana-signer-derive",
] }
solana-clock = { workspace = true }
solana-epoch-schedule = { workspace = true }
Expand Down
Loading