-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (28 loc) · 847 Bytes
/
Cargo.toml
File metadata and controls
33 lines (28 loc) · 847 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
[package]
name = "malaria_model"
version = "0.1.0"
edition = "2021"
[dependencies]
burn = { version = "0.19.0", features = ["wgpu", "std", "tui", "train", "vision", "autodiff"], default-features = false }
burn-ndarray = "0.19.0"
burn-wgpu = "0.19.0"
burn-tensor = "0.19.0"
burn-train = "0.19.0"
image = "0.25.9"
rand = "0.9.2"
serde = { version = "1.0", features = ["derive"] }
csv = "1.3"
anyhow = "1.0"
rayon = "1.10.0"
axum = { version = "0.7", features = ["multipart", "macros"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
tower-http = { version = "0.5", features = ["cors"] }
serde_json = "1.0"
tract-onnx = "0.21"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
uuid = { version = "1", features = ["v4"] }
[profile.release]
lto = true
codegen-units = 1
opt-level = 3