forked from apollodao/cw-dex-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
65 lines (57 loc) · 1.82 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
61
62
63
64
65
[package]
authors = ["Apollo Devs <shared@apollo.farm>"]
description = "A cosmwasm contract for routing swaps across multiple dexes."
documentation = "https://docs.rs/cw-dex-router"
edition = "2021"
homepage = "https://apollo.farm"
keywords = ["cosmwasm", "dex", "router", "osmosis", "astroport"]
license = "MPL-2.0"
name = "cw-dex-router"
readme = "README.md"
repository = "https://github.com/apollodao/cw-dex-router"
version = "0.2.1-rc.1"
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",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib", "rlib"]
[profile.release]
codegen-units = 1
debug = false
debug-assertions = false
incremental = false
lto = true
opt-level = 3
overflow-checks = true
panic = 'abort'
rpath = false
[features]
default = ["cw-dex/osmosis"]
# use library feature to disable all instantiate/execute/query exports
astroport = ["cw-dex/astroport"]
library = []
osmosis = ["cw-dex/osmosis"]
[package.metadata.optimizer]
builds = [
{name = "astroport", features = ["astroport"]},
{name = "osmosis", features = ["osmosis"]},
]
[dependencies]
apollo-cw-asset = "0.1.0"
apollo-utils = "0.1.0"
cosmwasm-schema = "1.2.1"
cosmwasm-std = "1.2.1"
cw-controllers = "1.0.1"
cw-dex = {git = "https://github.com/quasar-finance/cw-dex", branch = "feat/deprecate-osmo-gamm"}
cw-storage-plus = "1.0.1"
cw2 = "1.0.1"
cw20 = "1.0.1"
thiserror = "1.0.38"
[dev-dependencies]
cw-it = {git = "https://github.com/apollodao/cw-it.git", rev = "1a3eea575ef82e71460db7296a9e0b5ffa98dcff"}
osmosis-std = "0.22.0"
osmosis-test-tube = {git = "https://github.com/magiodev/test-tube/", branch = "fix/v22_go_mod_tidy"}
test-case = "3.0.0"