forked from dfinity/internet-identity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
55 lines (50 loc) · 1.38 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
51
52
53
54
55
[workspace]
members = [
"src/asset_util",
"src/internet_identity",
"src/canister_sig_util",
"src/canister_tests",
"src/internet_identity_interface",
"src/archive",
"src/vc_util",
"src/vc_util_js",
"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_sig_util = { path = "src/canister_sig_util" }
canister_tests = { path = "src/canister_tests" }
internet_identity_interface = { path = "src/internet_identity_interface" }
vc_util = { path = "src/vc_util" }
# ic dependencies
candid = "0.10"
candid_parser = "0.1.2"
ic-cdk = "0.13"
ic-cdk-macros = "0.13"
ic-cdk-timers = "0.7"
ic-certification = "2.2"
ic-http-certification = "2.2"
ic-metrics-encoder = "1"
ic-representation-independent-hash = "2.2"
ic-response-verification = "2.2"
ic-stable-structures = "0.6"
ic-crypto-standalone-sig-verifier = { git = "https://github.com/dfinity/ic", rev = "e69bcc7b319cbb3ebc22ec55af35287741244db6" }
ic-types = { git = "https://github.com/dfinity/ic", rev = "e69bcc7b319cbb3ebc22ec55af35287741244db6" }
pocket-ic = "4.0"
# other dependencies
assert_matches = "1.5.0"
base64 = "0.21"
hex = "0.4"
include_dir = "0.7"
lazy_static = "1.4"
regex = "1.9"
serde = "1"
serde_bytes = "0.11"
serde_cbor = "0.11"
sha2 = "0.10"