mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-04-28 05:20:14 +02:00
wip: centralize dependencies
This commit is contained in:
parent
4229364363
commit
5b61c71503
39
Cargo.toml
39
Cargo.toml
|
@ -16,3 +16,42 @@ lto = true
|
||||||
[profile.coverage]
|
[profile.coverage]
|
||||||
inherits = "test"
|
inherits = "test"
|
||||||
lto = false
|
lto = false
|
||||||
|
|
||||||
|
[workspace.dependencies.tengri]
|
||||||
|
git = "https://codeberg.org/unspeaker/tengri"
|
||||||
|
rev = "d30eda33d1"
|
||||||
|
features = [ "tui", "dsl" ]
|
||||||
|
|
||||||
|
[workspace.dependencies]
|
||||||
|
tek = { path = "./app" }
|
||||||
|
tek_cli = { path = "./cli" }
|
||||||
|
tek_jack = { path = "./jack" }
|
||||||
|
tek_midi = { path = "./midi" }
|
||||||
|
tek_plugin = { path = "./plugin" }
|
||||||
|
tek_sampler = { path = "./sampler" }
|
||||||
|
tek_time = { path = "./time" }
|
||||||
|
|
||||||
|
atomic_float = { version = "1.0.0" }
|
||||||
|
backtrace = { version = "0.3.72" }
|
||||||
|
clap = { version = "4.5.4", features = [ "derive" ] }
|
||||||
|
gtk = { version = "0.18.1" }
|
||||||
|
jack = { git = "https://codeberg.org/unspeaker/rust-jack", ref = "a13c1c4" }
|
||||||
|
livi = { version = "0.7.4" }
|
||||||
|
midly = { version = "0.5" }
|
||||||
|
palette = { version = "0.7.6", features = [ "random" ] }
|
||||||
|
quanta = { version = "0.12.3" }
|
||||||
|
rand = { version = "0.8.5" }
|
||||||
|
symphonia = { version = "0.5.4", features = [ "all" ] }
|
||||||
|
toml = { version = "0.8.12" }
|
||||||
|
uuid = { version = "1.10.0", features = [ "v4" ] }
|
||||||
|
wavers = { version = "1.4.3" }
|
||||||
|
#once_cell = "1.19.0"
|
||||||
|
#no_deadlocks = "1.3.2"
|
||||||
|
#suil-rs = { path = "../suil" }
|
||||||
|
#vst = "0.4.0"
|
||||||
|
#vst3 = "0.1.0"
|
||||||
|
#winit = { version = "0.30.4", features = [ "x11" ] }
|
||||||
|
|
||||||
|
[workspace.dev-dependencies]
|
||||||
|
proptest = "^1"
|
||||||
|
proptest-derive = "^0.5.1"
|
||||||
|
|
|
@ -1,27 +1,27 @@
|
||||||
[package]
|
[package]
|
||||||
name = "tek"
|
name = "tek"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
version = "0.2.0"
|
version = "0.2.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tek_tui = { git = "https://codeberg.org/unspeaker/tengri", rev = "6cd85ef" }
|
tengri = { workspace = true }
|
||||||
|
|
||||||
tek_jack = { path = "../jack" }
|
tek_jack = { workspace = true }
|
||||||
tek_time = { path = "../time" }
|
tek_time = { workspace = true }
|
||||||
tek_midi = { path = "../midi" }
|
tek_midi = { workspace = true }
|
||||||
tek_sampler = { path = "../sampler" }
|
tek_sampler = { workspace = true }
|
||||||
tek_plugin = { path = "../plugin" }
|
tek_plugin = { workspace = true }
|
||||||
|
|
||||||
backtrace = "0.3.72"
|
backtrace = { workspace = true }
|
||||||
palette = { version = "0.7.6", features = [ "random" ] }
|
clap = { workspace = true }
|
||||||
rand = "0.8.5"
|
palette = { workspace = true }
|
||||||
toml = "0.8.12"
|
rand = { workspace = true }
|
||||||
clap = { optional = true, version = "4.5.4", features = [ "derive" ] }
|
toml = { workspace = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
proptest = "^1"
|
proptest = { workspace = true }
|
||||||
proptest-derive = "^0.5.1"
|
proptest-derive = { workspace = true }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["cli"]
|
default = ["cli"]
|
||||||
cli = ["clap"]
|
cli = ["clap"]
|
||||||
|
|
|
@ -4,8 +4,9 @@ edition = "2021"
|
||||||
version = "0.2.0"
|
version = "0.2.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tek = { path = "../app" }
|
tek = { workspace = true }
|
||||||
clap = { version = "4.5.4", features = [ "derive" ] }
|
|
||||||
|
clap = { workspace = true }
|
||||||
|
|
||||||
[[bin]]
|
[[bin]]
|
||||||
name = "tek"
|
name = "tek"
|
||||||
|
|
|
@ -4,4 +4,4 @@ edition = "2021"
|
||||||
version = "0.2.0"
|
version = "0.2.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
jack = { git = "https://codeberg.org/unspeaker/rust-jack", rev = "a13c1c4" }
|
jack = { workspace = true }
|
||||||
|
|
|
@ -4,42 +4,10 @@ edition = "2021"
|
||||||
version = "0.2.0"
|
version = "0.2.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tek_tui = { git = "https://codeberg.org/unspeaker/tengri", rev = "6cd85ef" }
|
tengri = { workspace = true }
|
||||||
|
|
||||||
tek_jack = { path = "../jack" }
|
tek_jack = { workspace = true }
|
||||||
tek_time = { path = "../time" }
|
tek_time = { workspace = true }
|
||||||
|
|
||||||
midly = "0.5"
|
midly = { workspace = true }
|
||||||
uuid = { version = "1.10.0", features = [ "v4" ] }
|
uuid = { workspace = true }
|
||||||
|
|
||||||
#[[bin]]
|
|
||||||
#name = "tek_arranger"
|
|
||||||
#path = "bin/cli_arranger.rs"
|
|
||||||
|
|
||||||
#[[bin]]
|
|
||||||
#name = "tek_sequencer"
|
|
||||||
#path = "bin/cli_sequencer.rs"
|
|
||||||
|
|
||||||
#[[bin]]
|
|
||||||
#name = "tek_groovebox"
|
|
||||||
#path = "bin/cli_groovebox.rs"
|
|
||||||
|
|
||||||
#[[bin]]
|
|
||||||
#name = "tek_clock"
|
|
||||||
#path = "bin/cli_clock.rs"
|
|
||||||
|
|
||||||
#[[bin]]
|
|
||||||
#name = "tek_sampler"
|
|
||||||
#path = "bin/cli_sampler.rs"
|
|
||||||
|
|
||||||
#[[bin]]
|
|
||||||
#name = "tek_mixer"
|
|
||||||
#path = "src/cli_mixer.rs"
|
|
||||||
|
|
||||||
#[[bin]]
|
|
||||||
#name = "tek_track"
|
|
||||||
#path = "src/cli_track.rs"
|
|
||||||
|
|
||||||
#[[bin]]
|
|
||||||
#name = "tek_plugin"
|
|
||||||
#path = "src/cli_plugin.rs"
|
|
||||||
|
|
|
@ -4,16 +4,8 @@ edition = "2021"
|
||||||
version = "0.2.0"
|
version = "0.2.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tek_tui = { git = "https://codeberg.org/unspeaker/tengri", rev = "6cd85ef" }
|
tengri = { workspace = true }
|
||||||
|
|
||||||
tek_jack = { path = "../jack" }
|
tek_jack = { workspace = true }
|
||||||
tek_time = { path = "../time" }
|
tek_time = { workspace = true }
|
||||||
tek_midi = { path = "../midi" }
|
tek_midi = { workspace = true }
|
||||||
|
|
||||||
livi = "0.7.4"
|
|
||||||
#once_cell = "1.19.0"
|
|
||||||
#no_deadlocks = "1.3.2"
|
|
||||||
#suil-rs = { path = "../suil" }
|
|
||||||
#vst = "0.4.0"
|
|
||||||
#vst3 = "0.1.0"
|
|
||||||
#winit = { version = "0.30.4", features = [ "x11" ] }
|
|
||||||
|
|
|
@ -4,11 +4,11 @@ edition = "2021"
|
||||||
version = "0.2.0"
|
version = "0.2.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tek_tui = { git = "https://codeberg.org/unspeaker/tengri", rev = "6cd85ef" }
|
tengri = { workspace = true }
|
||||||
|
|
||||||
tek_jack = { path = "../jack" }
|
tek_jack = { workspace = true }
|
||||||
tek_time = { path = "../time" }
|
tek_time = { workspace = true }
|
||||||
tek_midi = { path = "../midi" }
|
tek_midi = { workspace = true }
|
||||||
|
|
||||||
symphonia = { version = "0.5.4", features = [ "all" ] }
|
symphonia = { workspace = true }
|
||||||
wavers = "1.4.3"
|
wavers = { workspace = true }
|
||||||
|
|
|
@ -1,17 +1,9 @@
|
||||||
[package]
|
[package]
|
||||||
name = "tek_time"
|
name = "tek_time"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
version = "0.2.0"
|
version = "0.2.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tek_input = { git = "https://codeberg.org/unspeaker/tengri", rev = "6cd85ef" }
|
tengri = { workspace = true }
|
||||||
tek_edn = { git = "https://codeberg.org/unspeaker/tengri", rev = "6cd85ef" }
|
|
||||||
tek_tui = { git = "https://codeberg.org/unspeaker/tengri", rev = "6cd85ef" }
|
|
||||||
|
|
||||||
tek_jack = { path = "../jack" }
|
|
||||||
|
|
||||||
atomic_float = "1.0.0"
|
|
||||||
quanta = "0.12.3"
|
|
||||||
#jack = { path = "../rust-jack" }
|
|
||||||
#midly = "0.5"
|
|
||||||
|
|
||||||
|
tek_jack = { workspace = true }
|
||||||
|
|
Loading…
Reference in a new issue