Files
Cagire/Cargo.toml
2026-01-25 22:17:08 +01:00

46 lines
901 B
TOML

[workspace]
members = ["crates/forth", "crates/project", "crates/ratatui"]
[package]
name = "cagire"
version = "0.1.0"
edition = "2021"
[lib]
name = "cagire"
path = "src/lib.rs"
[[bin]]
name = "cagire"
path = "src/main.rs"
[dependencies]
cagire-forth = { path = "crates/forth" }
cagire-project = { path = "crates/project" }
cagire-ratatui = { path = "crates/ratatui" }
doux = { git = "https://github.com/Bubobubobubobubo/doux", features = ["native"] }
rusty_link = "0.4"
ratatui = "0.29"
crossterm = "0.28"
cpal = "0.15"
clap = { version = "4", features = ["derive"] }
rand = "0.8"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tui-big-text = "0.7"
arboard = "3"
minimad = "0.13"
crossbeam-channel = "0.5"
confy = "2"
rustfft = "6"
thread-priority = "1"
ringbuf = "0.4"
arc-swap = "1"
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"
strip = true