-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (42 loc) · 1.55 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
[package]
name = "appchain-anchor-wrapper"
version = "2.2.0"
authors = ["Octopus Network"]
edition = "2021"
[dev-dependencies]
anyhow = "1.0"
hex-literal = "0.3.1"
near-sdk = "4.0.0"
near-contract-standards = "4.0.0"
near-primitives = "0.5.0"
near-units = "0.2.0"
hex = "0.4.2"
num-format = "0.4.0"
parity-scale-codec = "2.0.0"
secp256k1-test = { package = "secp256k1", version = "0.20.3", features = ["rand-std", "recovery"] }
beefy-light-client = { git = "https://github.com/octopus-network/beefy-light-client.git", branch = "main" }
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
beefy-merkle-tree = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.12", features = ["keccak"], default-features = false }
# remember to include related mock contracts
appchain-anchor = { path = "./appchain-anchor" }
mock-appchain-registry = { path = "./mock-appchain-registry" }
mock-oct-token = { path = "./mock-oct-token" }
wrapped-appchain-token = { git = "https://github.com/octopus-network/wrapped-appchain-token.git", branch = "v2.0.0" }
wrapped-appchain-nft = { git = "https://github.com/octopus-network/wrapped-appchain-nft.git", branch = "main" }
tokio = { version = "1.14", features = ["full"] }
workspaces = "0.4"
[profile.release]
codegen-units = 1
# Tell `rustc` to optimize for small code size.
opt-level = "z"
lto = true
debug = false
panic = "abort"
overflow-checks = true
[workspace]
members = [
"appchain-anchor",
"mock-appchain-registry",
"mock-oct-token",
"wat-faucet",
]