-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (37 loc) · 866 Bytes
/
Cargo.toml
File metadata and controls
47 lines (37 loc) · 866 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[workspace]
resolver = "2"
members = ["distro", "distro-rootfs"]
[workspace.package]
version = "0.1.0"
edition = "2024"
rust-version = "1.85"
license = "MIT OR Apache-2.0"
repository = "https://github.com/arcbox-labs/distro"
authors = ["ArcBox Labs <team@arcbox.dev>", "AprilNEA <dev@aprilnea.me>"]
[workspace.dependencies]
# Async runtime
tokio = { version = "1", features = ["fs", "io-util", "rt"] }
# HTTP
reqwest = { version = "0.12", default-features = false, features = [
"rustls-tls",
"stream",
"json",
] }
# Crypto
sha2 = "0.10"
hex = "0.4"
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Compression / Archive
tar = "0.4"
flate2 = "1"
xz2 = "0.1"
# Error handling
thiserror = "2"
# Logging
tracing = "0.1"
# Async utilities
futures = "0.3"
# Internal
distro = { version = "0.1.0", path = "distro" }