-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (39 loc) · 1 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 = "ats-smart-contract"
version = "1.0.1"
authors = ["Ken Talley <[email protected]>"]
edition = "2018"
exclude = [
"ats_smart_contract.wasm",
"checksums.txt",
]
[lib]
crate-type = ["cdylib", "rlib"]
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
panic = 'abort'
incremental = false
overflow-checks = true
[features]
# for more explicit tests, cargo test --features=backtraces
#backtraces = ["cosmwasm-std/backtraces"]
[dependencies]
cosmwasm-std = { version = "2.1.1" }
cw-storage-plus = { version = "2.0.0" }
provwasm-std = { version = "2.3.0" }
rust_decimal = "1.29.0"
schemars = "0.8.11"
semver = "1.0.16"
serde = { version = "1.0.163", default-features = false, features = ["derive"] }
serde_json = "1.0.91"
thiserror = { version = "1.0.38" }
uuid = { version = "1.3.3" }
prost = { version = "=0.11.9", default-features = false }
[dev-dependencies]
cosmwasm-schema = { version = "2.1.0" }
provwasm-mocks = { version = "2.3.0" }