Skip to content

Commit

Permalink
Update soroban-env, stellar-xdr (#711)
Browse files Browse the repository at this point in the history
  • Loading branch information
leighmcculloch authored Oct 6, 2022
1 parent c5e30cb commit 70004b1
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 31 deletions.
32 changes: 16 additions & 16 deletions Cargo.lock

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

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ soroban-sdk = { path = "soroban-sdk" }
soroban-auth = { path = "soroban-auth" }
soroban-spec = { path = "soroban-spec" }
soroban-sdk-macros = { path = "soroban-sdk-macros" }
soroban-env-common = { git = "https://github.com/stellar/rs-soroban-env", rev = "fb8a384e" }
soroban-env-guest = { git = "https://github.com/stellar/rs-soroban-env", rev = "fb8a384e" }
soroban-env-host = { git = "https://github.com/stellar/rs-soroban-env", rev = "fb8a384e" }
soroban-env-macros = { git = "https://github.com/stellar/rs-soroban-env", rev = "fb8a384e" }
soroban-native-sdk-macros = { git = "https://github.com/stellar/rs-soroban-env", rev = "fb8a384e" }
stellar-xdr = { git = "https://github.com/stellar/rs-stellar-xdr", rev = "88ded341" }
wasmi = { package = "soroban-wasmi", git = "https://github.com/stellar/wasmi", rev = "a61b6df" }
soroban-env-common = { git = "https://github.com/stellar/rs-soroban-env", rev = "91cf595" }
soroban-env-guest = { git = "https://github.com/stellar/rs-soroban-env", rev = "91cf595" }
soroban-env-host = { git = "https://github.com/stellar/rs-soroban-env", rev = "91cf595" }
soroban-env-macros = { git = "https://github.com/stellar/rs-soroban-env", rev = "91cf595" }
soroban-native-sdk-macros = { git = "https://github.com/stellar/rs-soroban-env", rev = "91cf595" }
stellar-xdr = { git = "https://github.com/stellar/rs-stellar-xdr", rev = "5cca712b" }
wasmi = { package = "soroban-wasmi", git = "https://github.com/stellar/wasmi", rev = "d1ec0036" }

# soroban-env-common = { path = "../rs-soroban-env/soroban-env-common" }
# soroban-env-guest = { path = "../rs-soroban-env/soroban-env-guest" }
Expand Down
4 changes: 2 additions & 2 deletions soroban-sdk-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ doctest = false

[dependencies]
soroban-spec = "0.0.4"
soroban-env-common = "0.0.5"
stellar-xdr = { version = "0.0.2", features = ["next", "std"] }
soroban-env-common = "0.0.6"
stellar-xdr = { version = "0.0.6", features = ["next", "std"] }
syn = {version="1.0",features=["full"]}
quote = "1.0"
proc-macro2 = "1.0"
Expand Down
8 changes: 4 additions & 4 deletions soroban-sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@ soroban-sdk-macros = { version = "0.0.4" }
bytes-lit = "0.0.4"

[target.'cfg(target_family="wasm")'.dependencies]
soroban-env-guest = { version = "0.0.5" }
soroban-env-guest = { version = "0.0.6" }

[target.'cfg(not(target_family="wasm"))'.dependencies]
soroban-env-host = { version = "0.0.5", features = ["vm", "hostfn_log_fmt_values"] }
soroban-env-host = { version = "0.0.6", features = ["vm", "hostfn_log_fmt_values"] }
stellar-strkey = "0.0.2"
ed25519-dalek = { version = "1.0.1", optional = true }
rand = "0.8.5"

[dev-dependencies]
soroban-env-host = { version = "0.0.5", features = ["vm", "hostfn_log_fmt_values", "testutils"] }
stellar-xdr = { version = "0.0.2", features = ["next", "std"] }
soroban-env-host = { version = "0.0.6", features = ["vm", "hostfn_log_fmt_values", "testutils"] }
stellar-xdr = { version = "0.0.6", features = ["next", "std"] }
soroban-spec = "0.0.4"
ed25519-dalek = "1.0.1"
rand = "0.8.5"
Expand Down
4 changes: 2 additions & 2 deletions soroban-spec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ edition = "2021"
rust-version = "1.64"

[dependencies]
stellar-xdr = { version = "0.0.2", features = ["next", "std"] }
soroban-env-host = { version = "0.0.5", features = ["vm", "serde"] }
stellar-xdr = { version = "0.0.6", features = ["next", "std"] }
soroban-env-host = { version = "0.0.6", features = ["vm", "serde"] }
base64 = "0.13.0"
thiserror = "1.0.32"
syn = {version="1.0",features=["full"]}
Expand Down

0 comments on commit 70004b1

Please sign in to comment.