-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
55 lines (53 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
[workspace]
resolver = "2"
members = [
"common",
"diagnostics",
"digitiser-aggregator",
"nexus-writer",
"simulator",
"streaming-types",
"trace-archiver-hdf5",
"trace-archiver-tdengine",
"trace-reader",
"trace-telemetry-exporter",
"trace-to-events",
]
[workspace.package]
version = "0.1.0"
license = "GPL-3.0-only"
edition = "2021"
[workspace.dependencies]
anyhow = "1.0.97"
assert_approx_eq = "1.1.0"
chrono = { version = "0.4.40", features = ["serde"] }
clap = { version = "4.5.34", features = ["derive", "env"] }
crossterm = { version = "0.28.1", default-features = false, features = ["events"] }
flatbuffers = "25.2.10"
glob = "0.3.2"
hdf5 = { package = "hdf5-metno", version = "0.9.4", features = ["static"] }
itertools = "0.13.0"
lazy_static = "1.5.0"
metrics = "0.24.1"
metrics-exporter-prometheus = "0.16.2"
ndarray = "0.16.1"
num = "0.4.3"
opentelemetry = "0.22.0"
opentelemetry-otlp = { version = "0.15.0", features = ["trace", "tonic", "tls-roots"] }
opentelemetry_sdk = { version = "0.22.1", default-features = false, features = ["trace", "rt-tokio"] }
rand = "0.9.0"
rand_distr = "0.5.1"
ratatui = "0.22.0"
rayon = "1.10.0"
rdkafka = { version = "0.37.0", features = ["cmake-build", "ssl", "gssapi", "sasl"] }
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1.0.140" }
strum = { version = "0.26.3", features = ["derive"] }
supermusr-common = { path = "./common" }
supermusr-streaming-types = { path = "./streaming-types" }
taos = { version = "0.10.27", default-features = false, features = ["ws"] }
tokio = { version = "1.44", features = ["macros", "rt-multi-thread", "signal", "sync"] }
thiserror = "2.0.12"
tracing = "0.1.41"
tracing-opentelemetry = "0.23.0"
tracing-subscriber = { version = "0.3.19", features = ["std", "fmt", "env-filter"] }