-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
44 lines (41 loc) · 1023 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
37
38
39
40
41
42
43
44
[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.29", default-features = false, features = [
"wayland",
"x11",
"glow",
"default_fonts",
"persistence",
] }
egui_plot = "0.29"
env_logger = "0.11"
bytemuck = { version = "1.13.1", features = [
"latest_stable_rust",
"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
opt-level = 3
[profile.dev.package."*"]
# opt-level = 2