tengri/Cargo.toml
unspeaker e72225f83c
Some checks failed
/ build (push) Has been cancelled
wip: fix dsl
2025-07-16 00:10:03 +03:00

42 lines
1.2 KiB
TOML

[profile.release]
lto = true
[profile.coverage]
inherits = "test"
lto = false
[workspace]
resolver = "2"
members = [
"./tengri",
"./core",
"./input",
"./output",
"./tui",
"./dsl",
"./proc",
]
[workspace.package]
version = "0.13.0"
edition = "2024"
[workspace.dependencies]
atomic_float = { version = "1" }
better-panic = { version = "0.3.0" }
const_panic = { version = "0.2.12", features = [ "derive" ] }
crossterm = { version = "0.28.1" }
heck = { version = "0.5" }
itertools = { version = "0.14.0" }
konst = { version = "0.3.16", features = [ "rust_1_83" ] }
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"] }
thiserror = { version = "2.0" }
unicode-width = { version = "0.2" }