-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
64 lines (61 loc) · 1.49 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
56
57
58
59
60
61
62
63
64
[workspace]
members = [
"src/ic_cose_canister",
"src/ic_cose",
"src/ic_cose_types",
"src/ic_object_store",
"src/ic_object_store_canister",
"src/ic_wasm_canister",
]
resolver = "2"
[profile.release]
debug = 'none'
lto = true
strip = true
opt-level = 's'
[workspace.package]
version = "0.7.0"
edition = "2021"
repository = "https://github.com/ldclabs/ic-cose"
keywords = ["config", "cbor", "canister", "icp", "encryption"]
categories = ["web-programming"]
license = "MIT OR Apache-2.0"
[workspace.dependencies]
async-trait = "0.1"
bytes = "1.9"
candid = "0.10"
ciborium = "0.2"
futures = "0.3"
serde = "1"
serde_bytes = "0.11"
serde_with = "3.12"
k256 = { version = "0.13", features = ["ecdsa", "schnorr"] }
ed25519-dalek = "2"
x25519-dalek = { version = "2", features = ["static_secrets"] }
hmac = "0.12"
hkdf = "0.12"
const-hex = "1"
sha2 = "0.10"
sha3 = "0.10"
num-traits = "0.2"
ic-cdk = "0.17"
ic-cdk-timers = "0.11"
ic-stable-structures = "0.6"
icrc-ledger-types = "0.1"
ic-certification = "3.0"
ic-canister-sig-creation = "1.2"
ic-agent = "0.40"
ic_auth_types = "0.2"
ic_auth_verifier = { version = "0.2" }
getrandom = { version = "0.2", features = ["custom"] }
rand = "0.8"
coset = "0.3"
aes-gcm = "0.10"
# keep in sync with lancedb
object_store = { version = "0.11" }
chrono = { version = "0.4", default-features = false, features = ["clock"] }
thiserror = "2"
ic-secp256k1 = { version = "0.1" }
ic-ed25519 = { version = "0.2" }
tokio = { version = "1", features = ["full"] }
ed25519-consensus = "2.1"