-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (43 loc) · 1.26 KB
/
Cargo.toml
File metadata and controls
49 lines (43 loc) · 1.26 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
[workspace]
resolver = "2"
members = [
"crates/lib/marathon-core",
"crates/lib/marathon-db",
"crates/lib/marathon-index",
"crates/lib/marathon-splice",
"crates/lib/marathon-stream",
"crates/bin/marathon-server",
"crates/tests",
]
[workspace.package]
version = "0.1.0"
edition = "2024"
authors = ["Viktor Dudnik (0x07C0)"]
license = "GPL-3.0-only"
[workspace.dependencies]
# Internal Crates
marathon-core = { path = "crates/lib/marathon-core" }
marathon-db = { path = "crates/lib/marathon-db" }
marathon-index = { path = "crates/lib/marathon-index" }
marathon-splice = { path = "crates/lib/marathon-splice" }
marathon-stream = { path = "crates/lib/marathon-stream" }
# Async & Web
axum = "0.8"
tokio = { version = "1", features = ["full"] }
tower = "0.5"
tower-http = { version = "0.6", features = ["cors", "fs", "trace"] }
async-trait = "0.1"
# Data
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "sqlite", "uuid", "macros"] }
# Media
ffmpeg-next = { version = "8.0", features = ["format", "codec", "filter"] }
base64 = "0.22"
# Utilities
anyhow = "1.0"
thiserror = "2.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tempfile = "3.24"
walkdir = "2.1"