-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (48 loc) · 1.02 KB
/
Cargo.toml
File metadata and controls
57 lines (48 loc) · 1.02 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
[package]
name = "rustortion"
version = "0.1.5"
edition = "2024"
default-run = "rustortion"
repository = "https://github.com/OpenSauce/rustortion"
[[bin]]
name = "rustortion"
path = "src/bin/gui.rs"
[dependencies]
jack = "0.13"
hound = "3.5"
ctrlc = { version = "3.5", features = ["termination"] }
chrono = "0.4"
clap = {version = "4.5", features = ["derive", "env"] }
rubato = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
crossbeam = "0.8"
iced = { version = "0.14", features = ["tokio"] }
log = "0.4"
env_logger = "0.11"
dotenv = "0.15"
anyhow = "1.0"
rustfft = "6.4"
realfft = "3.5"
arc-swap = "1.8"
midir = "0.10"
[dev-dependencies]
criterion = {version = "0.8", features = ["html_reports"] }
tempfile = "3.24"
[[bench]]
name = "impulse_responses"
harness = false
[[bench]]
name = "engine"
harness = false
[[bench]]
name = "chain"
harness = false
[[bench]]
name = "samplers"
harness = false
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
codegen-units = 1
lto = true