-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (38 loc) · 1.2 KB
/
Cargo.toml
File metadata and controls
41 lines (38 loc) · 1.2 KB
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
40
41
[workspace]
members = ["contracts/*"]
resolver = "3"
[profile.release]
opt-level = 3 # Use slightly better optimizations.
overflow-checks = true # Disable integer overflow checks.
[workspace.dependencies]
anyhow = "1.0.100"
base64 = "0.21.4"
bech32 = "0.9.1"
cosmos-sdk-proto = { package = "xion-cosmos-sdk-proto", version = "0.26.1", default-features = false, features = [
"std",
"cosmwasm",
"xion",
"serde",
] }
cosmwasm-schema = "2.2.2"
cosmwasm-std = { version = "2.2.2", features = ["stargate", "cosmwasm_2_1"] }
cw-address-like = "2.0.0"
cw-storage-plus = "2.0.0"
cw-utils = "2.0.0"
cw2 = "2.0.0"
cw721 = "0.20.0"
cw721-base = "0.20.0"
ed25519-zebra = { version = "=4.0.3", default-features = false }
getrandom = { version = "0.2.10", features = ["custom"] }
hex = "0.4"
p256 = { version = "0.13.2", features = ["ecdsa-core", "arithmetic", "serde"] }
phf = { version = "0.11.2", features = ["macros"] }
ripemd = "0.1.3"
rsa = { version = "0.9.2" }
schemars = "0.8.10"
serde = { version = "1.0.203", default-features = false, features = ["derive"] }
serde_json = "1.0.87"
sha2 = { version = "0.10.8", features = ["oid"] }
thiserror = "1"
tiny-keccak = { version = "2", features = ["keccak"] }
url = "2.5.2"