-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (27 loc) · 971 Bytes
/
Cargo.toml
File metadata and controls
29 lines (27 loc) · 971 Bytes
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
[package]
name = "orbit"
version = "0.4.5"
authors = ["Konstantinos Passadis"]
description = "Orbit is a performance-focused, post-quantum secure version control system"
edition = "2021"
[[bin]]
name = "orb"
path = "src/main.rs"
[dependencies]
clap = { version = "4.5", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha3 = "0.10"
fastcdc = "3.2" # Content-Defined Chunking
rayon = "1.8" # Parallel processing
git2 = "0.20" # Git interoperability (basic features)
tokio = { version = "1", features = ["full"] }
futures = "0.3"
tokio-rustls = "0.25"
rustls = "0.22"
rustls-pemfile = "2.0"
rustls-pki-types = "1.0"
webpki-roots = "0.26" # Async stream utilities
reqwest = { version = "0.11", features = ["json"] } # HTTP client for admin API
dotenv = "0.15" # Environment variable loading
dirs = "5.0" # Home directory detection