tengri/Cargo.toml
AAAAAAAAAAAAAAAAAAAAAAAAAAAA 1344967f33 refactor: extract dizzle
2026-01-17 03:43:27 +02:00

46 lines
1.2 KiB
TOML

[profile.release]
lto = true
[profile.coverage]
inherits = "test"
lto = false
[workspace]
resolver = "2"
members = [
"./tengri",
"./input",
"./output",
"./tui",
"./proc",
]
[workspace.package]
version = "0.14.0"
edition = "2024"
[workspace.dependencies]
dizzle = { path = "../dizzle" }
tengri = { path = "./tengri" }
tengri_input = { path = "./input" }
tengri_output = { path = "./output" }
tengri_tui = { path = "./tui" }
tengri_proc = { path = "./proc" }
anyhow = { version = "1.0" }
atomic_float = { version = "1" }
better-panic = { version = "0.3.0" }
bumpalo = { version = "3.19.0" }
crossterm = { version = "0.29.0" }
heck = { version = "0.5" }
palette = { version = "0.7.6", features = [ "random" ] }
proc-macro2 = { version = "1", features = ["span-locations"] }
proptest = { version = "^1" }
proptest-derive = { version = "^0.5.1" }
quanta = { version = "0.12.3" }
quote = { version = "1" }
rand = { version = "0.8.5" }
ratatui = { version = "0.29.0", features = [ "unstable-widget-ref", "underline-color" ] }
syn = { version = "2", features = ["full", "extra-traits"] }
unicode-width = { version = "0.2" }