forked from CosmosContracts/token-bindings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (35 loc) · 936 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
[workspace]
members = ["packages/*", "contracts/*"]
resolver = "2"
[workspace.package]
edition = "2021"
license = "Apache-2.0"
homepage = "https://orai.io"
repository = "https://github.com/oraichain/token-bindings"
version = "0.11.0"
[profile.release]
codegen-units = 1
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
panic = 'abort'
incremental = false
# Please do not disable these. Doing so will cause overflow checks in
# all workspace members to stop working. Overflows should be errors.
overflow-checks = true
[workspace.dependencies]
cosmwasm-schema = "1.5"
cosmwasm-std = "1.5"
cosmwasm-storage = "1.5"
schemars = "0.8"
serde = "1.0"
itertools = "0.11"
cw-storage-plus = "1.2"
anyhow = "1"
thiserror = "1.0"
cw2 = "1.0"
cw-multi-test = "1.0.0"
token-bindings = { path = "./packages/bindings", version = "0.11.0" }
token-bindings-test = { path = "./packages/bindings-test", version = "0.11.0" }