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
634 changes: 323 additions & 311 deletions Cargo.lock

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,25 +30,25 @@ soroban-token-spec = { version = "25.3.1", path = "soroban-token-spec" }
stellar-asset-spec = { version = "25.3.1", path = "stellar-asset-spec" }

[workspace.dependencies.soroban-env-common]
version = "=25.0.1"
version = "=26.0.1"
# git = "https://github.com/stellar/rs-soroban-env"
# rev = "cf58d535ab05d02802a5e804a95524650f8c62c7"

[workspace.dependencies.soroban-env-guest]
version = "=25.0.1"
version = "=26.0.1"
# git = "https://github.com/stellar/rs-soroban-env"
# rev = "cf58d535ab05d02802a5e804a95524650f8c62c7"

[workspace.dependencies.soroban-env-host]
version = "=25.0.1"
version = "=26.0.1"
# git = "https://github.com/stellar/rs-soroban-env"
# rev = "cf58d535ab05d02802a5e804a95524650f8c62c7"

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

[workspace.dependencies.stellar-xdr]
version = "=25.0.0"
version = "=26.0.0"
default-features = false
features = ["curr"]

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 = ["curr", "std"] }
thiserror = "1.0.32"
wasmparser = "0.116.1"
thiserror = "2.0.18"
wasmparser = "0.221.3"
8 changes: 4 additions & 4 deletions soroban-sdk-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ stellar-xdr = { workspace = true, features = ["curr", "std"] }
syn = {version="2.0.77",features=["full"]}
quote = "1.0"
proc-macro2 = "1.0"
itertools = "0.10.5"
darling = "0.20.10"
macro-string = "0.1.4"
sha2 = "0.10.7"
itertools = "0.13.0"
darling = "0.23.0"
macro-string = "0.2.0"
sha2 = "0.11.0"
heck = "0.5.0"

[features]
Expand Down
10 changes: 5 additions & 5 deletions soroban-sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ 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 }
# match the version of rand used in dalek
rand = "0.8.5"
ctor = { version = "0.5.0", optional = true }
rand = "0.9.2"
ctor = { version = "0.8.0", optional = true }

[dev-dependencies]
soroban-sdk-macros = { workspace = true, features = ["testutils"] }
Expand All @@ -49,16 +49,16 @@ soroban-ledger-snapshot = { workspace = true, features = ["testutils"] }
stellar-xdr = { workspace = true, features = ["curr", "std"] }
soroban-spec = { workspace = true }
ed25519-dalek = "2.0.0"
rand = "0.8.5"
ctor = "0.5.0"
rand = "0.9.2"
ctor = "0.8.0"
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"
sha2 = "0.11.0"
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 }
Expand Down
4 changes: 2 additions & 2 deletions soroban-spec-rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ rust-version.workspace = true
[dependencies]
stellar-xdr = { workspace = true, features = ["curr", "std", "serde"] }
soroban-spec = { workspace = true }
thiserror = "1.0.32"
thiserror = "2.0.18"
syn = {version="2.0",features=["full"]}
quote = "1.0"
proc-macro2 = "1.0"
sha2 = "0.10.7"
sha2 = "0.11.0"
prettyplease = "0.2.4"

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions soroban-spec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ rust-version.workspace = true
[dependencies]
stellar-xdr = { workspace = true, features = ["curr", "std", "serde"] }
base64 = "0.22.1"
thiserror = "1.0.32"
wasmparser = "0.116.1"
sha2 = "0.10.7"
thiserror = "2.0.18"
wasmparser = "0.221.3"
sha2 = "0.11.0"

[dev-dependencies]
pretty_assertions = "1.2.1"
Loading