draw clips; begin removing format! allocs
Some checks failed
/ build (push) Has been cancelled

This commit is contained in:
i do not exist 2026-08-13 07:44:10 +03:00
parent d9e17cd348
commit e50c4a5eef
7 changed files with 479 additions and 146 deletions

View file

@ -10,10 +10,6 @@ path = "src/tek.rs"
name = "tek"
path = "src/tek.rs"
[target.'cfg(target_os = "linux")']
linker = "clang"
rustflags = ["-Clink-arg=-fuse-ld=mold", "-Clink-arg=-Wl,--no-rosegment"]
[dependencies]
tek_proc = { path = "./proc" }
tengri = { path = "./tengri", features = [ "term", "lang" ] }
@ -39,6 +35,7 @@ uuid = { optional = true, version = "1.10.0", features = [ "v4" ] }
gtk = { optional = true, version = "0.18.1" }
notify-debouncer-full = "0.7.0"
hotpath = "0.23"
#once_cell = "1.19.0"
#no_deadlocks = "1.3.2"
@ -54,6 +51,10 @@ proptest-derive = { version = "^0.5.1" }
[features]
default = ["cli", "arranger", "sampler"]
hotpath = ["hotpath/hotpath"]
hotpath-cpu = ["hotpath/hotpath-cpu"]
hotpath-alloc = ["hotpath/hotpath-alloc"]
arranger = ["port", "editor", "sequencer", "track", "scene", "clip", "select"]
browse = []
clap = []
@ -79,7 +80,12 @@ vst3 = []
[profile.release]
lto = true
debug = "line-tables-only"
[profile.coverage]
inherits = "test"
lto = false
[target.'cfg(target_os = "linux")']
linker = "clang"
rustflags = ["-Clink-arg=-fuse-ld=mold,-Clink-arg=-Wl,--no-rosegment,-Cforceframe-pointers=yes" ]