forked from AbstractSDK/barcelona2024
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
87 lines (73 loc) · 3.86 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[package]
authors = [
"CyberHoward <[email protected]>",
"Riada <[email protected]>",
"Abstract Money <[email protected]>",
]
edition = "2021"
name = "payment-app"
version = "0.4.0"
exclude = ["contract.wasm", "hash.txt"]
[lib]
crate-type = ["cdylib", "rlib"]
[[example]]
name = "schema"
required-features = ["schema"]
[[example]]
name = "deploy"
[features]
default = ["export"]
export = []
# enable node-backed tests (ensure Docker is running)
# run with `cargo test --jobs 1 --features node-tests`
node-tests = []
schema = ["abstract-app/schema"]
[dependencies]
cosmwasm-schema = { version = "2.0" }
cosmwasm-std = { version = "2.0" }
cw-asset = { version = "4.0" }
cw-controllers = { version = "2.0" }
cw-storage-plus = "2.0.0"
cw20 = { version = "2.0.0" }
thiserror = { version = "1.0.50" }
abstract-app = { git = "https://github.com/abstractsdk/abstract", rev = "34cd097ea" }
abstract-dex-adapter = { git = "https://github.com/abstractsdk/abstract", rev = "34cd097ea", default-features = false }
cw-orch = { version = "0.27.0" }
# Dependencies for interface
[dev-dependencies]
abstract-app = { git = "https://github.com/abstractsdk/abstract", rev = "34cd097ea", features = ["test-utils"] }
abstract-integration-tests = { git = "https://github.com/abstractsdk/abstract", rev = "34cd097ea" }
abstract-interface = { git = "https://github.com/abstractsdk/abstract", rev = "34cd097ea", features = ["daemon"] }
clap = { version = "4.0.32", features = ["derive"] }
cw-orch = { version = "0.27.0", features = ["daemon"] }
dotenv = "0.15.0"
env_logger = "0.11.3"
semver = "1.0"
cw-plus-orch = { version = "0.25.0" }
cw20 = { version = "2.0.0" }
cw20-base = { version = "2.0.0" }
abstract-client = { git = "https://github.com/abstractsdk/abstract", rev = "34cd097ea", features = ["interchain"] }
abstract-dex-adapter = { git = "https://github.com/abstractsdk/abstract", rev = "34cd097ea", features = ["wynd", "testing"] }
abstract-std = { git = "https://github.com/abstractsdk/abstract", rev = "34cd097ea" }
anyhow = "1.0.93"
cw-orch-interchain = { version = "0.8.1", features = ["daemon"] }
mockdex-bundle = { git = "https://github.com/abstractsdk/abstract", rev = "34cd097ea" }
neutron-std = "5.0.1-rc0"
osmosis-std = "0.26.0"
prost = "0.12.3"
prost-types = "0.13.3"
prost_13 = { version = "0.13.3", package = "prost" }
[patch.crates-io]
abstract-adapter = { git = "https://github.com/abstractsdk/abstract", rev = "34cd097ea" }
abstract-adapter-utils = { git = "https://github.com/abstractsdk/abstract", rev = "34cd097ea" }
abstract-app = { git = "https://github.com/abstractsdk/abstract", rev = "34cd097ea" }
abstract-client = { git = "https://github.com/abstractsdk/abstract", rev = "34cd097ea" }
abstract-dex-standard = { git = "https://github.com/abstractsdk/abstract", rev = "34cd097ea" }
abstract-interface = { git = "https://github.com/abstractsdk/abstract", rev = "34cd097ea" }
abstract-macros = { git = "https://github.com/abstractsdk/abstract", rev = "34cd097ea" }
abstract-money-market-standard = { git = "https://github.com/abstractsdk/abstract", rev = "34cd097ea" }
abstract-sdk = { git = "https://github.com/abstractsdk/abstract", rev = "34cd097ea" }
abstract-staking-standard = { git = "https://github.com/abstractsdk/abstract", rev = "34cd097ea" }
abstract-standalone = { git = "https://github.com/abstractsdk/abstract", rev = "34cd097ea" }
abstract-std = { git = "https://github.com/abstractsdk/abstract", rev = "34cd097ea" }
abstract-testing = { git = "https://github.com/abstractsdk/abstract", rev = "34cd097ea" }