-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (53 loc) · 1.59 KB
/
Copy pathCargo.toml
File metadata and controls
57 lines (53 loc) · 1.59 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
[workspace]
resolver = "2"
members = [
"crates/afterray-protocol",
"crates/afterray-core",
"crates/afterray-store",
"crates/afterray-codec",
"crates/afterray-models",
"crates/afterray-infer",
"crates/afterray-harness",
"crates/afterray-agent",
"crates/afterray-platform-macos",
"crates/afterrayd",
"crates/afterray-cli",
]
[workspace.package]
version = "0.0.11"
edition = "2024"
license = "FSL-1.1-ALv2"
rust-version = "1.85"
[workspace.dependencies]
anyhow = "1.0"
async-trait = "0.1"
base64 = "0.22"
blake3 = "1.8"
chacha20poly1305 = "0.10"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4.5", features = ["derive", "env"] }
dirs = "6.0"
futures-util = "0.3"
fs2 = "0.4"
rand = "0.9"
qwen-asr = "0.11.0"
# `system-proxy` restores the default proxy resolution that `default-features =
# false` silently dropped: HTTP(S)_PROXY/ALL_PROXY env vars *and* the macOS
# system proxy (what Clash/Surge-style clients configure). Without it every
# request goes direct and model downloads fail for anyone behind a proxy.
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "stream", "system-proxy"] }
rusqlite = { version = "0.38", features = ["bundled-sqlcipher-vendored-openssl"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10"
thiserror = "2.0"
tokio = { version = "1.49", features = ["full"] }
unicode-normalization = "0.1"
uuid = { version = "1.20", features = ["v7", "serde"] }
zeroize = "1.8"
zstd = "0.13"
[workspace.lints.rust]
unsafe_code = "deny"
[workspace.lints.clippy]
all = "warn"
pedantic = "warn"