-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
32 lines (29 loc) · 1.16 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
[workspace]
members = ["contracts/*", "packages/*"]
resolver = "2"
[workspace.dependencies]
cosmwasm-testing-util = { git = "https://github.com/oraichain/cosmwasm-testing-util.git", rev = "33a262f" }
oraiswap = { git = "https://github.com/oraichain/oraiswap.git", rev = "f4b0cc2f96e87938c6f203ac0a82012bcfe4b17b" }
cw2 = { version = "1.0.1" }
cw20 = { version = "1.0.1" }
cw20-base = { version = "1.0.1" }
cw-storage-plus = { version = "1.0.1" }
cw-controllers = { version = "1.0.1" }
cw-utils = "0.16.0"
cw20-ics20-msg = { path = "./packages/cw20-ics20-msg" }
cosmwasm-schema = { version = "1.5.0" }
cosmwasm-std = { version = "1.5.0", default-features = false }
cosmwasm-vm = { version = "1.5.0" }
skip = { git = "https://github.com/oraichain/osor-api-contracts.git", rev = "0655922173b4ac37c5e63f451eb9bc33c7ac8159" }
tokenfactory = { git = "https://github.com/oraichain/token-bindings.git", rev = "9796c74" }
token-bindings = { git = "https://github.com/oraichain/token-bindings.git", rev = "9796c74" }
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
panic = 'abort'
incremental = false
overflow-checks = true