-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (53 loc) · 1.62 KB
/
Copy pathCargo.toml
File metadata and controls
59 lines (53 loc) · 1.62 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
[package]
name = "update_delivery_system"
version = "26.7.1"
edition = "2024"
license = "MIT"
description = "Update Delivery System for MindWork AI Studio"
[package.metadata.uds]
build = 1
[lints.clippy]
missing_docs_in_private_items = "deny"
[lints.rust]
missing_docs = "deny"
[[bin]]
name = "uds"
path = "src/main.rs"
[dependencies]
anyhow = "1"
async-stream = "0.3"
axum = { version = "0.8", features = ["macros", "multipart"] }
axum-server = { version = "0.8", features = ["tls-rustls"] }
bytes = "1"
base64 = "0.22"
ed25519-dalek = { version = "3", features = ["pkcs8", "pem"] }
flate2 = "1"
crossterm = "0.29"
clap = { version = "4.5", features = ["derive"] }
directories = "6"
futures-util = "0.3"
flexi_logger = { version = "0.31", default-features = false }
hex = "0.4"
getrandom = "0.4"
inquire = "0.9"
libc = "0.2"
reqwest = { version = "0.13.4", default-features = false, features = ["blocking", "json", "multipart", "query", "rustls", "stream"] }
semver = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = "0.11"
tar = "0.4"
tempfile = "3"
thiserror = "2"
time = { version = "0.3", features = ["formatting", "macros", "parsing", "serde"] }
tokio = { version = "1", features = ["fs", "io-util", "macros", "net", "rt-multi-thread", "signal", "time"] }
tokio-util = { version = "0.7", features = ["io"] }
toml = "1.1.2"
tower-http = { version = "0.7", features = ["catch-panic", "trace"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
url = "2"
uuid = { version = "1", features = ["v4", "serde"] }
zeroize = "1"
[dev-dependencies]
tower = { version = "0.5", features = ["util"] }