-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (47 loc) · 1.1 KB
/
Cargo.toml
File metadata and controls
52 lines (47 loc) · 1.1 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
[package]
name = "stabilizer-stream"
version = "0.1.1"
authors = [
"Robert Jördens <rj@quartiq.de>",
"Ryan Summers <ryan.summers@vertigo-designs.com>",
]
license = "MIT OR Apache-2.0"
edition = "2021"
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.34", default-features = false, features = [
"wayland",
"x11",
"glow",
"default_fonts",
"persistence",
] }
egui_plot = "0.35"
env_logger = "0.11"
bytemuck = { version = "1.13.1", features = [
"latest_stable_rust",
"extern_crate_std",
] }
thiserror = "2"
anyhow = "1.0.75"
socket2 = { version = "0.6.0", features = [ "all" ] }
idsp = "0.21"
dsp-process = "0.2.0"
rustfft = "6.1.0"
rand = "0.10.0"
derive_builder = "0.20.0"
[profile.release]
# debug = 1
opt-level = 3
[profile.dev]
debug = "line-tables-only"
[profile.dev.package."*"]
# opt-level = 2
debug = false
[profile.debugging]
inherits = "dev"
debug = true