Skip to content

Commit

Permalink
Unpin tokio for non-rpc crates (solana-labs#26957)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyera Eulberg authored and apfitzge committed Aug 9, 2022
1 parent 090bac6 commit ecf2d75
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion banks-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ solana-runtime = { path = "../runtime", version = "=1.11.6" }
solana-sdk = { path = "../sdk", version = "=1.11.6" }
solana-send-transaction-service = { path = "../send-transaction-service", version = "=1.11.6" }
tarpc = { version = "0.29.0", features = ["full"] }
tokio = { version = "~1.14.1", features = ["full"] }
tokio = { version = "1", features = ["full"] }
tokio-serde = { version = "0.8", features = ["bincode"] }
tokio-stream = "0.1"

Expand Down
2 changes: 1 addition & 1 deletion client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ solana-version = { path = "../version", version = "=1.11.6" }
solana-vote-program = { path = "../programs/vote", version = "=1.11.6" }
spl-token-2022 = { version = "=0.4.2", features = ["no-entrypoint"] }
thiserror = "1.0"
tokio = { version = "~1.14.1", features = ["full"] }
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1.9"
tokio-tungstenite = { version = "0.17.1", features = ["rustls-tls-webpki-roots"] }
tungstenite = { version = "0.17.2", features = ["rustls-tls-webpki-roots"] }
Expand Down
2 changes: 1 addition & 1 deletion faucet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ solana-sdk = { path = "../sdk", version = "=1.11.6" }
solana-version = { path = "../version", version = "=1.11.6" }
spl-memo = { version = "=3.0.1", features = ["no-entrypoint"] }
thiserror = "1.0"
tokio = { version = "~1.14.1", features = ["full"] }
tokio = { version = "1", features = ["full"] }

[lib]
crate-type = ["lib"]
Expand Down
2 changes: 1 addition & 1 deletion ledger-tool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ solana-storage-bigtable = { path = "../storage-bigtable", version = "=1.11.6" }
solana-transaction-status = { path = "../transaction-status", version = "=1.11.6" }
solana-version = { path = "../version", version = "=1.11.6" }
solana-vote-program = { path = "../programs/vote", version = "=1.11.6" }
tokio = { version = "~1.14.1", features = ["full"] }
tokio = { version = "1", features = ["full"] }

[target.'cfg(not(target_env = "msvc"))'.dependencies]
jemallocator = { package = "tikv-jemallocator", version = "0.4.1", features = ["unprefixed_malloc_on_supported_platforms"] }
Expand Down
2 changes: 1 addition & 1 deletion ledger/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ spl-token-2022 = { version = "=0.4.2", features = ["no-entrypoint"] }
static_assertions = "1.1.0"
tempfile = "3.3.0"
thiserror = "1.0"
tokio = { version = "~1.14.1", features = ["full"] }
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
trees = "0.4.2"

Expand Down
2 changes: 1 addition & 1 deletion net-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ socket2 = "0.4.4"
solana-logger = { path = "../logger", version = "=1.11.6" }
solana-sdk = { path = "../sdk", version = "=1.11.6" }
solana-version = { path = "../version", version = "=1.11.6" }
tokio = { version = "~1.14.1", features = ["full"] }
tokio = { version = "1", features = ["full"] }
url = "2.2.2"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion program-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ solana-runtime = { path = "../runtime", version = "=1.11.6" }
solana-sdk = { path = "../sdk", version = "=1.11.6" }
solana-vote-program = { path = "../programs/vote", version = "=1.11.6" }
thiserror = "1.0"
tokio = { version = "~1.14.1", features = ["full"] }
tokio = { version = "1", features = ["full"] }
2 changes: 1 addition & 1 deletion storage-bigtable/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ solana-sdk = { path = "../sdk", version = "=1.11.6" }
solana-storage-proto = { path = "../storage-proto", version = "=1.11.6" }
solana-transaction-status = { path = "../transaction-status", version = "=1.11.6" }
thiserror = "1.0"
tokio = "~1.14.1"
tokio = "1"
tonic = { version = "0.8.0", features = ["tls", "transport"] }
zstd = "0.11.2"

Expand Down
2 changes: 1 addition & 1 deletion streamer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ solana-metrics = { path = "../metrics", version = "=1.11.6" }
solana-perf = { path = "../perf", version = "=1.11.6" }
solana-sdk = { path = "../sdk", version = "=1.11.6" }
thiserror = "1.0"
tokio = { version = "~1.14.1", features = ["full"] }
tokio = { version = "1", features = ["full"] }
x509-parser = "0.14.0"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion test-validator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ solana-rpc = { path = "../rpc", version = "=1.11.6" }
solana-runtime = { path = "../runtime", version = "=1.11.6" }
solana-sdk = { path = "../sdk", version = "=1.11.6" }
solana-streamer = { path = "../streamer", version = "=1.11.6" }
tokio = { version = "~1.14.1", features = ["full"] }
tokio = { version = "1", features = ["full"] }

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]

0 comments on commit ecf2d75

Please sign in to comment.