forked from anza-xyz/agave
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: workspace inheritance (solana-labs#30939)
* client/Cargo.toml * udp-client/Cargo.toml * tpu-client/Cargo.toml * thin-client/Cargo.toml * storage-proto/Cargo.toml * quic-client/Cargo.toml * dos/Cargo.toml * entry/Cargo.toml * perf/Cargo.toml * program-runtime/Cargo.toml * program-test/Cargo.toml * programs/address-lookup-table/Cargo.toml * programs/loader-v3/Cargo.toml * connection-cache/Cargo.toml * programs/sbf/rust/big_mod_exp/Cargo.toml * programs/zk-token-proof-tests/Cargo.toml
- Loading branch information
Showing
16 changed files
with
121 additions
and
120 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "solana-client" | ||
version = "1.16.0" | ||
description = "Solana Client" | ||
authors = ["Solana Labs Maintainers <[email protected]>"] | ||
repository = "https://github.com/solana-labs/solana" | ||
homepage = "https://solanalabs.com/" | ||
documentation = "https://docs.rs/solana-client" | ||
license = "Apache-2.0" | ||
edition = "2021" | ||
version = { workspace = true } | ||
authors = { workspace = true } | ||
repository = { workspace = true } | ||
homepage = { workspace = true } | ||
license = { workspace = true } | ||
edition = { workspace = true } | ||
|
||
[dependencies] | ||
async-trait = { workspace = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
[package] | ||
name = "solana-connection-cache" | ||
version = "1.16.0" | ||
description = "Solana Connection Cache" | ||
authors = ["Solana Maintainers <[email protected]>"] | ||
repository = "https://github.com/solana-labs/solana" | ||
license = "Apache-2.0" | ||
homepage = "https://solanalabs.com/" | ||
documentation = "https://docs.rs/solana-connection-cache" | ||
edition = "2021" | ||
version = { workspace = true } | ||
authors = { workspace = true } | ||
repository = { workspace = true } | ||
homepage = { workspace = true } | ||
license = { workspace = true } | ||
edition = { workspace = true } | ||
|
||
[dependencies] | ||
async-trait = "0.1.57" | ||
bincode = "1.3.3" | ||
futures-util = "0.3.26" | ||
indexmap = "1.9.2" | ||
indicatif = { version = "0.17.1", optional = true } | ||
log = "0.4.17" | ||
rand = "0.7.0" | ||
rayon = "1.5.3" | ||
solana-measure = { path = "../measure", version = "=1.16.0" } | ||
solana-metrics = { path = "../metrics", version = "=1.16.0" } | ||
solana-sdk = { path = "../sdk", version = "=1.16.0" } | ||
thiserror = "1.0" | ||
tokio = { version = "1", features = ["full"] } | ||
async-trait = { workspace = true } | ||
bincode = { workspace = true } | ||
futures-util = { workspace = true } | ||
indexmap = { workspace = true } | ||
indicatif = { workspace = true, optional = true } | ||
log = { workspace = true } | ||
rand = { workspace = true } | ||
rayon = { workspace = true } | ||
solana-measure = { workspace = true } | ||
solana-metrics = { workspace = true } | ||
solana-sdk = { workspace = true } | ||
thiserror = { workspace = true } | ||
tokio = { workspace = true, features = ["full"] } | ||
|
||
[dev-dependencies] | ||
rand_chacha = "0.2.2" | ||
solana-logger = { path = "../logger", version = "=1.16.0" } | ||
solana-net-utils = { path = "../net-utils", version = "=1.16.0" } | ||
rand_chacha = { workspace = true } | ||
solana-logger = { workspace = true } | ||
solana-net-utils = { workspace = true } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
authors = ["Solana Labs Maintainers <[email protected]>"] | ||
edition = "2021" | ||
name = "solana-dos" | ||
version = "1.16.0" | ||
repository = "https://github.com/solana-labs/solana" | ||
license = "Apache-2.0" | ||
homepage = "https://solanalabs.com/" | ||
publish = false | ||
description = "Tool to send various requests to cluster in order to evaluate the effect on performance" | ||
version = { workspace = true } | ||
authors = { workspace = true } | ||
repository = { workspace = true } | ||
homepage = { workspace = true } | ||
license = { workspace = true } | ||
edition = { workspace = true } | ||
|
||
[dependencies] | ||
bincode = { workspace = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "solana-entry" | ||
version = "1.16.0" | ||
description = "Solana Entry" | ||
authors = ["Solana Labs Maintainers <[email protected]>"] | ||
repository = "https://github.com/solana-labs/solana" | ||
license = "Apache-2.0" | ||
homepage = "https://solanalabs.com/" | ||
documentation = "https://docs.rs/solana-poh" | ||
edition = "2021" | ||
version = { workspace = true } | ||
authors = { workspace = true } | ||
repository = { workspace = true } | ||
homepage = { workspace = true } | ||
license = { workspace = true } | ||
edition = { workspace = true } | ||
|
||
[dependencies] | ||
bincode = { workspace = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "solana-perf" | ||
version = "1.16.0" | ||
description = "Solana Performance APIs" | ||
authors = ["Solana Labs Maintainers <[email protected]>"] | ||
repository = "https://github.com/solana-labs/solana" | ||
license = "Apache-2.0" | ||
homepage = "https://solanalabs.com/" | ||
documentation = "https://docs.rs/solana-perf" | ||
edition = "2021" | ||
version = { workspace = true } | ||
authors = { workspace = true } | ||
repository = { workspace = true } | ||
homepage = { workspace = true } | ||
license = { workspace = true } | ||
edition = { workspace = true } | ||
|
||
[dependencies] | ||
ahash = { workspace = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "solana-program-runtime" | ||
version = "1.16.0" | ||
description = "Solana program runtime" | ||
authors = ["Solana Labs Maintainers <[email protected]>"] | ||
repository = "https://github.com/solana-labs/solana" | ||
license = "Apache-2.0" | ||
homepage = "https://solanalabs.com/" | ||
documentation = "https://docs.rs/solana-program-runtime" | ||
edition = "2021" | ||
version = { workspace = true } | ||
authors = { workspace = true } | ||
repository = { workspace = true } | ||
homepage = { workspace = true } | ||
license = { workspace = true } | ||
edition = { workspace = true } | ||
|
||
[dependencies] | ||
base64 = { workspace = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
[package] | ||
authors = ["Solana Labs Maintainers <[email protected]>"] | ||
description = "Solana Program Test Framework" | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
name = "solana-program-test" | ||
repository = "https://github.com/solana-labs/solana" | ||
version = "1.16.0" | ||
version = { workspace = true } | ||
authors = { workspace = true } | ||
repository = { workspace = true } | ||
homepage = { workspace = true } | ||
license = { workspace = true } | ||
edition = { workspace = true } | ||
|
||
[dependencies] | ||
assert_matches = { workspace = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "solana-address-lookup-table-program" | ||
version = "1.16.0" | ||
description = "Solana address lookup table program" | ||
authors = ["Solana Labs Maintainers <[email protected]>"] | ||
repository = "https://github.com/solana-labs/solana" | ||
license = "Apache-2.0" | ||
homepage = "https://solanalabs.com/" | ||
documentation = "https://docs.rs/solana-address-loookup-table-program" | ||
edition = "2021" | ||
version = { workspace = true } | ||
authors = { workspace = true } | ||
repository = { workspace = true } | ||
homepage = { workspace = true } | ||
license = { workspace = true } | ||
edition = { workspace = true } | ||
|
||
[dependencies] | ||
bincode = { workspace = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "solana-loader-v3-program" | ||
version = "1.16.0" | ||
description = "Solana Loader v3" | ||
authors = ["Solana Maintainers <[email protected]>"] | ||
repository = "https://github.com/solana-labs/solana" | ||
license = "Apache-2.0" | ||
homepage = "https://solana.com/" | ||
edition = "2021" | ||
publish = false | ||
version = { workspace = true } | ||
authors = { workspace = true } | ||
repository = { workspace = true } | ||
homepage = { workspace = true } | ||
license = { workspace = true } | ||
edition = { workspace = true } | ||
|
||
[dependencies] | ||
log = { workspace = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
[package] | ||
name = "solana-bpf-rust-big-mod-exp" | ||
version = "1.16.0" | ||
description = "Solana BPF test program written in Rust" | ||
authors = ["Solana Labs Maintainers <[email protected]>"] | ||
repository = "https://github.com/solana-labs/solana" | ||
license = "Apache-2.0" | ||
homepage = "https://solanalabs.com/" | ||
documentation = "https://docs.rs/solana-bpf-rust-big-mod-exp" | ||
edition = "2021" | ||
version = { workspace = true } | ||
description = { workspace = true } | ||
authors = { workspace = true } | ||
repository = { workspace = true } | ||
homepage = { workspace = true } | ||
license = { workspace = true } | ||
edition = { workspace = true } | ||
|
||
[dependencies] | ||
array-bytes = "=1.4.1" | ||
serde = { version = "1.0.112", features = ["derive"] } | ||
serde_json = "1.0.56" | ||
solana-program = { path = "../../../../sdk/program", version = "=1.16.0" } | ||
array-bytes = { workspace = true } | ||
serde = { workspace = true, features = ["derive"] } | ||
serde_json = { workspace = true } | ||
solana-program = { workspace = true } | ||
|
||
[lib] | ||
crate-type = ["cdylib"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
[package] | ||
name = "solana-zk-token-proof-program-tests" | ||
authors = ["Solana Labs Maintainers <[email protected]>"] | ||
repository = "https://github.com/solana-labs/solana" | ||
version = "1.16.0" | ||
license = "Apache-2.0" | ||
edition = "2021" | ||
publish = false | ||
version = { workspace = true } | ||
authors = { workspace = true } | ||
repository = { workspace = true } | ||
license = { workspace = true } | ||
edition = { workspace = true } | ||
|
||
[dev-dependencies] | ||
bytemuck = { version = "1.11.0", features = ["derive"] } | ||
solana-program-runtime = { path = "../../program-runtime", version = "=1.16.0" } | ||
solana-program-test = { path = "../../program-test", version = "=1.16.0" } | ||
solana-sdk = { path = "../../sdk", version = "=1.16.0" } | ||
solana-zk-token-sdk = { path = "../../zk-token-sdk", version = "=1.16.0" } | ||
bytemuck = { workspace = true, features = ["derive"] } | ||
solana-program-runtime = { workspace = true } | ||
solana-program-test = { workspace = true } | ||
solana-sdk = { workspace = true } | ||
solana-zk-token-sdk = { workspace = true } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "solana-quic-client" | ||
version = "1.16.0" | ||
description = "Solana Quic Client" | ||
authors = ["Solana Labs Maintainers <[email protected]>"] | ||
repository = "https://github.com/solana-labs/solana" | ||
license = "Apache-2.0" | ||
homepage = "https://solanalabs.com/" | ||
documentation = "https://docs.rs/solana-quic-client" | ||
edition = "2021" | ||
version = { workspace = true } | ||
authors = { workspace = true } | ||
repository = { workspace = true } | ||
homepage = { workspace = true } | ||
license = { workspace = true } | ||
edition = { workspace = true } | ||
|
||
[dependencies] | ||
async-mutex = { workspace = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "solana-storage-proto" | ||
version = "1.16.0" | ||
description = "Solana Storage Protobuf Definitions" | ||
authors = ["Solana Labs Maintainers <[email protected]>"] | ||
repository = "https://github.com/solana-labs/solana" | ||
license = "Apache-2.0" | ||
homepage = "https://solanalabs.com/" | ||
documentation = "https://docs.rs/solana-storage-proto" | ||
edition = "2021" | ||
version = { workspace = true } | ||
authors = { workspace = true } | ||
repository = { workspace = true } | ||
homepage = { workspace = true } | ||
license = { workspace = true } | ||
edition = { workspace = true } | ||
|
||
[dependencies] | ||
bincode = { workspace = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "solana-thin-client" | ||
version = "1.16.0" | ||
description = "Solana Thin Client" | ||
authors = ["Solana Labs Maintainers <[email protected]>"] | ||
repository = "https://github.com/solana-labs/solana" | ||
license = "Apache-2.0" | ||
homepage = "https://solanalabs.com/" | ||
documentation = "https://docs.rs/solana-thin-client" | ||
edition = "2021" | ||
version = { workspace = true } | ||
authors = { workspace = true } | ||
repository = { workspace = true } | ||
homepage = { workspace = true } | ||
license = { workspace = true } | ||
edition = { workspace = true } | ||
|
||
[dependencies] | ||
bincode = { workspace = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "solana-tpu-client" | ||
version = "1.16.0" | ||
description = "Solana TPU Client" | ||
authors = ["Solana Labs Maintainers <[email protected]>"] | ||
repository = "https://github.com/solana-labs/solana" | ||
license = "Apache-2.0" | ||
homepage = "https://solanalabs.com/" | ||
documentation = "https://docs.rs/solana-tpu-client" | ||
edition = "2021" | ||
version = { workspace = true } | ||
authors = { workspace = true } | ||
repository = { workspace = true } | ||
homepage = { workspace = true } | ||
license = { workspace = true } | ||
edition = { workspace = true } | ||
|
||
[dependencies] | ||
async-trait = { workspace = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "solana-udp-client" | ||
version = "1.16.0" | ||
description = "Solana UDP Client" | ||
authors = ["Solana Labs Maintainers <[email protected]>"] | ||
repository = "https://github.com/solana-labs/solana" | ||
license = "Apache-2.0" | ||
homepage = "https://solanalabs.com/" | ||
documentation = "https://docs.rs/solana-udp-client" | ||
edition = "2021" | ||
version = { workspace = true } | ||
authors = { workspace = true } | ||
repository = { workspace = true } | ||
homepage = { workspace = true } | ||
license = { workspace = true } | ||
edition = { workspace = true } | ||
|
||
[dependencies] | ||
async-trait = { workspace = true } | ||
|