-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
61 lines (58 loc) · 1.67 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
[workspace]
members = [
"src/ic_cose_canister",
"src/ic_cose",
"src/ic_cose_types",
"src/ic_object_store",
"src/ic_object_store_canister",
]
resolver = "2"
[profile.release]
debug = false
lto = true
strip = true
opt-level = 's'
[workspace.package]
version = "0.6.7"
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"
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.1"
ic-agent = "0.39"
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.10.2" }
chrono = { version = "0.4", default-features = false, features = ["clock"] }
thiserror = "2"
ic-crypto-secp256k1 = { git = "https://github.com/dfinity/ic/", rev = "5d202894864f4db4a5a46f44422aebc80c3d321b" }
ic-crypto-ed25519 = { git = "https://github.com/dfinity/ic/", rev = "5d202894864f4db4a5a46f44422aebc80c3d321b" }
ic-crypto-standalone-sig-verifier = { git = "https://github.com/dfinity/ic/", rev = "5d202894864f4db4a5a46f44422aebc80c3d321b" }
tokio = { version = "1", features = ["full"] }
ed25519-consensus = "2.1"