Skip to content

Commit

Permalink
Bump sdk again
Browse files Browse the repository at this point in the history
  • Loading branch information
sisuresh committed Aug 22, 2023
1 parent c4596c5 commit 758a675
Show file tree
Hide file tree
Showing 54 changed files with 428 additions and 532 deletions.
22 changes: 11 additions & 11 deletions account/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 account/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ crate-type = ["cdylib"]
doctest = false

[dependencies]
soroban-sdk = { version = "0.9.2", git = "https://github.com/stellar/rs-soroban-sdk", rev = "da987a99dfe318e77b36502f1aceb73d78842368" }
soroban-sdk = { version = "0.9.2", git = "https://github.com/stellar/rs-soroban-sdk", rev = "9d4fe533777a9fb86340e5dae8dce83156a883f7" }

[dev_dependencies]
soroban-sdk = { version = "0.9.2", git = "https://github.com/stellar/rs-soroban-sdk", rev = "da987a99dfe318e77b36502f1aceb73d78842368", features = ["testutils"] }
soroban-sdk = { version = "0.9.2", git = "https://github.com/stellar/rs-soroban-sdk", rev = "9d4fe533777a9fb86340e5dae8dce83156a883f7", features = ["testutils"] }
ed25519-dalek = { version = "1.0.1" }
rand = { version = "0.7.3" }

Expand Down
22 changes: 11 additions & 11 deletions alloc/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 alloc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ crate-type = ["cdylib"]
doctest = false

[dependencies]
soroban-sdk = { version = "0.9.2", git = "https://github.com/stellar/rs-soroban-sdk", rev = "da987a99dfe318e77b36502f1aceb73d78842368", features = ["alloc"] }
soroban-sdk = { version = "0.9.2", git = "https://github.com/stellar/rs-soroban-sdk", rev = "9d4fe533777a9fb86340e5dae8dce83156a883f7", features = ["alloc"] }

[dev_dependencies]
soroban-sdk = { version = "0.9.2", git = "https://github.com/stellar/rs-soroban-sdk", rev = "da987a99dfe318e77b36502f1aceb73d78842368", features = ["testutils", "alloc"] }
soroban-sdk = { version = "0.9.2", git = "https://github.com/stellar/rs-soroban-sdk", rev = "9d4fe533777a9fb86340e5dae8dce83156a883f7", features = ["testutils", "alloc"] }

[profile.release]
opt-level = "z"
Expand Down
22 changes: 11 additions & 11 deletions atomic_multiswap/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 atomic_multiswap/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ crate-type = ["cdylib"]
doctest = false

[dependencies]
soroban-sdk = { version = "0.9.2", git = "https://github.com/stellar/rs-soroban-sdk", rev = "da987a99dfe318e77b36502f1aceb73d78842368" }
soroban-sdk = { version = "0.9.2", git = "https://github.com/stellar/rs-soroban-sdk", rev = "9d4fe533777a9fb86340e5dae8dce83156a883f7" }

[dev_dependencies]
soroban-sdk = { version = "0.9.2", git = "https://github.com/stellar/rs-soroban-sdk", rev = "da987a99dfe318e77b36502f1aceb73d78842368", features = ["testutils"] }
soroban-sdk = { version = "0.9.2", git = "https://github.com/stellar/rs-soroban-sdk", rev = "9d4fe533777a9fb86340e5dae8dce83156a883f7", features = ["testutils"] }
assert_unordered = "0.3.5"

[profile.release]
Expand Down
4 changes: 2 additions & 2 deletions atomic_multiswap/src/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ fn create_atomic_multiswap_contract(e: &Env) -> AtomicMultiSwapContractClient {
#[test]
fn test_atomic_multi_swap() {
let env = Env::default();
env.mock_all_auths();
env.mock_all_auths_allowing_non_root_auth();

let swaps_a = [
SwapSpec {
Expand Down Expand Up @@ -236,7 +236,7 @@ fn test_atomic_multi_swap() {
#[test]
fn test_multi_swap_with_duplicate_account() {
let env = Env::default();
env.mock_all_auths();
env.mock_all_auths_allowing_non_root_auth();

let address_a = Address::random(&env);
let address_b = Address::random(&env);
Expand Down
Loading

0 comments on commit 758a675

Please sign in to comment.