-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
56 lines (54 loc) · 1.64 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
[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"
assert_approx_eq = "1.1.0"
async-trait = "0.1.83"
chrono = { version = "0.4.39", features = ["serde"] }
clap = { version = "4.5", features = ["derive", "env"] }
crossterm = "0.26.1"
flatbuffers = "22.12.6"
glob = "0.3.2"
hdf5 = "0.8.1"
itertools = "0.13.0"
lazy_static = "1.5.0"
metrics = "0.22.3"
metrics-exporter-prometheus = "0.14.0"
ndarray = "0.15.6"
ndarray-stats = "0.5.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.8.5"
rand_distr = "0.4.3"
ratatui = "0.22.0"
rayon = "1.10.0"
rdkafka = { version = "0.31.0", features = [ "cmake-build", "ssl", "gssapi", "sasl", ] }
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1.0.134" }
supermusr-common = { path = "./common" }
supermusr-streaming-types = { path = "./streaming-types" }
taos = { version = "0.10.27", default_features = false, features = ["ws"] }
tokio = { version = "1.42", features = ["macros", "rt-multi-thread", "signal", "sync"] }
thiserror = "1.0.69"
tracing = "0.1.41"
tracing-opentelemetry = "0.23.0"
tracing-subscriber = { version = "0.3.19", features = ["std", "fmt", "env-filter"] }