forked from sophacles/extra-widgets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
26 lines (22 loc) · 808 Bytes
/
Cargo.toml
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
[package]
name = "extra-widgets"
version = "0.1.0"
authors = ["Erich Heine <[email protected]>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
#tui = "0.18.0"
ratatui = "0.20.0"
bounded-vec-deque = { version = "0.1.1", optional = true }
lazy_static = { version = "1.4.0", optional = true }
time = { version = "0.3.11", features = ["local-offset", "macros"] , optional = true }
serde = { version ="1.0", optional = true }
serde_derive = { version = "1.0", optional = true }
[dev-dependencies]
crossterm = "0.23.2"
[features]
default = ["styled_list", "calendar", "text_macros"]
styled_list = ["dep:bounded-vec-deque", "dep:lazy_static"]
serde = ["dep:serde_derive", "dep:serde"]
calendar = ["dep:time"]
text_macros = []