-
Notifications
You must be signed in to change notification settings - Fork 138
/
Cargo.toml
50 lines (45 loc) · 1.17 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
41
42
43
44
45
46
47
48
49
50
[workspace]
members = [
"src/asset_util",
"src/internet_identity",
"src/canister_tests",
"src/internet_identity_interface",
"src/archive",
"src/sig-verifier-js"
]
resolver = "2"
[profile.release]
debug = false # stripped by ic-wasm anyway
lto = true
opt-level = 'z'
[workspace.dependencies]
# local dependencies
asset_util = { path = "src/asset_util" }
canister_tests = { path = "src/canister_tests" }
internet_identity_interface = { path = "src/internet_identity_interface" }
# ic dependencies
candid = "0.10"
candid_parser = "0.1.2"
ic-cdk = "0.16"
ic-cdk-macros = "0.16"
ic-cdk-timers = "0.10"
ic-certification = "2.6"
ic-http-certification = "2.6"
ic-metrics-encoder = "1"
ic-representation-independent-hash = "2.6"
ic-response-verification = "2.6"
ic-stable-structures = "0.6"
ic-verifiable-credentials = {git = "https://github.com/dfinity/verifiable-credentials-sdk", rev = "b74c746ea5361af3da207a2c957be4a951f7a72c"}
ic-canister-sig-creation = "1.1"
pocket-ic = "5.0"
# other dependencies
assert_matches = "1.5"
base64 = "0.22"
hex = "0.4"
include_dir = "0.7"
lazy_static = "1.5"
regex = "1.10"
serde = "1"
serde_bytes = "0.11"
serde_cbor = "0.11"
sha2 = "0.10"