-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (32 loc) · 992 Bytes
/
Cargo.toml
File metadata and controls
39 lines (32 loc) · 992 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "turbo-tui"
version = "0.2.3"
edition = "2021"
authors = ["Robby Beyer <robby@four-bytes.de>"]
license = "MIT"
repository = "https://github.com/four-bytes/turbo-tui"
homepage = "https://github.com/four-bytes/turbo-tui"
description = "Borland Turbo Vision windowing patterns for Ratatui"
keywords = ["tui", "terminal", "ui", "ratatui", "windowing"]
categories = ["command-line-interface", "gui"]
readme = "README.md"
[features]
default = ["json-themes"]
json-themes = ["dep:serde", "dep:serde_json"]
[dependencies]
ratatui = "0.29"
crossterm = "0.28"
serde = { version = "1", features = ["derive"], optional = true }
serde_json = { version = "1", optional = true }
[dev-dependencies]
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
module_name_repetitions = "allow"
must_use_candidate = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
[[example]]
name = "gen_themes"
required-features = ["json-themes"]