mirror of
https://codeberg.org/unspeaker/tengri.git
synced 2025-12-06 11:46:42 +01:00
add tengri_core; fix errors and warnings; unify deps
This commit is contained in:
parent
cb8fd26922
commit
8dda576c9d
18 changed files with 180 additions and 152 deletions
36
Cargo.toml
36
Cargo.toml
|
|
@ -1,11 +1,15 @@
|
|||
[workspace.package]
|
||||
version = "0.13.0"
|
||||
edition = "2024"
|
||||
[profile.release]
|
||||
lto = true
|
||||
|
||||
[profile.coverage]
|
||||
inherits = "test"
|
||||
lto = false
|
||||
|
||||
[workspace]
|
||||
resolver = "2"
|
||||
members = [
|
||||
"./tengri",
|
||||
"./core",
|
||||
"./input",
|
||||
"./output",
|
||||
"./tui",
|
||||
|
|
@ -13,9 +17,25 @@ members = [
|
|||
"./proc",
|
||||
]
|
||||
|
||||
[profile.release]
|
||||
lto = true
|
||||
[workspace.package]
|
||||
version = "0.13.0"
|
||||
edition = "2024"
|
||||
|
||||
[profile.coverage]
|
||||
inherits = "test"
|
||||
lto = false
|
||||
[workspace.dependencies]
|
||||
atomic_float = { version = "1" }
|
||||
better-panic = { version = "0.3.0" }
|
||||
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" }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue