Skip to content

Commit

Permalink
Update to latest scrypto & add classification method
Browse files Browse the repository at this point in the history
  • Loading branch information
0xOmarA committed Oct 31, 2024
1 parent 5a03cec commit d7ecce4
Show file tree
Hide file tree
Showing 16 changed files with 580 additions and 346 deletions.
46 changes: 23 additions & 23 deletions Cargo.lock

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

24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,24 +15,24 @@ members = [
# Shared dependencies that all of the crates need - for now this is just the
# `radixdlt-scrypto` dependencies
[workspace.dependencies]
sbor = { git = "https://github.com/radixdlt/radixdlt-scrypto", rev = "9cdcfd4292044ee1def2cb37aa9807cef95f74a3", features = [
sbor = { git = "https://github.com/radixdlt/radixdlt-scrypto", rev = "27da7a08fac63d36bd1ab209840fb014f470ebc6", features = [
"serde",
] }
scrypto = { git = "https://github.com/radixdlt/radixdlt-scrypto", rev = "9cdcfd4292044ee1def2cb37aa9807cef95f74a3", features = [
scrypto = { git = "https://github.com/radixdlt/radixdlt-scrypto", rev = "27da7a08fac63d36bd1ab209840fb014f470ebc6", features = [
"serde",
] }
scrypto-test = { git = "https://github.com/radixdlt/radixdlt-scrypto", rev = "9cdcfd4292044ee1def2cb37aa9807cef95f74a3" }
radix-common = { git = "https://github.com/radixdlt/radixdlt-scrypto", rev = "9cdcfd4292044ee1def2cb37aa9807cef95f74a3", features = [
scrypto-test = { git = "https://github.com/radixdlt/radixdlt-scrypto", rev = "27da7a08fac63d36bd1ab209840fb014f470ebc6" }
radix-common = { git = "https://github.com/radixdlt/radixdlt-scrypto", rev = "27da7a08fac63d36bd1ab209840fb014f470ebc6", features = [
"serde",
] }
radix-engine = { git = "https://github.com/radixdlt/radixdlt-scrypto", rev = "9cdcfd4292044ee1def2cb37aa9807cef95f74a3" }
radix-engine-interface = { git = "https://github.com/radixdlt/radixdlt-scrypto", rev = "9cdcfd4292044ee1def2cb37aa9807cef95f74a3" }
radix-substate-store-queries = { git = "https://github.com/radixdlt/radixdlt-scrypto", rev = "9cdcfd4292044ee1def2cb37aa9807cef95f74a3" }
radix-substate-store-impls = { git = "https://github.com/radixdlt/radixdlt-scrypto", rev = "9cdcfd4292044ee1def2cb37aa9807cef95f74a3" }
radix-substate-store-interface = { git = "https://github.com/radixdlt/radixdlt-scrypto", rev = "9cdcfd4292044ee1def2cb37aa9807cef95f74a3" }
radix-transactions = { git = "https://github.com/radixdlt/radixdlt-scrypto", rev = "9cdcfd4292044ee1def2cb37aa9807cef95f74a3" }
radix-transaction-scenarios = { git = "https://github.com/radixdlt/radixdlt-scrypto", rev = "9cdcfd4292044ee1def2cb37aa9807cef95f74a3" }
radix-engine-toolkit-common = { git = "https://github.com/radixdlt/radixdlt-scrypto", rev = "9cdcfd4292044ee1def2cb37aa9807cef95f74a3" }
radix-engine = { git = "https://github.com/radixdlt/radixdlt-scrypto", rev = "27da7a08fac63d36bd1ab209840fb014f470ebc6" }
radix-engine-interface = { git = "https://github.com/radixdlt/radixdlt-scrypto", rev = "27da7a08fac63d36bd1ab209840fb014f470ebc6" }
radix-substate-store-queries = { git = "https://github.com/radixdlt/radixdlt-scrypto", rev = "27da7a08fac63d36bd1ab209840fb014f470ebc6" }
radix-substate-store-impls = { git = "https://github.com/radixdlt/radixdlt-scrypto", rev = "27da7a08fac63d36bd1ab209840fb014f470ebc6" }
radix-substate-store-interface = { git = "https://github.com/radixdlt/radixdlt-scrypto", rev = "27da7a08fac63d36bd1ab209840fb014f470ebc6" }
radix-transactions = { git = "https://github.com/radixdlt/radixdlt-scrypto", rev = "27da7a08fac63d36bd1ab209840fb014f470ebc6" }
radix-transaction-scenarios = { git = "https://github.com/radixdlt/radixdlt-scrypto", rev = "27da7a08fac63d36bd1ab209840fb014f470ebc6" }
radix-engine-toolkit-common = { git = "https://github.com/radixdlt/radixdlt-scrypto", rev = "27da7a08fac63d36bd1ab209840fb014f470ebc6" }

[profile.release]
incremental = false
Expand Down
Loading

0 comments on commit d7ecce4

Please sign in to comment.