mirror of
https://codeberg.org/unspeaker/tengri.git
synced 2025-12-06 11:46:42 +01:00
52 lines
1.5 KiB
TOML
52 lines
1.5 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.14.0"
|
|
edition = "2024"
|
|
|
|
[workspace.dependencies]
|
|
tengri = { path = "./tengri" }
|
|
tengri_core = { path = "./core" }
|
|
tengri_input = { path = "./input" }
|
|
tengri_output = { path = "./output" }
|
|
tengri_tui = { path = "./tui" }
|
|
tengri_dsl = { path = "./dsl" }
|
|
tengri_proc = { path = "./proc" }
|
|
|
|
anyhow = { version = "1.0" }
|
|
atomic_float = { version = "1" }
|
|
better-panic = { version = "0.3.0" }
|
|
bumpalo = { version = "3.19.0" }
|
|
const_panic = { version = "0.2.12", features = [ "derive" ] }
|
|
crossterm = { version = "0.29.0" }
|
|
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" }
|