26 lines
775 B
TOML
26 lines
775 B
TOML
[package]
|
|
name = "interface"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.95"
|
|
cpal = "0.15.3"
|
|
pitch-detection = "0.3"
|
|
postcard = { version = "1.1.1", features = ["alloc", "use-std"] }
|
|
rust-music-theory = {git = "https://github.com/the-drunk-coder/rust-music-theory", rev = "a062d65"}
|
|
serde = { version = "1.0.217", features = ["derive"] }
|
|
tokio = { version = "1.43.0", features = ["full"] }
|
|
common = {path = "../common"}
|
|
heapless = "0.7.0"
|
|
|
|
eframe = { version = "0.30", features = ["persistence"] }
|
|
egui_extras = { version = "0.30", features = ["default", "image"] }
|
|
egui-toast = "0.16.0"
|
|
home = "0.5.11"
|
|
atomic_float = "1.1.0"
|
|
chrono = "0.4.40"
|
|
image = "0.25.5"
|
|
libloading = "0.8.6"
|
|
emath = "0.31.1"
|
|
dashmap = { version = "6.1.0", features = ["serde"] }
|