-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
55 lines (52 loc) · 1.15 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/ic_oss_bucket",
"src/ic_oss_cluster",
"src/ic_oss_types",
"src/ic_oss_can",
"src/ic_oss",
"src/ic_oss_cli",
"examples/ai_canister",
]
resolver = "2"
[profile.release]
debug = false
lto = true
strip = true
opt-level = 's'
[workspace.package]
version = "0.9.10"
edition = "2021"
repository = "https://github.com/ldclabs/ic-oss"
keywords = ["file", "storage", "oss", "s3", "icp"]
categories = ["web-programming"]
license = "MIT OR Apache-2.0"
[workspace.dependencies]
bytes = "1"
base64 = "0.22"
candid = "0.10"
ciborium = "0.2"
coset = "0.3"
futures = "0.3"
serde = "1"
serde_bytes = "0.11"
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
tokio-util = { version = "0.7", features = ["codec"] }
k256 = { version = "0.13", features = ["ecdsa"] }
ed25519-dalek = "2"
hex = "0.4"
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-http-certification = { version = "2.6", features = ["serde"] }
ic-agent = "0.39"
anyhow = "1"
crc32fast = "1.4"
url = "2.5"
once_cell = "1.20"
getrandom = { version = "0.2", features = ["custom"] }