-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
102 lines (89 loc) · 2.35 KB
/
Cargo.toml
File metadata and controls
102 lines (89 loc) · 2.35 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[workspace]
resolver = "2"
members = ["crates/daemon", "crates/common", "crates/object-store", "crates/desktop/src-tauri"]
[workspace.package]
edition = "2021"
license = "MIT"
repository = "https://github.com/jax-ethdenver-2025/jax-bucket"
homepage = "https://github.com/jax-ethdenver-2025/jax-bucket"
keywords = ["p2p", "encryption", "storage", "ipfs", "sync"]
categories = ["cryptography", "network-programming", "filesystem"]
[workspace.dependencies]
# Core async/error handling
anyhow = "1.0"
async-trait = "0.1"
tokio = { version = "1.0", features = ["full"] }
futures = "0.3"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_with = "3.8"
bincode = "1.3"
bytes = "1.5"
# Web framework
axum = { version = "0.7", features = ["macros", "multipart"] }
tower = { version = "0.5", features = [
"load-shed",
"limit",
"timeout",
"util",
] }
tower-http = { version = "0.6", features = [
"fs",
"cors",
"sensitive-headers",
"trace",
"limit",
"util",
] }
http = "1.0"
# Networking/HTTP
reqwest = { version = "0.12", default-features = false, features = [
"rustls-tls",
"json",
"multipart",
] }
url = { version = "2.5", features = ["serde"] }
# Logging/tracing
tracing = "0.1"
tracing-subscriber = { version = "0.3", default-features = false, features = [
"env-filter",
"fmt",
"local-time",
"time",
"tracing",
] }
# CLI
clap = { version = "4.5", features = ["derive", "env"] }
# IPFS/P2P
# iroh = { version = "^0.35", features = ["discovery-pkarr-dht"] }
iroh = { version = "^0.93", features = ["discovery-pkarr-dht"] }
# iroh-blobs = { version = "^0.35", features = ["rpc"] }
iroh-blobs = { version = "^0.95" }
cid = { version = "0.11", features = ["serde"] }
ipld-core = { version = "0.4", features = ["serde"] }
serde_ipld_dagcbor = "0.6"
# Time/UUID
time = { version = "0.3", features = ["serde", "formatting", "parsing"] }
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1.8", features = ["v4", "serde"] }
# Utility
thiserror = "1.0"
parking_lot = "0.12"
directories = "5.0"
dirs = "5.0"
toml = "0.8"
pem = "3.0"
tempfile = "3.8"
mime_guess = "2.0"
# Template engine
askama = { version = "0.12", features = ["with-axum"] }
askama_axum = "0.4"
[profile.dev]
opt-level = 0
debug = true
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"