-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
60 lines (50 loc) · 1.96 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[workspace]
resolver = '2'
members = ["packages/*", "contracts/*", "wasm"]
[workspace.package]
version = "0.2.0"
authors = ["Oraichain Labs"]
edition = "2021"
license = "MIT"
repository = "https://github.com/oraichain/oraiswap-v3.git"
homepage = "https://orai.io"
documentation = "https://github.com/oraichain/oraiswap-v3.git"
exclude = [
# Those files are rust-optimizer artifacts. You might want to commit them for convenience but they should not be part of the source code publication.
"contract.wasm",
"hash.txt",
]
[workspace.dependencies]
cosmwasm-std = { version = "1.5" }
cosmwasm-schema = { version = "1.5" }
cosmwasm-storage = { version = "1.5" }
cosmwasm-vm = { version = "1.5" }
thiserror = "1.0.26"
cw2 = { version = "1.0.1" }
cw20 = { version = "1.0.1" }
cw20-base = { version = "1.0.1" }
cw-storage-plus = { version = "1.0.1" }
derive_more = "0.99.17"
decimal-core = { path = "./packages/decimal-core" }
decimal = { path = "./packages/decimal" }
cosmwasm-testing-util = { git = "https://github.com/oraichain/cosmwasm-testing-util.git", rev = "8363328" }
oraiswap-v3-common = { path = "./packages/oraiswap-v3-common" }
incentives-fund-manager = { path = "./contracts/incentives-fund-manager" }
oraiswap = { git = "https://github.com/oraichain/oraiswap.git", rev = "45c1930" }
oraiswap-v3 = { path = "./contracts/oraiswap-v3" }
oraiswap-oracle = { git = "https://github.com/oraichain/oraiswap.git", rev = "45c1930" }
oraiswap-pair = { git = "https://github.com/oraichain/oraiswap.git", rev = "45c1930" }
oraiswap-factory = { git = "https://github.com/oraichain/oraiswap.git", rev = "45c1930" }
oraiswap-mixed-router = { git = "https://github.com/oraichain/oraiswap.git", rev = "45c1930" }
[patch."https://github.com/oraichain/oraiswap-v3"]
oraiswap-v3-common = { path = "./packages/oraiswap-v3-common" }
[profile.release]
opt-level = 3
debug = false
debug-assertions = false
codegen-units = 1
incremental = false
rpath = false
lto = true
overflow-checks = true
panic = 'abort'