-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
65 lines (60 loc) · 1.77 KB
/
Cargo.toml
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
[workspace]
resolver = "2"
members = [
"common",
"storage",
"testing-utils",
"agent",
"archiver",
"ctl",
"event-processor",
"integration-tests",
]
[workspace.package]
license = "MIT"
version = "0.3.1"
edition = "2021"
[workspace.dependencies]
async-channel = "2.3.1"
async-trait = "0.1.86"
axum = "0.7.9"
byte-unit = { version = "4.0", features = ["serde"] }
bytes = { version = "1.9.0", features = ["serde"] }
chrono = { version = "0.4.39", features = ["serde"] }
ciborium = "0.2.2"
clap = { version = "4.4.18", features = ["cargo", "derive", "env", "string"] }
ctor = "0.2.9"
crossterm = "0.27"
futures = "0.3.31"
hex = "0.4.3"
hpke = { version = "0.11.0", features = ["std", "serde_impls"] }
indoc = "2.0.5"
lazy_static = "1.5.0"
m3u8-rs = "5.0.5"
metrics = "0.21.1"
metrics-exporter-prometheus = "0.12.2"
nix = { version = "0.27.0", features = ["process", "signal"] }
pem-rfc7468 = { version = "0.7.0", features = ["alloc"] }
rand = "0.8.5"
ratatui = { version = "0.23.0", features = ["all-widgets"]}
rayon = "1.10.0"
regex = "1.11.1"
reqwest = { version = "0.11.27", default-features = false, features = ["rustls-tls"] }
rumqttc = "0.23.0"
rust-s3 = "0.34.0"
satori-common = { path = "./common" }
satori-storage = { path = "./storage" }
satori-testing-utils = { path = "./testing-utils" }
serde = { version = "1.0", features = ["derive"] }
serde_with = "3.12"
serde_json = "1.0.138"
tempfile = "3.16.0"
thiserror = "1.0.69"
tokio = { version = "1.43", features = ["macros", "rt-multi-thread", "signal", "process"] }
tokio-stream = { version = "0.1.17", features = ["sync"] }
tokio-util = { version = "0.7.13", features = ["codec"] }
toml = "0.8"
tower-http = { version = "0.5.2", features = ["fs"] }
tracing = "0.1"
tracing-subscriber = "0.3"
url = { version = "2.5", features = ["serde"] }