-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathCargo.toml
55 lines (48 loc) · 1.58 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
[workspace]
resolver = '2'
members = ["packages/*", "contracts/*"]
[workspace.package]
authors = ["Terraform Labs, PTE.", "Oraichain Labs"]
documentation = "https://github.com/oraichain/oraiswap.git"
edition = "2021"
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",
]
homepage = "https://orai.io"
license = "MIT"
repository = "https://github.com/oraichain/oraiswap.git"
version = "0.2.0"
[workspace.dependencies]
cosmwasm-schema = {version = "1.5.0"}
cosmwasm-std = {version = "1.5.0"}
cosmwasm-storage = {version = "1.5.0"}
cosmwasm-vm = {version = "1.5.0"}
thiserror = "1.0.26"
cw-controllers = "1.0.1"
cw-storage-plus = {version = "1.0.1"}
cw-utils = "0.16.0"
cw2 = {version = "1.0.1"}
cw20 = {version = "1.0.1"}
cw20-base = {version = "1.0.1"}
cosmwasm-testing-util = {git = "https://github.com/oraichain/cosmwasm-testing-util.git", rev = "c30f9e7"}
oraiswap = {path = "./packages/oraiswap"}
oraiswap-factory = {path = "./contracts/oraiswap_factory"}
oraiswap-oracle = {path = "./contracts/oraiswap_oracle"}
oraiswap-pair = {path = "./contracts/oraiswap_pair"}
oraiswap-router = {path = "./contracts/oraiswap_router"}
oraiswap-token = {path = "./contracts/oraiswap_token"}
oraiswap-v3 = {git = "https://github.com/oraichain/oraiswap-v3.git", rev = "7f2b8ac", features = [
"library",
]}
[profile.release]
codegen-units = 1
debug = false
debug-assertions = false
incremental = false
lto = true
opt-level = 3
overflow-checks = true
panic = 'abort'
rpath = false