completely redesigned core of the tui, not migrated everything yet, but very close

This commit is contained in:
Priec
2026-01-03 09:06:35 +01:00
parent accfb4f346
commit ec16930569
4 changed files with 25 additions and 4 deletions

24
Cargo.lock generated
View File

@@ -601,6 +601,8 @@ dependencies = [
"rstest", "rstest",
"serde", "serde",
"serde_json", "serde_json",
"strum 0.27.2",
"strum_macros 0.27.2",
"time", "time",
"tokio", "tokio",
"tokio-test", "tokio-test",
@@ -2749,7 +2751,7 @@ dependencies = [
"itertools 0.13.0", "itertools 0.13.0",
"lru", "lru",
"paste", "paste",
"strum", "strum 0.26.3",
"unicode-segmentation", "unicode-segmentation",
"unicode-truncate", "unicode-truncate",
"unicode-width 0.2.0", "unicode-width 0.2.0",
@@ -3736,9 +3738,15 @@ version = "0.26.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06" checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
dependencies = [ dependencies = [
"strum_macros", "strum_macros 0.26.4",
] ]
[[package]]
name = "strum"
version = "0.27.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
[[package]] [[package]]
name = "strum_macros" name = "strum_macros"
version = "0.26.4" version = "0.26.4"
@@ -3752,6 +3760,18 @@ dependencies = [
"syn 2.0.104", "syn 2.0.104",
] ]
[[package]]
name = "strum_macros"
version = "0.27.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
dependencies = [
"heck",
"proc-macro2",
"quote",
"syn 2.0.104",
]
[[package]] [[package]]
name = "subtle" name = "subtle"
version = "2.6.1" version = "2.6.1"

2
canvas

Submodule canvas updated: 6f1cda36d8...7ddd26f0e7

2
client

Submodule client updated: aa555822ba...3dc9c7262f

View File

@@ -14,6 +14,7 @@
{ {
devShells.default = pkgs.mkShell { devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [ buildInputs = with pkgs; [
mermaid-cli
# Rust toolchain # Rust toolchain
rustc rustc
cargo cargo