gui of canvas is from the canvas crate now

This commit is contained in:
Priec
2025-07-29 19:54:29 +02:00
parent a1fa42e204
commit aec5f80879
13 changed files with 370 additions and 53 deletions

View File

@@ -11,7 +11,7 @@ categories.workspace = true
[dependencies]
common = { path = "../common" }
ratatui = { workspace = true }
ratatui = { workspace = true, optional = true }
crossterm = { workspace = true }
anyhow = { workspace = true }
tokio = { workspace = true }
@@ -21,6 +21,10 @@ serde = { workspace = true }
[dev-dependencies]
tokio-test = "0.4.4"
[features]
default = []
gui = ["ratatui"]
[[example]]
name = "simple_login"
path = "examples/simple_login.rs"