wip: try to get a simplified parser going

This commit is contained in:
🪞👃🪞 2025-01-04 08:49:38 +01:00
parent fc82d6ff9b
commit 600d0b3aca
17 changed files with 676 additions and 133 deletions

View file

@ -5,11 +5,11 @@ version = "0.2.0"
[dependencies]
tek_layout = { path = "./layout" }
tek_edn = { optional = true, path = "./edn" }
atomic_float = "1.0.0"
backtrace = "0.3.72"
clap = { version = "4.5.4", features = [ "derive" ] }
clojure-reader = "0.3.0"
jack = { path = "./rust-jack" }
livi = "0.7.4"
midly = "0.5"
@ -27,6 +27,10 @@ wavers = "1.4.3"
#vst3 = "0.1.0"
#winit = { version = "0.30.4", features = [ "x11" ] }
[features]
default = ["edn"]
edn = ["tek_edn"]
[[bin]]
name = "tek_arranger"
path = "bin/cli_arranger.rs"