forked from astroport-fi/astroport-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (33 loc) · 1.03 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
[package]
name = "astroport-pair-transmuter"
version = "1.1.2"
authors = ["Astroport"]
edition = "2021"
description = "The Astroport constant sum pair contract implementation. Handles no fee pools with constant 1:1 ratio."
license = "GPL-3.0-only"
repository = "https://github.com/astroport-fi/astroport"
homepage = "https://astroport.fi"
metadata = { build_variants = ["injective", "sei"] }
[lib]
crate-type = ["cdylib", "rlib"]
[features]
library = []
injective = ["astroport/injective"]
sei = ["astroport/sei"]
[dependencies]
astroport.workspace = true
cosmwasm-std = { workspace = true, features = ["cosmwasm_1_1", "stargate"] }
cw-storage-plus = "1.2.0"
cosmwasm-schema = "1.5.0"
thiserror.workspace = true
cw2.workspace = true
cw20 = "1.1"
cw-utils.workspace = true
itertools.workspace = true
[dev-dependencies]
anyhow = "1"
derivative = "2"
cw20-base = "1.1"
astroport-factory = { path = "../factory" }
astroport-native-coin-registry = { path = "../periphery/native_coin_registry" }
astroport-test = { path = "../../packages/astroport_test" }