-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
36 lines (33 loc) · 1.26 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
[workspace]
members = [ "contracts/*" ]
resolver = "2"
[workspace.package]
edition = "2021"
[workspace.dependencies]
cosmwasm-schema = { version = "2.1.1" }
cosmwasm-std = { version = "2.1.0", features = [ "abort", "cosmwasm_1_2", "cosmwasm_1_3", "cosmwasm_1_4", "iterator", "stargate" ] }
cw-storage-plus = { version = "2.0.0" }
cw-utils = { version = "2.0.0" }
cw2 = { version = "2.0.0" }
injective-cosmwasm = { version = "=0.3.0" }
injective-math = { version = "0.3.0" }
injective-std = { version = "1.13.0" }
injective-test-tube = { version = "1.13.2" }
injective-testing = { version = "1.1.2" }
prost = { version = "0.12.6" }
schemars = { version = "0.8.16", features = [ "enumset" ] }
serde = { version = "1.0.193", default-features = false, features = [ "derive" ] }
serde-json-wasm = { version = "1.0.1" }
serde_json = { version = "1.0.120" }
test-tube-inj = { version = "=2.0.1" }
thiserror = { version = "1.0.52" }
[profile.release]
codegen-units = 1
debug = false
debug-assertions = false
incremental = false
lto = true
opt-level = 3
overflow-checks = true
panic = 'abort'
rpath = false