[package]
edition = "2021"
name = "rust-synth"
version = "0.23.0"
authors = ["Rustam <info@superduperai.co>"]
build = false
exclude = [
"out/*",
"dist/*",
"recordings/*",
"presets/*",
"*.wav",
"*.flac",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Terminal modular ambient synthesizer — FunDSP + Ratatui. Long cinematic pads, Euclidean drum sequencer, per-track LFO, Valhalla-Supermassive-style reverb, genetic evolution coupled to Conway's Game of Life, TOML presets, FLAC recording."
homepage = "https://github.com/fortunto2/rust-synth"
documentation = "https://docs.rs/rust-synth"
readme = "README.md"
keywords = [
"synthesizer",
"ambient",
"dsp",
"tui",
"music",
]
categories = [
"multimedia::audio",
"command-line-utilities",
"multimedia",
]
license = "MIT"
repository = "https://github.com/fortunto2/rust-synth"
[lib]
name = "rust_synth"
path = "src/lib.rs"
[[bin]]
name = "rust-synth"
path = "src/main.rs"
[[bin]]
name = "rust-synth-render"
path = "cli/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.chrono]
version = "0.4"
[dependencies.cpal]
version = "0.15"
[dependencies.crossterm]
version = "0.28"
[dependencies.flacenc]
version = "0.5"
[dependencies.fundsp]
version = "0.20"
[dependencies.hound]
version = "3.5"
[dependencies.parking_lot]
version = "0.12"
[dependencies.ratatui]
version = "0.29"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.vorbis_rs]
version = "0.5"
[dev-dependencies.approx]
version = "0.5"
[dev-dependencies.tempfile]
version = "3"
[profile.profiling]
debug = 2
inherits = "release"
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1