-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
40 lines (35 loc) · 1.11 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
[package]
name = "cw-cyber-passport"
version = "1.0.0"
authors = ["CyberHead"]
edition = "2018"
[lib]
crate-type = ["cdylib", "rlib"]
[features]
# for more explicit tests, cargo test --features=backtraces
backtraces = ["cosmwasm-std/backtraces"]
# use library feature to disable all instantiate/execute/query exports
library = []
[dependencies]
cosmwasm-std = { version = "1.0.0", features = ["staking"] }
cosmwasm-storage = { version = "1.0.0" }
cw-storage-plus = "0.13.4"
cw2 = "0.13.4"
cw721 = { version = "0.13.2" }
schemars = "0.8.8"
serde = { version = "1.0.137", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.31" }
cyber-std = { version = "0.2.1" }
cw-cyber-subgraph = { path = "../cw-cyber-subgraph" }
cw-utils = { version = "0.13.4" }
hex = "0.4"
sha2 = { version = "0.9.5", default-features = false }
sha3 = "0.9"
bech32 = "0.8.1"
cw721-base = { version = "0.13.2", features = ["library"] }
primitive-types = {version = "0.10.1", default-features = false, features = ["byteorder"]}
ripemd160 = "0.9.1"
base64 = "0.13"
semver = "1"
[dev-dependencies]
cosmwasm-schema = { version = "1.0.0" }