-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (34 loc) · 1.06 KB
/
Cargo.toml
File metadata and controls
38 lines (34 loc) · 1.06 KB
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 = "ratatui-which-key"
edition = "2024"
version = "0.12.0"
description = "A which-key popup widget for ratatui applications"
license = "LGPL-3.0-or-later"
repository = "https://github.com/jayson-lennon/ratatui-which-key"
keywords = ["ratatui", "input", "tui", "terminal"]
categories = ["command-line-interface"]
exclude = ["/media", "AGENTS.md", "justfile", "release.toml"]
readme = "README.md"
[features]
default = ["crossterm"]
crossterm = ["dep:crossterm"]
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
collapsible_if = "allow"
default_constructed_unit_structs = "allow"
doc_markdown = "allow"
enum_glob_use = "allow"
match_wildcard_for_single_variants = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
needless_raw_string_hashes = "allow"
single_match = "allow"
single_match_else = "allow"
wildcard_imports = "allow"
[dependencies]
ratatui = "0.30.0"
tracing = "0.1"
unicode-segmentation = "1"
crossterm = { version = "0.29", optional = true }
[dev-dependencies]
derive_more = { version = "2", features = ["debug", "display"] }