-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
31 lines (27 loc) · 1018 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 = "club-staking"
version = "0.9.1"
authors = ["Nitin Khobragade <[email protected]>"]
edition = "2018"
description = "Staking logic for clubs in Crypto 11 ecosystem"
license = "Apache-2.0"
repository = "https://github.com/crll9/contracts"
homepage = "https://crypto11.me"
documentation = "https://docs.cosmwasm.com"
[lib]
crate-type = ["cdylib", "rlib"]
[features]
backtraces = ["cosmwasm-std/backtraces"]
# use library feature to disable all instantiate/execute/query exports
library = []
[dependencies]
cw0 = { path = "../../packages/cw0", version = "0.9.1" }
cw2 = { path = "../../packages/cw2", version = "0.9.1" }
cw20 = { path = "../../packages/cw20", version = "0.9.1" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.9.1" }
cosmwasm-std = { version = "0.16.0" }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.23" }
[dev-dependencies]
cosmwasm-schema = { version = "0.16.0" }