-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCargo.toml
58 lines (51 loc) · 2.77 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[workspace]
resolver = "2"
members = [
# Core RET crates
"crates/radix-engine-toolkit",
# "crates/radix-engine-toolkit-json",
"crates/radix-engine-toolkit-uniffi",
# Auxiliary Crates
"crates/sbor-json",
# Bindings Crates
# "crates/generator",
"crates/uniffi-bindgen",
]
[workspace.dependencies]
# The Radix DLT Scrypto Dependencies - we're currently using a git tag or a git
# dependency due to the `radix-engine-toolkit-common` crate is sadly not being
# published to `crates.io`. Once it is published there we can make the switch to
# use the `crates.io` version.
sbor = { git = "https://github.com/radixdlt/radixdlt-scrypto", rev = "53d068fa1b471a63d7b5fd25c91dfa6e4940ee9e" }
scrypto = { git = "https://github.com/radixdlt/radixdlt-scrypto", rev = "53d068fa1b471a63d7b5fd25c91dfa6e4940ee9e" }
scrypto-test = { git = "https://github.com/radixdlt/radixdlt-scrypto", rev = "53d068fa1b471a63d7b5fd25c91dfa6e4940ee9e" }
radix-common = { git = "https://github.com/radixdlt/radixdlt-scrypto", rev = "53d068fa1b471a63d7b5fd25c91dfa6e4940ee9e" }
radix-engine = { git = "https://github.com/radixdlt/radixdlt-scrypto", rev = "53d068fa1b471a63d7b5fd25c91dfa6e4940ee9e" }
radix-transactions = { git = "https://github.com/radixdlt/radixdlt-scrypto", rev = "53d068fa1b471a63d7b5fd25c91dfa6e4940ee9e" }
radix-engine-interface = { git = "https://github.com/radixdlt/radixdlt-scrypto", rev = "53d068fa1b471a63d7b5fd25c91dfa6e4940ee9e" }
radix-substate-store-queries = { git = "https://github.com/radixdlt/radixdlt-scrypto", rev = "53d068fa1b471a63d7b5fd25c91dfa6e4940ee9e" }
radix-substate-store-impls = { git = "https://github.com/radixdlt/radixdlt-scrypto", rev = "53d068fa1b471a63d7b5fd25c91dfa6e4940ee9e" }
radix-substate-store-interface = { git = "https://github.com/radixdlt/radixdlt-scrypto", rev = "53d068fa1b471a63d7b5fd25c91dfa6e4940ee9e" }
radix-transaction-scenarios = { git = "https://github.com/radixdlt/radixdlt-scrypto", rev = "53d068fa1b471a63d7b5fd25c91dfa6e4940ee9e" }
radix-engine-toolkit-common = { git = "https://github.com/radixdlt/radixdlt-scrypto", rev = "53d068fa1b471a63d7b5fd25c91dfa6e4940ee9e" }
# UniFFI dependencies
uniffi = { git = "https://github.com/0xOmarA/uniffi-rs", tag = "v0.25.4" }
# Internal Dependencies
sbor-json = { path = "crates/sbor-json" }
radix-engine-toolkit = { path = "crates/radix-engine-toolkit" }
# External dependencies
paste = { version = "1.0.14" }
extend = { version = "1.2.0" }
serde = { version = "1.0.185" }
serde_json = { version = "1.0.96" }
serde_with = { version = "3.6.1" }
hex = { version = "0.4.3" }
regex = { version = "1.8.4" }
bech32 = { version = "0.9.1" }
itertools = { version = "0.14.0" }
thiserror = { version = "1.0.50" }
cargo_toml = { version = "0.15.3" }
[profile.release]
incremental = false
panic = 'unwind'
codegen-units = 1