-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
52 lines (46 loc) · 1.86 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
[workspace]
resolver = "2"
members = ["contracts/*", "packages/*"]
[workspace.package]
edition = "2021"
rust-version = "1.81.0"
license = "MIT OR Apache-2.0"
[workspace.dependencies]
alloy-primitives = { version = "0.8.19", default-features = false, features = [
"std",
] }
alloy-sol-types = { version = "0.8.19", default-features = false, features = [
"std",
] }
cfg-if = { version = "1.0", default-features = false }
goldie = { version = "0.5.0", default-features = false }
hex = { version = "0.4", default-features = false }
paste = { version = "1.0", default-features = false }
proc-macro2 = { version = "1.0", default-features = false }
rand = { version = "0.8.5", default-features = false }
soroban-sdk = { version = "22.0.5" }
soroban-token-sdk = { version = "22.0.5" }
stellar-axelar-gas-service = { version = "^0.2.2", path = "contracts/stellar-axelar-gas-service" }
stellar-axelar-gateway = { version = "^0.2.2", path = "contracts/stellar-axelar-gateway" }
stellar-axelar-operators = { version = "^0.2.2", path = "contracts/stellar-axelar-operators" }
stellar-axelar-std = { version = "^0.2.2", path = "packages/stellar-axelar-std", features = ["derive"] }
stellar-axelar-std-derive = { version = "^0.2.1", path = "packages/stellar-axelar-std-derive" }
stellar-example = { version = "^0.1.0", path = "contracts/stellar-example" }
stellar-interchain-token = { version = "^0.2.2", path = "contracts/stellar-interchain-token" }
stellar-interchain-token-service = { version = "^0.2.2", path = "contracts/stellar-interchain-token-service" }
[workspace.lints.clippy]
nursery = { level = "warn", priority = -1 }
too_many_arguments = "allow"
[workspace.lints.rust]
[profile.release]
opt-level = "z"
overflow-checks = true
debug = 0
strip = "symbols"
debug-assertions = false
panic = "abort"
codegen-units = 1
lto = true
[profile.release-with-logs]
inherits = "release"
debug-assertions = true