forked from NEAR-DevHub/neardevhub-contract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (27 loc) · 750 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
[package]
name = "devgovgigs"
version = "0.1.0"
authors = ["Maksym Zavershynskyi"]
edition = "2018"
[lib]
crate-type = ["cdylib"]
[dependencies]
near-sdk = "4.1.1"
near-contract-standards = "4.1.1"
serde_json = { version = "1.0", features = ["preserve_order"] }
[dev-dependencies]
insta = { version = "1.31.0", features = ["json", "redactions"] }
regex = "1"
near-workspaces = { version = "0.7.0", features = ["unstable"] }
tokio = { version = "1.10.0", features = ["full"] }
serde_json = { version = "1.0", features = ["arbitrary_precision"] }
near-units = "0.2.0"
anyhow = "1.0"
[profile.release]
codegen-units = 1
# Tell `rustc` to optimize for small code size.
opt-level = "s"
lto = true
debug = false
panic = "abort"
overflow-checks = true