mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-06 11:46:41 +01:00
22 lines
473 B
TOML
22 lines
473 B
TOML
[package]
|
|
name = "tek_engine"
|
|
edition = { workspace = true }
|
|
version = { workspace = true }
|
|
|
|
[lib]
|
|
path = "engine.rs"
|
|
|
|
[target.'cfg(target_os = "linux")']
|
|
rustflags = ["-C", "link-arg=-fuse-ld=mold"]
|
|
|
|
[dependencies]
|
|
atomic_float = { workspace = true }
|
|
jack = { workspace = true }
|
|
midly = { workspace = true }
|
|
tengri = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
proptest = { workspace = true }
|
|
proptest-derive = { workspace = true }
|
|
|
|
[features]
|