Skip to content
Closed
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
946 changes: 678 additions & 268 deletions Cargo.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions banks-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ documentation = "https://docs.rs/solana-banks-client"
edition = "2021"

[dependencies]
borsh = "0.9.3"
borsh = "1.6.0"
futures = "0.3"
solana-banks-interface = { path = "../banks-interface", version = "=1.15.0" }
solana-program = { path = "../sdk/program", version = "=1.15.0" }
solana-sdk = { path = "../sdk", version = "=1.15.0" }
tarpc = { version = "0.29.0", features = ["full"] }
thiserror = "1.0"
tokio = { version = "~1.14.1", features = ["full"] }
tokio = { version = "~1.49.0", features = ["full"] }
tokio-serde = { version = "0.8", features = ["bincode"] }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion cli-output/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ solana-vote-program = { path = "../programs/vote", version = "=1.15.0" }
spl-memo = { version = "=3.0.1", features = ["no-entrypoint"] }

[dev-dependencies]
ed25519-dalek = "=1.0.1"
ed25519-dalek = "=2.2.0"

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
2 changes: 1 addition & 1 deletion client-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ solana-test-validator = { path = "../test-validator", version = "=1.15.0" }
solana-transaction-status = { path = "../transaction-status", version = "=1.15.0" }
solana-version = { path = "../version", version = "=1.15.0" }
systemstat = "0.2.0"
tokio = { version = "~1.14.1", features = ["full"] }
tokio = { version = "~1.49.0", features = ["full"] }

[dev-dependencies]
solana-logger = { path = "../logger", version = "=1.15.0" }
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ solana-vote-program = { path = "../programs/vote", version = "=1.15.0" }
sys-info = "0.9.1"
tempfile = "3.3.0"
thiserror = "1.0"
tokio = { version = "~1.14.1", features = ["full"] }
tokio = { version = "~1.49.0", features = ["full"] }
trees = "0.4.2"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion install/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ documentation = "https://docs.rs/solana-install"
[dependencies]
atty = "0.2.11"
bincode = "1.3.3"
bzip2 = "0.4.3"
bzip2 = "0.4.4"
chrono = { version = "0.4.22", features = ["serde"] }
clap = { version = "2.33.1" }
console = "0.15.0"
Expand Down
2 changes: 1 addition & 1 deletion perf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ edition = "2021"
ahash = "0.7.6"
bincode = "1.3.3"
bv = { version = "0.11.1", features = ["serde"] }
curve25519-dalek = { version = "3" }
curve25519-dalek = { version = "4" }
dlopen = "0.1.8"
dlopen_derive = "0.1.4"
fnv = "1.0.7"
Expand Down
2 changes: 1 addition & 1 deletion programs/ed25519-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ publish = false

[dev-dependencies]
assert_matches = "1.5.0"
ed25519-dalek = "=1.0.1"
ed25519-dalek = "=2.2.0"
rand = "0.7.0"
solana-program-test = { path = "../../program-test", version = "=1.15.0" }
solana-sdk = { path = "../../sdk", version = "=1.15.0" }
Expand Down
Loading