Skip to content

Commit c30b204

Browse files
committed
Make ratatui dependency optional
1 parent 0eed6e7 commit c30b204

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

Cargo.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tui-input"
3-
version = "0.12.0"
3+
version = "0.12.1"
44
edition = "2021"
55
authors = ["Arijit Basu <hi@arijitbasu.in>"]
66
description = "TUI input library supporting multiple backends"
@@ -22,7 +22,9 @@ unicode-width = "0.2.0"
2222
serde = { version = "1.0.218", optional = true, features = ["derive"] }
2323
crossterm = { version = "0.29.0", optional = true }
2424
termion = { version = "4.0.4", optional = true }
25-
ratatui = { version = "0.30.0-alpha.2", features = ["crossterm"] }
25+
ratatui = { version = "0.30.0-alpha.2", optional = true, features = [
26+
"crossterm",
27+
] }
2628

2729
[dev-dependencies]
2830

0 commit comments

Comments
 (0)