Skip to content

Commit

Permalink
Merge branch 'main' into host_errors
Browse files Browse the repository at this point in the history
  • Loading branch information
dmkozh authored Jul 19, 2023
2 parents dcd9daf + 6392e6c commit 1889899
Show file tree
Hide file tree
Showing 72 changed files with 1,697 additions and 706 deletions.
174 changes: 162 additions & 12 deletions 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ soroban-native-sdk-macros = { version = "0.0.17", path = "soroban-native-sdk-mac
[workspace.dependencies.stellar-xdr]
version = "0.0.17"
git = "https://github.com/stellar/rs-stellar-xdr"
rev = "a49a739d2af0d75814b62004a5c301ac2fd77036"
rev = "4eaf2388c1de6fc295ed5f7df8174c199923df5b"
default-features = false

[workspace.dependencies.wasmi]
package = "soroban-wasmi"
version = "0.30.0-soroban"
git = "https://github.com/stellar/wasmi"
rev = "3dc639fde3bebf0bf364a9fa4ac2f0efb7ee9995"
rev = "284c963ba080703061797e2a3cba0853edee0dd4"

[workspace.dependencies.stellar-strkey]
version = "0.0.7"
Expand Down
10 changes: 9 additions & 1 deletion deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,15 @@ exclude = [
"num-derive",
"zeroize_derive",
# also a not upgraded to syn 2, but just a dev-dep anyway
"int-enum"
"int-enum",
# the dep specs of tracy-client are weird and include "loom" which it
# totally doesn't depend on but in any case it's compiled-out in real
# production builds we care about.
"tracy-client",
# Somehow the tracking machinery of two different dev-dep tracing
# subsystems also winds up pulling in conflicts, but again, just
# dev-deps or non-produciton configs.
"tracking-allocator"
]

# If true, metadata will be collected with `--all-features`. Note that this can't
Expand Down
2 changes: 1 addition & 1 deletion soroban-env-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "Apache-2.0"
version.workspace = true
readme = "../README.md"
edition = "2021"
rust-version = "1.70"
rust-version = "1.71"

[build_dependencies]
crate-git-revision = "0.0.6"
Expand Down
Loading

0 comments on commit 1889899

Please sign in to comment.