-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
40 lines (34 loc) · 942 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
[package]
name = "contract"
version = "0.1.0"
authors = ["Vadim Ilin <[email protected]>"]
edition = "2018"
publish = false
[lib]
path = "contract/src/lib.rs"
crate-type = ["cdylib"]
[dependencies]
near-sdk = "5.0.0-alpha.2"
near-contract-standards = "5.0.0-alpha.2"
serde_json = { version = "1.0", features = ["preserve_order"] }
uint = { version = "=0.9.0", default-features = false }
[dev-dependencies]
insta = { version = "1.31.0", features = ["json", "redactions"] }
regex = "1"
near-workspaces = { version = "0.9.0", features = ["unstable"], default-features = false }
tokio = { version = "1.10.0", features = ["full"] }
serde_json = { version = "1.0", features = ["arbitrary_precision"] }
near-units = "0.2.0"
anyhow = "1.0"
[[test]]
name = "main"
path = "contract/tests/workspaces/main.rs"
[profile.release]
codegen-units = 1
opt-level = "z"
lto = true
debug = false
panic = "abort"
overflow-checks = true
[workspace]
members = []