-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
70 lines (68 loc) · 2.39 KB
/
Cargo.toml
File metadata and controls
70 lines (68 loc) · 2.39 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
69
70
[workspace]
resolver = "2"
members = [
"common",
"diagnostics",
"digitiser-aggregator",
"nexus-writer",
"simulator",
"streaming-types",
"trace-reader",
"trace-to-events",
"trace-viewer",
]
[workspace.package]
version = "0.1.0"
license = "GPL-3.0-only"
edition = "2024"
[workspace.dependencies]
actix-files = "0.6"
actix-web = { version = "4", features = ["macros"] }
assert_approx_eq = "1.1.0"
cfg-if = "1"
chrono = { version = "0.4.42", features = ["serde"] }
clap = { version = "4.5.48", features = ["derive", "env", "cargo", "string"] }
console_error_panic_hook = "0.1"
const_format = "0.2.34"
crossterm = { version = "0.29.0", default-features = false, features = ["events"] }
flatbuffers = "25.9.23"
git-version = "0.3.9"
glob = "0.3.3"
hdf5 = { package = "hdf5-metno", version = "0.11.0", features = ["static"] }
itertools = "0.14.0"
lazy_static = "1.5.0"
leptos = { version = "0.8.4", features = ["tracing"] }
leptos_meta = "0.8.5"
leptos_actix = "0.8.5"
leptos_reactive = "0.6.15"
leptos_router = { version = "0.8.4", default-features = false }
leptos-use = { version = "0.16.3", features = ["use_interval"] }
libm = "0.2.15"
metrics = "0.24.2"
metrics-exporter-prometheus = "0.18.1"
miette = "7.6.0"
ndarray = "0.17.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"] }
plotly = "0.13.5"
plotters = { version = "0.3.7", default-features = false, features = ["plotters-svg", "svg_backend", "bitmap_encoder", "all_series", "bitmap_backend"] }
rand = "0.9.2"
rand_distr = "0.5.1"
ratatui = "0.30.0"
rayon = "1.11.0"
rdkafka = { version = "0.38.0", default-features = false, features = ["tokio", "cmake-build", "ssl-vendored", "zstd"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1.0.145"
strum = { version = "0.27.2", features = ["derive"] }
digital-muon-common = { path = "./common" }
digital-muon-streaming-types = { path = "./streaming-types" }
tokio = { version = "1.47", features = ["macros", "rt-multi-thread", "signal", "sync"] }
thiserror = "2.0.17"
tracing = "0.1.41"
tracing-opentelemetry = "0.23.0"
tracing-subscriber = { version = "0.3.20", features = ["std", "fmt", "env-filter"] }
url = { version = "2.5.7", features = ["serde"] }
uuid = { version = "1.17", features = ["v4"] }
wasm-bindgen = "=0.2.100"