mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-06 11:46:41 +01:00
wip: centralize dependencies
This commit is contained in:
parent
4229364363
commit
5b61c71503
8 changed files with 76 additions and 84 deletions
|
|
@ -1,27 +1,27 @@
|
|||
[package]
|
||||
name = "tek"
|
||||
name = "tek"
|
||||
edition = "2021"
|
||||
version = "0.2.0"
|
||||
|
||||
[dependencies]
|
||||
tek_tui = { git = "https://codeberg.org/unspeaker/tengri", rev = "6cd85ef" }
|
||||
tengri = { workspace = true }
|
||||
|
||||
tek_jack = { path = "../jack" }
|
||||
tek_time = { path = "../time" }
|
||||
tek_midi = { path = "../midi" }
|
||||
tek_sampler = { path = "../sampler" }
|
||||
tek_plugin = { path = "../plugin" }
|
||||
tek_jack = { workspace = true }
|
||||
tek_time = { workspace = true }
|
||||
tek_midi = { workspace = true }
|
||||
tek_sampler = { workspace = true }
|
||||
tek_plugin = { workspace = true }
|
||||
|
||||
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" ] }
|
||||
backtrace = { workspace = true }
|
||||
clap = { workspace = true }
|
||||
palette = { workspace = true }
|
||||
rand = { workspace = true }
|
||||
toml = { workspace = true }
|
||||
|
||||
[dev-dependencies]
|
||||
proptest = "^1"
|
||||
proptest-derive = "^0.5.1"
|
||||
proptest = { workspace = true }
|
||||
proptest-derive = { workspace = true }
|
||||
|
||||
[features]
|
||||
default = ["cli"]
|
||||
cli = ["clap"]
|
||||
cli = ["clap"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue