-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
86 lines (70 loc) · 1.57 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[package]
name = "grex_t0"
version = "0.0.0"
edition = "2021"
[dependencies]
# Runtime
tokio = { version = "1", features = ["full"] }
core_affinity = "0.8"
# CLI Tools
clap = { version = "4", features = ["derive"] }
regex = "1"
# FPGA And Packet Capture
casperfpga = "0.2"
casperfpga_derive = "0.2"
fixed = "1"
socket2 = "0.5"
# Math
num-complex = "0.4"
ndarray = "0.16"
# Time
hifitime = "3"
rsntp = "4"
# Macros
paste = "1"
serde = { version = "1", features = ["derive"] }
# Triggering
serde_json = "1"
# Exfil and Dumps
sigproc_filterbank = "0.4"
psrdada = "0.4"
byte-slice-cast = "1"
netcdf = "0.10"
# Error Handling
eyre = "0.6"
color-eyre = "0.6"
thiserror = "1"
# Logging Support
rusqlite = { version = "0.32", features = ["bundled"] }
actix-web = "4"
tracing-actix-web = { version = "0.7", features = ["opentelemetry_0_22"] }
prometheus = "0.13"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
### All the nonsense for opentelemetry
opentelemetry = "0.22"
opentelemetry_sdk = { version = "0.22", features = ["rt-tokio-current-thread"] }
opentelemetry-otlp = { version = "0.15", features = ["logs"] }
tracing-opentelemetry = "0.23"
opentelemetry-semantic-conventions = "0.14"
opentelemetry-appender-tracing = "0.3"
# Misc
thingbuf = { version = "0.1", features = ["static"] }
arrayvec = "0.7"
memmap2 = "0.9"
pulp = "0.18"
[lib]
name = "grex_t0"
path = "src/lib.rs"
[[bin]]
name = "grex_t0"
path = "src/main.rs"
[[bench]]
name = "benchmarks"
harness = false
[profile.release]
debug = 1
panic = "abort"
[dev-dependencies]
criterion = "0.5"
rand = "0.8"