-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (34 loc) · 1006 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
32
33
34
35
36
37
38
39
[package]
name = "marbleincentive"
version = "0.0.1"
authors = ["Joni Lai <[email protected]>", "MARBLE"]
edition = "2018"
description = "Marble incentive contract"
license = "Apache-2.0"
repository = "https://github.com/PhantomTop/incentive-contract"
homepage = "https://cosmwasm.com"
documentation = "https://docs.cosmwasm.com"
exclude = [
"contract.wasm",
"hash.txt",
]
[lib]
crate-type = ["cdylib", "rlib"]
[features]
backtraces = ["cosmwasm-std/backtraces"]
library = []
[dependencies]
cw-utils = { version = "0.11" }
cw2 = { version = "0.11" }
cw20 = { version = "0.11" }
cw20-base = { version = "0.11.1", features = ["library"] }
cosmwasm-std = { version = "1.0.0-beta" }
cw-storage-plus = { version = "0.11" }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.23" }
hex = "0.4"
#sha2 = { version = "0.9.5", default-features = false }
[dev-dependencies]
cosmwasm-schema = "1.0.0-beta"
serde_json = "1.0"