-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
54 lines (46 loc) · 2.37 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
[package]
name = "astroport-generator"
version = "2.2.1"
authors = ["Astroport"]
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",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib", "rlib"]
[features]
# for more explicit tests, cargo test --features=backtraces
backtraces = ["cosmwasm-std/backtraces"]
[dependencies]
cosmwasm-std = { version = "1.1" }
cw2 = { version = "0.15" }
cw20 = { version = "0.15" }
cw-storage-plus = "0.15"
cw1-whitelist = { version = "0.15", features = ["library"] }
thiserror = { version = "1.0" }
astroport = { path = "../../../packages/astroport", default-features = false}
astroport-governance = { git = "https://github.com/astroport-fi/astroport-governance.git", branch = "main"}
protobuf = { version = "2", features = ["with-bytes"] }
cosmwasm-schema = { version = "1.1" }
[dev-dependencies]
cw-multi-test = "0.15"
astroport-token = {path = "../../token"}
astroport-vesting = {path = "../vesting"}
astroport-staking = {path = "../staking"}
astroport-factory = {path = "../../factory"}
astroport-pair = {path = "../../pair"}
astroport-pair-stable = {path = "../../pair_stable"}
astroport-whitelist = { path = "../../whitelist" }
anyhow = "1.0"
generator-controller = { git = "https://github.com/astroport-fi/astroport-governance.git", branch = "main" }
voting-escrow = { git = "https://github.com/astroport-fi/astroport-governance.git", branch = "main" }
voting-escrow-delegation = { git = "https://github.com/astroport-fi/astroport-governance.git", branch = "main" }
astroport-nft = { git = "https://github.com/astroport-fi/astroport-governance.git", branch = "main" }
cw721-base = { version = "0.15", features = ["library"] }
generator-proxy-to-vkr = { git = "https://github.com/astroport-fi/astro-generator-proxy-contracts.git", branch = "main" }
valkyrie = { git = "https://github.com/valkyrieprotocol/contracts.git", rev = "b5fcb666f17d7e291f40365756e50fc0d7b9bf54" }
valkyrie-lp-staking = { git = "https://github.com/valkyrieprotocol/contracts.git", rev = "b5fcb666f17d7e291f40365756e50fc0d7b9bf54" }
valkyrie-vp = { git = "https://github.com/valkyrieprotocol/contracts.git", rev = "b5fcb666f17d7e291f40365756e50fc0d7b9bf54" }