-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (31 loc) · 879 Bytes
/
Copy pathCargo.toml
File metadata and controls
44 lines (31 loc) · 879 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
[package]
name = "vecBox"
version = "0.1.0"
edition = "2024"
[features]
default = ["cpu"]
cpu = []
cuda = ["vecbox-core/cuda"]
metal = ["vecbox-core/metal"]
accelerate = ["vecbox-core/accelerate"]
mkl = ["vecbox-core/mkl"]
[dependencies]
vecbox-core = { git = "https://github.com/alpaim/vecbox-core.git", tag = "v0.1.2" }
anyhow = { version = "1" }
image = { version = "0.25.2"}
serde_json = { version = "1" }
serde = { version = "1", features = ["derive"] }
base64 = "0.22.1"
clap = { version = "4.5.60", features = ["derive"] }
dirs = "5"
tokio = { version = "1.50.0", features = ["full"] }
ratatui = "0.30.0"
crossterm = "0.28"
axum = "0.8.8"
tower = "0.5.3"
tower-http = { version = "0.6", features = ["cors"] }
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.22", features = ["env-filter"] }
tracing-appender = "0.2.4"
[lints.clippy]
pedantic = "warn"