-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (27 loc) · 900 Bytes
/
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
[package]
name = "brotocol-bonding-v1"
version = "1.1.0"
authors = ["block42"]
edition = "2018"
description = "A Bonding V1 contract for Brotocol"
repository = "https://github.com/block42-blockchain-company/brotocol-token-contracts"
license = "MIT"
[lib]
crate-type = ["cdylib", "rlib"]
[features]
# for more explicit tests, cargo test --features=backtraces
backtraces = ["cosmwasm-std/backtraces"]
[dependencies]
cosmwasm-std = { version = "0.16.2" }
cosmwasm-storage = { version = "0.16.0" }
terra-cosmwasm = { version = "2.2.0" }
cw-storage-plus = "0.8.0"
cw2 = "0.8.1"
cw20 = "0.8.1"
schemars = "0.8.3"
serde = { version = "1.0.127", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.26" }
services = { path = "../../packages/services", default-features = false, version = "1.0.0" }
astroport = "1.0.1"
[dev-dependencies]
cosmwasm-schema = { version = "0.16.0" }