-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (33 loc) · 1.02 KB
/
Cargo.toml
File metadata and controls
36 lines (33 loc) · 1.02 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
[package]
name = "ledoxide"
version = "0.0.0"
edition = "2024"
[dependencies]
anyhow = "1.0.101"
async-stream = "0.3.6"
axum = { version = "0.8.8", features = ["macros", "multipart"] }
axum-extra = { version = "0.12.5", features = ["typed-header"] }
clap = { version = "4.5.58", features = ["derive"] }
encoding_rs = "0.8.35"
futures = "0.3.31"
hf-hub = { version = "0.5.0", features = ["tokio"] }
image = "0.25.9"
llama-runner = { version = "2.0.0" }
log = "0.4.29"
postcard = { version = "1.1.3", features = ["alloc"] }
pretty_env_logger = "0.5.0"
rand = "0.10.0"
regex = "1.12.3"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
strum = { version = "0.27.2", features = ["derive"] }
tempfile = "3.25.0"
thiserror = "2.0.18"
tokio = { version = "1.49.0", features = ["rt-multi-thread"] }
zip = "8.2.0"
[dev-dependencies]
reqwest = { version = "0.13.2", features = ["multipart", "stream"] }
tower = { version = "0.5.3", features = ["util"] }
[features]
cuda = ["llama-runner/cuda"]
metal = ["llama-runner/metal"]