Skip to content
Open
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
726 changes: 554 additions & 172 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ version = "=28.0.2"
#rev = "7fb0a840812fe8921bb48bebf7b4aa7160467ec8"

[workspace.dependencies.stellar-strkey]
version = "=0.0.16"
version = "=0.0.18"

[workspace.dependencies.stellar-xdr]
version = "=28.0.0"
Expand Down
2 changes: 1 addition & 1 deletion soroban-ledger-snapshot/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ soroban-env-common = {workspace = true, features = ["serde"]}
serde = { version = "1.0.0", features = ["derive"] }
serde_with = { version = "3.4.0", features = ["hex"] }
serde_json = "1.0.0"
thiserror = "1.0"
thiserror = "2.0"

[dev-dependencies]
pretty_assertions = "1.2.1"
Expand Down
4 changes: 2 additions & 2 deletions soroban-meta/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ rust-version.workspace = true

[dependencies]
stellar-xdr = { workspace = true, features = ["std"] }
thiserror = "1.0.32"
wasmparser = "0.116.1"
thiserror = "2.0.20"
wasmparser = "0.221.3"
10 changes: 5 additions & 5 deletions soroban-sdk-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ soroban-spec = { workspace = true }
soroban-spec-rust = { workspace = true }
soroban-env-common = { workspace = true }
stellar-xdr = { workspace = true, features = ["std"] }
syn = {version="2.0.77",features=["full"]}
syn = {version="3.0.3",features=["full"]}
quote = "1.0"
proc-macro2 = "1.0"
itertools = "0.13.0"
darling = "0.20.10"
macro-string = "0.1.4"
sha2 = "0.10.7"
itertools = "0.14.0"
darling = "0.24.0"
macro-string = "0.3.0"
sha2 = "0.11.0"
Comment on lines +22 to +28
heck = "0.5.0"

[features]
Expand Down
22 changes: 11 additions & 11 deletions soroban-sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,32 +36,32 @@ arbitrary = { version = "~1.3.0", features = ["derive"], optional = true }
derive_arbitrary = { version = "~1.3.0", optional = true }
serde = { version = "1.0.0", features = ["derive"] }
serde_json = "1.0.0"
ed25519-dalek = { version = "2.1.1", features = ["rand_core"], optional = true }
curve25519-dalek = { version = "4.1.3", features = ["digest"], optional = true }
ed25519-dalek = { version = "3.0.0", features = ["rand_core"], optional = true }
curve25519-dalek = { version = "5.0.0", features = ["digest"], optional = true }
# match the version of rand used in dalek
rand = "0.8.5"
ctor = { version = "0.5.0", optional = true }
rand = "0.10.2"
ctor = { version = "1.0.13", optional = true }

[dev-dependencies]
soroban-sdk-macros = { workspace = true, features = ["testutils"] }
soroban-env-host = { workspace = true, features = ["testutils"] }
soroban-ledger-snapshot = { workspace = true, features = ["testutils"] }
stellar-xdr = { workspace = true, features = ["std"] }
soroban-spec = { workspace = true }
ed25519-dalek = "2.0.0"
rand = "0.8.5"
ctor = "0.5.0"
ed25519-dalek = "3.0.0"
rand = "0.10.2"
ctor = "1.0.13"
hex = "0.4.3"
arbitrary = { version = "~1.3.0", features = ["derive"] }
derive_arbitrary = { version = "~1.3.0" }
proptest = "1.2.0"
proptest-arbitrary-interop = "0.1.0"
libfuzzer-sys = "0.4.7"
expect-test = "1.4.1"
sha2 = "0.10.7"
ark-bn254 = { version = "0.5", default-features = false, features = ["curve"] }
ark-bls12-381 = { version = "0.5", default-features = false, features = ["curve"] }
ark-ff = { version = "0.5", default-features = false }
sha2 = "0.11.0"
ark-bn254 = { version = "0.6", default-features = false, features = ["curve"] }
ark-bls12-381 = { version = "0.6", default-features = false, features = ["curve"] }
ark-ff = { version = "0.6", default-features = false }
trybuild = "1.0.115"

[features]
Expand Down
8 changes: 4 additions & 4 deletions soroban-spec-rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ rust-version.workspace = true
[dependencies]
stellar-xdr = { workspace = true, features = ["std", "serde"] }
soroban-spec = { workspace = true }
thiserror = "1.0.32"
syn = {version="2.0",features=["full"]}
thiserror = "2.0.20"
syn = {version="3.0",features=["full"]}
quote = "1.0"
proc-macro2 = "1.0"
sha2 = "0.10.7"
prettyplease = "0.2.4"
sha2 = "0.11.0"
prettyplease = "0.3.0"

[dev-dependencies]
pretty_assertions = "1.2.1"
8 changes: 4 additions & 4 deletions soroban-spec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ rust-version.workspace = true

[dependencies]
stellar-xdr = { workspace = true, features = ["std", "serde"] }
base64 = "0.22.1"
thiserror = "1.0.32"
wasmparser = "0.116.1"
sha2 = "0.10.7"
base64 = "0.23.1"
thiserror = "2.0.20"
wasmparser = "0.221.3"
sha2 = "0.11.0"

[dev-dependencies]
pretty_assertions = "1.2.1"
Loading