-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (43 loc) · 1012 Bytes
/
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
[workspace]
members = [
"cid-router",
"crates/api-utils",
"crates/cid-filter",
"crates/routes",
"external-crps/azure-blob-storage-crp",
"external-crps/github-crp",
]
resolver = "2"
[workspace.dependencies]
anyhow = "1"
async-trait = "0.1"
axum = "0.6"
azure_storage = "0.19"
azure_storage_blobs = "0.19"
blake3 = "1.5"
cid = "0.11"
chrono = "0.4"
clap = { version = "4", features = ["derive"] }
env_logger = "0.11"
futures = "0.3"
hex = "0.4"
itertools = "0.12"
iroh-base = "0.14"
iroh-bytes = "0.14"
iroh-net = "0.14"
log = "0.4"
multimap = "0.10"
octocrab = "0.38"
redb = "2"
reqwest = { version = "0.12", features = ["json"] }
serde = { version = "1", features = ["derive"] }
serde_jcs = "0.1"
serde_json = "1"
sha2 = "0.10"
tabled = "0.15"
tokio = { version = "1", features = ["full"] }
toml = "0.8"
tower = "0.4"
tower-http = { version = "0.5", features = ["cors"] }
utoipa = { version = "3", features = ["axum_extras"] }
utoipa-swagger-ui = { version = "3", features = ["axum"] }