-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
40 lines (35 loc) · 1.29 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
40
[workspace]
members = ["packages/cheqd", "packages/common", "contracts/sdjwt-verifier", "contracts/avida_example", "packages/avida_test_utils"]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
repository = "https://github.com/nymlab/avida"
keywords = [ "Vectis", "CosmWasm", "zkp", "verifiableCredential", "sd-jwt" ]
[workspace.dependencies]
anyhow = { version = "1.0.51"}
cosmwasm-schema = "2.1.0"
cosmwasm-std = { version = "2.1.0", features = [
"cosmwasm_1_4",
"stargate",
# Enable this if you only deploy to chains that have CosmWasm 2.0 or higher
# "cosmwasm_2_0",
] }
cw-storage-plus = "2.0.0"
cw2 = "2.0.0"
schemars = "0.8.16"
serde = { version = "1.0.197", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.58" }
sd-jwt-rs = { git = "https://github.com/nymlab/sd-jwt-rust", rev = "c05b255790a6b2f702e", default-features = false, features = ["no_rand"]}
jsonwebtoken = { git = "https://github.com/nymlab/jsonwebtoken", rev = "98763b38713c54f", default-features = false, features = ["no_rand"] }
serde_json = {version = "1.0.116", default-features = false, features = ["alloc"]}
cw-utils = "2.0.0"
[profile.release]
codegen-units = 1
incremental = false
rpath = false
lto = true
overflow-checks = true
opt-level = 3
debug = false
debug-assertions = false