src -> app; move core libs to tengri

This commit is contained in:
🪞👃🪞 2025-03-04 00:51:35 +02:00
parent 8465d64807
commit bcc3f5809e
113 changed files with 132 additions and 5729 deletions

27
app/Cargo.toml Normal file
View file

@ -0,0 +1,27 @@
[package]
name = "tek"
edition = "2021"
version = "0.2.0"
[dependencies]
tek_tui = { git = "https://codeberg.org/unspeaker/tengri", ref = "5352a9d" }
tek_jack = { path = "../jack" }
tek_time = { path = "../time" }
tek_midi = { path = "../midi" }
tek_sampler = { path = "../sampler" }
tek_plugin = { path = "../plugin" }
backtrace = "0.3.72"
palette = { version = "0.7.6", features = [ "random" ] }
rand = "0.8.5"
toml = "0.8.12"
clap = { optional = true, version = "4.5.4", features = [ "derive" ] }
[dev-dependencies]
proptest = "^1"
proptest-derive = "^0.5.1"
[features]
default = ["cli"]
cli = ["clap"]