forked from quartiq/stabilizer-stream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (34 loc) · 912 Bytes
/
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
[package]
name = "stabilizer-stream"
version = "0.1.1"
authors = [
"Robert Jördens <[email protected]>",
"Ryan Summers <[email protected]>",
]
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.70"
description = "Tools to interact with Stabilizer streams, including PSD analysis app"
repository = "https://github.com/quartiq/stabilizer-streaming"
[dependencies]
clap = { version = "4.3", features = ["derive"] }
num_enum = "0.7"
log = "0.4"
eframe = { version = "0.28", default-features = false, features = [
"wayland",
"x11",
"glow",
"default_fonts",
] }
egui_plot = "0.28"
env_logger = "0.11"
bytemuck = { version = "1.13.1", features = ["extern_crate_std"] }
thiserror = "1.0.47"
anyhow = "1.0.75"
socket2 = "0.5.4"
idsp = "0.15"
rustfft = "6.1.0"
rand = { version = "0.8.5", features = ["small_rng"] }
derive_builder = "0.20.0"
[profile.release]
debug = 1