forked from axelarnetwork/axelar-amplifier
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
78 lines (74 loc) · 3.53 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[workspace]
members = ["ampd", "contracts/*", "external-gateways/*", "integration-tests", "interchain-token-service", "packages/*"]
resolver = "2"
[workspace.package]
rust-version = "1.78.0" # be sure there is an optimizer release supporting this version before updating. See https://github.com/CosmWasm/optimizer
edition = "2021"
[workspace.dependencies]
router = { version = "^1.0.0", path = "contracts/router" }
cosmwasm-std = "1.5.5"
cosmwasm-schema = "1.5.5"
cw-storage-plus = { version = "1.2.0", features = ["iterator", "macro"] }
cw2 = "1.1.0"
ed25519-dalek = { version = "2.1.1", default-features = false }
error-stack = { version = "0.4.0", features = ["eyre"] }
events = { version = "^1.0.0", path = "packages/events" }
events-derive = { version = "^1.0.0", path = "packages/events-derive" }
evm-gateway = { version = "^1.0.0", path = "packages/evm-gateway" }
sui-types = { version = "^1.0.0", path = "packages/sui-types" }
sui-gateway = { version = "^1.0.0", path = "packages/sui-gateway" }
stellar = { version = "^1.0.0", path = "external-gateways/stellar" }
axelar-wasm-std = { version = "^1.0.0", path = "packages/axelar-wasm-std" }
axelar-wasm-std-derive = { version = "^1.0.0", path = "packages/axelar-wasm-std-derive" }
hex = "0.4.3"
integration-tests = { version = "^1.0.0", path = "integration-tests" }
into-inner-derive = { version = "^1.0.0", path = "packages/into-inner-derive" }
itertools = "0.11.0"
voting-verifier = { version = "^1.0.0", path = "contracts/voting-verifier" }
coordinator = { version = "^1.0.0", path = "contracts/coordinator" }
multisig = { version = "^1.0.0", path = "contracts/multisig" }
msgs-derive = { version = "^1.0.0", path = "packages/msgs-derive" }
multisig-prover = { version = "^1.0.0", path = "contracts/multisig-prover" }
num-traits = { version = "0.2.14", default-features = false }
service-registry = { version = "^1.0.0", path = "contracts/service-registry" }
k256 = { version = "0.13.1", features = ["ecdsa"] }
gateway = { version = "^1.0.0", path = "contracts/gateway" }
gateway-api = { version = "^1.0.0", path = "packages/gateway-api" }
router-api = { version = "^1.0.0", path = "packages/router-api" }
report = { version = "^1.0.0", path = "packages/report" }
client = { version = "^1.0.0", path = "packages/client" }
quote = "1.0.36"
bcs = "0.1.5"
rewards = { version = "^1.0.0", path = "contracts/rewards" }
thiserror = "1.0.61"
mockall = "0.12.1"
serde = { version = "1.0.145", default-features = false, features = ["derive"] }
serde_json = "1.0.89"
schemars = "0.8.10"
sha3 = { version = "0.10.8", default-features = false, features = [] }
signature-verifier-api = { version = "^1.0.0", path = "packages/signature-verifier-api" }
syn = "2.0.68"
ethers-contract = { version = "2.0.14", default-features = false, features = ["abigen"] }
ethers-core = "2.0.14"
tokio = "1.38.0"
tokio-stream = "0.1.11"
tokio-util = "0.7.11"
tofn = { version = "1.1" }
alloy-primitives = { version = "0.7.6", default-features = false, features = ["std"] }
alloy-sol-types = { version = "0.7.6", default-features = false, features = ["std"] }
strum = { version = "0.25", default-features = false, features = ["derive"] }
interchain-token-service = { version = "^0.1.0", path = "interchain-token-service" }
goldie = { version = "0.5" }
axelarnet-gateway = { version = "^0.1.0", path = "contracts/axelarnet-gateway" }
[workspace.lints.clippy]
arithmetic_side_effects = "deny"
cast_possible_truncation = "deny"
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
incremental = false
overflow-checks = true