-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (35 loc) · 960 Bytes
/
Copy pathCargo.toml
File metadata and controls
41 lines (35 loc) · 960 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
39
40
41
[package]
name = "tca-ratatui"
version.workspace = true
edition.workspace = true
license.workspace = true
authors.workspace = true
repository.workspace = true
homepage.workspace = true
documentation = "https://docs.rs/tca-ratatui"
description = "TCA theme support for Ratatui terminal UI framework"
keywords = ["tui", "theme", "ratatui", "terminal", "colors"]
categories = ["command-line-interface", "config"]
readme = "README.md"
exclude = [".gitignore", "codebook.toml"]
[dependencies]
tca-types = { workspace = true, optional = true }
serde = { workspace = true }
anyhow = { workspace = true }
ratatui = { workspace = true }
heck.workspace = true
[dev-dependencies]
crossterm = { workspace = true }
[features]
default = ["fs", "widgets"]
fs = ["dep:tca-types"]
widgets = []
[[example]]
name = "basic"
required-features = ["fs"]
[[example]]
name = "styleset"
required-features = ["fs"]
[[example]]
name = "picker"
required-features = ["fs", "widgets"]