-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
68 lines (57 loc) · 1.63 KB
/
Cargo.toml
File metadata and controls
68 lines (57 loc) · 1.63 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
60
61
62
63
64
65
66
67
68
[workspace]
members = ["crates/boxrun-types", "crates/boxrun-server", "crates/boxrun-sdk"]
resolver = "2"
[workspace.package]
version = "0.3.0"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/boxlite-ai/boxrun"
[workspace.dependencies]
# Web framework
axum = { version = "0.8", features = ["ws", "multipart"] }
axum-extra = { version = "0.10", features = ["typed-header"] }
tokio = { version = "1", features = ["full"] }
tower = "0.5"
tower-http = { version = "0.6", features = ["cors"] }
hyper = { version = "1", features = ["full"] }
hyper-util = { version = "0.1", features = ["tokio"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Database
rusqlite = { version = "0.32", features = ["bundled"] }
# CLI
clap = { version = "4", features = ["derive"] }
clap_complete = "4"
# HTTP client
reqwest = { version = "0.12", features = ["stream", "json", "multipart"] }
# BoxLite
boxlite = { git = "https://github.com/boxlite-ai/boxlite.git" }
# WebSocket client (for CLI attach)
tokio-tungstenite = "0.26"
libc = "0.2"
# Utilities
nanoid = "0.4"
chrono = { version = "0.4", features = ["serde"] }
thiserror = "2"
tempfile = "3"
dashmap = "6"
async-stream = "0.3"
futures = "0.3"
num_cpus = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tokio-stream = "0.1"
uuid = { version = "1", features = ["v4"] }
flate2 = "1"
tar = "0.4"
sha2 = "0.10"
http-body-util = "0.1"
eventsource-stream = "0.2"
# Internal crates
boxrun-types = { path = "crates/boxrun-types" }
boxrun-sdk = { path = "crates/boxrun-sdk" }
[profile.release]
opt-level = 3
lto = true
strip = true