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
69 changes: 40 additions & 29 deletions contracts/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions contracts/credit_registry/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ publish.workspace = true
crate-type = ["cdylib", "rlib"]

[dependencies]
soroban-sdk = "=26.0.1"
soroban-sdk = "=27.0.4"
# Pin to the rand_core 0.6 stack. soroban-env-host 26.1.3 declares loose
# `>=` bounds on ed25519-dalek/curve25519-dalek, which resolve to the new
# digest 0.11 / rand_core 0.10 stack; its testutils PRNG (rand_chacha 0.3)
Expand All @@ -20,7 +20,7 @@ soroban-sdk = "=26.0.1"
ed25519-dalek = { version = "=2.2.0", default-features = false, features = ["alloc", "rand_core"] }

[dev-dependencies]
soroban-sdk = { version = "=26.0.1", features = ["testutils"] }
soroban-sdk = { version = "=27.0.4", features = ["testutils"] }

[features]
library = []
Expand Down
4 changes: 2 additions & 2 deletions contracts/marketplace/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ publish.workspace = true
crate-type = ["cdylib"]

[dependencies]
soroban-sdk = "=26.0.1"
soroban-sdk = "=27.0.4"

[dev-dependencies]
soroban-sdk = { version = "=26.0.1", features = ["testutils"] }
soroban-sdk = { version = "=27.0.4", features = ["testutils"] }
carbonchain-credit-registry = { path = "../credit_registry", features = ["testutils"] }
4 changes: 2 additions & 2 deletions contracts/mrv_oracle/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ publish.workspace = true
crate-type = ["cdylib"]

[dependencies]
soroban-sdk = "=26.0.1"
soroban-sdk = "=27.0.4"

[dev-dependencies]
soroban-sdk = { version = "=26.0.1", features = ["testutils"] }
soroban-sdk = { version = "=27.0.4", features = ["testutils"] }
carbonchain-credit-registry = { path = "../credit_registry", features = ["testutils"] }
4 changes: 2 additions & 2 deletions contracts/retirement/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ publish.workspace = true
crate-type = ["cdylib"]

[dependencies]
soroban-sdk = "=26.0.1"
soroban-sdk = "=27.0.4"

[dev-dependencies]
soroban-sdk = { version = "=26.0.1", features = ["testutils"] }
soroban-sdk = { version = "=27.0.4", features = ["testutils"] }
carbonchain-credit-registry = { path = "../credit_registry", features = ["testutils"] }
Loading