-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
47 lines (41 loc) · 1.43 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
[workspace]
resolver = "2"
members = ["contracts/*", "packages/*"]
[workspace.package]
edition = "2021"
rust-version = "1.81.0"
[workspace.dependencies]
soroban-sdk = { version = "22.0.2" }
soroban-token-sdk = { version = "22.0.2" }
cfg-if = { version = "1.0" }
axelar-soroban-std = { version = "^0.1.0", path = "packages/axelar-soroban-std", features = ["derive"] }
axelar-soroban-std-derive = { version = "^0.1.0", path = "packages/axelar-soroban-std-derive" }
axelar-gas-service = { version = "^0.1.0", path = "contracts/axelar-gas-service" }
axelar-gateway = { version = "^0.1.0", path = "contracts/axelar-gateway" }
axelar-operators = { version = "^0.1.0", path = "contracts/axelar-operators" }
interchain-token = { version = "^0.1.0", path = "contracts/interchain-token" }
interchain-token-service = { version = "^0.1.0", path = "contracts/interchain-token-service" }
alloy-primitives = { version = "0.8.14", default-features = false, features = [
"std",
] }
alloy-sol-types = { version = "0.8.14", default-features = false, features = [
"std",
] }
goldie = "0.5.0"
hex = { version = "0.4" }
[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