forked from axelarnetwork/axelar-amplifier
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
55 lines (49 loc) · 1.63 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
[package]
name = "integration-tests"
version = "1.0.0"
rust-version = { workspace = true }
edition = { workspace = true }
description = "Amplifier Integration Tests"
exclude = ["contract.wasm", "hash.txt"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["rlib"]
[features]
# use library feature to disable all instantiate/execute/query exports
library = []
[package.metadata.scripts]
optimize = """docker run --rm -v "$(pwd)":/code \
--mount type=volume,source="$(basename "$(pwd)")_cache",target=/code/target \
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \
cosmwasm/optimizer:0.16.1
"""
[dependencies]
anyhow = { workspace = true }
axelar-core-std = { workspace = true }
axelar-wasm-std = { workspace = true }
coordinator = { workspace = true }
cosmwasm-std = { workspace = true }
cw-multi-test = { workspace = true }
error-stack = { workspace = true }
ethers-core = { workspace = true }
gateway = { workspace = true }
gateway-api = { workspace = true }
interchain-token-service = { workspace = true }
k256 = { workspace = true }
multisig = { workspace = true }
multisig-prover = { workspace = true }
rand = { workspace = true }
report = { workspace = true }
rewards = { workspace = true }
router = { workspace = true }
router-api = { workspace = true }
schemars = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
service-registry = { workspace = true }
service-registry-api = { workspace = true }
sha3 = { workspace = true }
tofn = { workspace = true }
voting-verifier = { workspace = true }
[lints]
workspace = true