forked from dfinity/internet-identity
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (49 loc) · 1.29 KB
/
Cargo.toml
File metadata and controls
55 lines (49 loc) · 1.29 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[workspace]
members = [
"src/asset_util",
"src/internet_identity",
"src/internet_identity_frontend",
"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-metrics-encoder = "1"
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 = "9.0.2"
pretty_assertions = "1.4.1"
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"
rsa = "0.9.7"
minicbor = "1.0.0"
# Certification
ic-asset-certification = "3.0.3"
ic-certification = "3.0.3"
ic-http-certification = "3.0.3"
ic-representation-independent-hash = "3.0.3"
ic-response-verification = "3.0.3"