-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (39 loc) · 926 Bytes
/
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
[package]
name = "heroes-contracts"
version = "2.0.0"
authors = ["Oleh Ivaniuk <[email protected]>"]
edition = "2021"
[dev-dependencies]
anyhow = "1.0"
borsh = "0.9"
maplit = "1.0"
near-sdk = "4.1.1"
near-units = "0.2.0"
serde_json = { version = "1.0", features = ["arbitrary_precision"] }
tokio = { version = "1.18.1", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3.11", features = ["env-filter"] }
workspaces = "0.6.0"
pkg-config = "0.3.1"
bounties = { path = "bounties" }
disputes = { path = "disputes" }
reputation = { path = "reputation" }
kyc-whitelist = { path = "kyc-whitelist" }
[profile.release]
codegen-units=1
opt-level = "z"
lto = true
debug = false
panic = "abort"
overflow-checks = true
[workspace]
members = [
"bounties",
"disputes",
"reputation",
"kyc-whitelist",
"test-token"
]
[[example]]
name = "integration-tests"
path = "integration-tests/tests.rs"