2016-10-09 17:46:53 +00:00
|
|
|
[package]
|
2023-03-17 16:03:49 +00:00
|
|
|
name = "ratatui"
|
2023-08-28 11:46:03 +00:00
|
|
|
version = "0.23.0" # crate version
|
2023-07-17 10:41:45 +00:00
|
|
|
authors = ["Florian Dehau <work@fdehau.com>", "The Ratatui Developers"]
|
2023-08-27 20:58:54 +00:00
|
|
|
description = "A library that's all about cooking up terminal user interfaces"
|
2023-03-17 16:03:49 +00:00
|
|
|
documentation = "https://docs.rs/ratatui/latest/ratatui/"
|
2016-11-28 08:52:51 +00:00
|
|
|
keywords = ["tui", "terminal", "dashboard"]
|
2023-07-22 10:34:11 +00:00
|
|
|
repository = "https://github.com/ratatui-org/ratatui"
|
2021-01-01 13:35:07 +00:00
|
|
|
readme = "README.md"
|
2016-11-08 09:29:42 +00:00
|
|
|
license = "MIT"
|
2023-06-11 20:27:35 +00:00
|
|
|
exclude = [
|
|
|
|
"assets/*",
|
|
|
|
".github",
|
|
|
|
"Makefile.toml",
|
|
|
|
"CONTRIBUTING.md",
|
|
|
|
"*.log",
|
|
|
|
"tags",
|
|
|
|
]
|
2018-09-01 12:05:33 +00:00
|
|
|
autoexamples = true
|
2022-01-22 12:07:35 +00:00
|
|
|
edition = "2021"
|
2023-08-04 23:23:22 +00:00
|
|
|
rust-version = "1.67.0"
|
2016-10-09 17:46:53 +00:00
|
|
|
|
2017-05-21 12:07:44 +00:00
|
|
|
[badges]
|
|
|
|
|
2016-10-09 17:46:53 +00:00
|
|
|
[dependencies]
|
2023-08-27 09:00:35 +00:00
|
|
|
#! The crate provides a set of optional features that can be enabled in your `cargo.toml` file.
|
|
|
|
#!
|
|
|
|
#! Generally an application will only use one backend, so you should only enable one of the following features:
|
|
|
|
## enables the [`CrosstermBackend`] backend and adds a dependency on the [Crossterm crate].
|
|
|
|
crossterm = { version = "0.27", optional = true }
|
|
|
|
## enables the [`TermionBackend`] backend and adds a dependency on the [Termion crate].
|
|
|
|
termion = { version = "2.0", optional = true }
|
|
|
|
## enables the [`TermwizBackend`] backend and adds a dependency on the [Termwiz crate].
|
|
|
|
termwiz = { version = "0.20.0", optional = true }
|
|
|
|
|
|
|
|
serde = { version = "1", optional = true, features = ["derive"] }
|
2023-06-01 13:37:59 +00:00
|
|
|
bitflags = "2.3"
|
2018-09-04 20:00:45 +00:00
|
|
|
cassowary = "0.3"
|
2023-06-02 14:03:34 +00:00
|
|
|
indoc = "2.0"
|
2023-08-20 17:40:04 +00:00
|
|
|
itertools = "0.11"
|
2023-07-26 07:05:12 +00:00
|
|
|
paste = "1.0.2"
|
2023-08-23 04:21:13 +00:00
|
|
|
strum = { version = "0.25", features = ["derive"] }
|
2023-06-11 20:27:35 +00:00
|
|
|
time = { version = "0.3.11", optional = true, features = ["local-offset"] }
|
2023-06-02 14:03:34 +00:00
|
|
|
unicode-segmentation = "1.10"
|
|
|
|
unicode-width = "0.1"
|
2023-08-27 09:00:35 +00:00
|
|
|
document-features = { version = "0.2.7", optional = true }
|
2023-09-14 22:20:38 +00:00
|
|
|
lru = "0.11.1"
|
2019-05-15 17:33:11 +00:00
|
|
|
|
2016-10-12 17:43:39 +00:00
|
|
|
[dev-dependencies]
|
2023-06-01 13:22:18 +00:00
|
|
|
anyhow = "1.0.71"
|
2023-09-21 08:47:23 +00:00
|
|
|
argh = "0.1.12"
|
2023-09-10 00:30:41 +00:00
|
|
|
better-panic = "0.3.0"
|
2023-08-11 01:36:12 +00:00
|
|
|
cargo-husky = { version = "1.5.0", default-features = false, features = [
|
|
|
|
"user-hooks",
|
|
|
|
] }
|
2023-09-21 08:47:23 +00:00
|
|
|
criterion = { version = "0.5.1", features = ["html_reports"] }
|
2023-06-16 13:09:41 +00:00
|
|
|
fakeit = "1.1"
|
2023-09-21 08:47:23 +00:00
|
|
|
rand = "0.8.5"
|
|
|
|
palette = "0.7.3"
|
2023-08-17 07:44:33 +00:00
|
|
|
pretty_assertions = "1.4.0"
|
2023-06-16 13:09:41 +00:00
|
|
|
|
2023-08-27 09:00:35 +00:00
|
|
|
[features]
|
|
|
|
default = ["crossterm"]
|
|
|
|
#! The following optional features are available for all backends:
|
|
|
|
## enables serialization and deserialization of style and color types using the [Serde crate].
|
|
|
|
## This is useful if you want to save themes to a file.
|
|
|
|
serde = ["dep:serde", "bitflags/serde"]
|
|
|
|
|
|
|
|
## enables the [`border!`] macro.
|
|
|
|
macros = []
|
|
|
|
|
|
|
|
## enables all widgets.
|
|
|
|
all-widgets = ["widget-calendar"]
|
|
|
|
|
|
|
|
#! Widgets that add dependencies are gated behind feature flags to prevent unused transitive
|
|
|
|
#! dependencies. The available features are:
|
|
|
|
## enables the [`calendar`] widget module and adds a dependency on the [Time crate].
|
|
|
|
widget-calendar = ["dep:time"]
|
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
# see https://doc.rust-lang.org/nightly/rustdoc/scraped-examples.html
|
|
|
|
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
2023-09-02 02:57:48 +00:00
|
|
|
[[bench]]
|
|
|
|
name = "barchart"
|
|
|
|
harness = false
|
|
|
|
|
2023-08-11 02:17:32 +00:00
|
|
|
[[bench]]
|
|
|
|
name = "block"
|
|
|
|
harness = false
|
|
|
|
|
2023-06-16 13:09:41 +00:00
|
|
|
[[bench]]
|
2023-09-02 02:57:48 +00:00
|
|
|
name = "list"
|
2023-06-16 13:09:41 +00:00
|
|
|
harness = false
|
2017-05-25 13:17:08 +00:00
|
|
|
|
2023-08-05 14:47:06 +00:00
|
|
|
[[bench]]
|
2023-09-02 02:57:48 +00:00
|
|
|
name = "paragraph"
|
2023-08-05 14:47:06 +00:00
|
|
|
harness = false
|
|
|
|
|
2023-08-11 02:11:41 +00:00
|
|
|
[[bench]]
|
2023-09-02 02:57:48 +00:00
|
|
|
name = "sparkline"
|
2023-08-11 02:11:41 +00:00
|
|
|
harness = false
|
|
|
|
|
2023-08-05 14:47:06 +00:00
|
|
|
|
2017-05-25 13:17:08 +00:00
|
|
|
[[example]]
|
2021-11-11 14:56:37 +00:00
|
|
|
name = "barchart"
|
|
|
|
required-features = ["crossterm"]
|
2023-05-24 19:58:04 +00:00
|
|
|
doc-scrape-examples = true
|
2021-11-11 14:56:37 +00:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "block"
|
|
|
|
required-features = ["crossterm"]
|
2023-05-24 19:58:04 +00:00
|
|
|
doc-scrape-examples = true
|
2021-11-11 14:56:37 +00:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "canvas"
|
|
|
|
required-features = ["crossterm"]
|
2023-05-24 19:58:04 +00:00
|
|
|
doc-scrape-examples = true
|
2021-11-11 14:56:37 +00:00
|
|
|
|
2023-04-26 21:02:35 +00:00
|
|
|
[[example]]
|
|
|
|
name = "calendar"
|
|
|
|
required-features = ["crossterm", "widget-calendar"]
|
2023-05-24 19:58:04 +00:00
|
|
|
doc-scrape-examples = true
|
2023-04-26 21:02:35 +00:00
|
|
|
|
2021-11-11 14:56:37 +00:00
|
|
|
[[example]]
|
|
|
|
name = "chart"
|
|
|
|
required-features = ["crossterm"]
|
2023-05-24 19:58:04 +00:00
|
|
|
doc-scrape-examples = true
|
2021-11-11 14:56:37 +00:00
|
|
|
|
2023-08-11 01:36:12 +00:00
|
|
|
[[example]]
|
|
|
|
name = "colors"
|
|
|
|
required-features = ["crossterm"]
|
|
|
|
# this example is a bit verbose, so we don't want to include it in the docs
|
|
|
|
doc-scrape-examples = false
|
|
|
|
|
2023-09-10 00:30:41 +00:00
|
|
|
[[example]]
|
|
|
|
name = "colors_rgb"
|
|
|
|
required-features = ["crossterm"]
|
|
|
|
doc-scrape-examples = true
|
|
|
|
|
2021-11-11 14:56:37 +00:00
|
|
|
[[example]]
|
|
|
|
name = "custom_widget"
|
|
|
|
required-features = ["crossterm"]
|
2023-05-24 19:58:04 +00:00
|
|
|
doc-scrape-examples = true
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "demo"
|
|
|
|
# this runs for all of the terminal backends, so it can't be built using --all-features or scraped
|
|
|
|
doc-scrape-examples = false
|
2021-11-11 14:56:37 +00:00
|
|
|
|
2023-09-21 08:47:23 +00:00
|
|
|
[[example]]
|
|
|
|
name = "demo2"
|
|
|
|
required-features = ["crossterm", "widget-calendar"]
|
|
|
|
doc-scrape-examples = true
|
|
|
|
|
2021-11-11 14:56:37 +00:00
|
|
|
[[example]]
|
|
|
|
name = "gauge"
|
|
|
|
required-features = ["crossterm"]
|
2023-05-24 19:58:04 +00:00
|
|
|
doc-scrape-examples = true
|
2021-11-11 14:56:37 +00:00
|
|
|
|
2023-06-01 13:22:18 +00:00
|
|
|
[[example]]
|
|
|
|
name = "hello_world"
|
|
|
|
required-features = ["crossterm"]
|
|
|
|
doc-scrape-examples = true
|
|
|
|
|
2021-11-11 14:56:37 +00:00
|
|
|
[[example]]
|
|
|
|
name = "layout"
|
|
|
|
required-features = ["crossterm"]
|
2023-05-24 19:58:04 +00:00
|
|
|
doc-scrape-examples = true
|
2021-11-11 14:56:37 +00:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "list"
|
|
|
|
required-features = ["crossterm"]
|
2023-05-24 19:58:04 +00:00
|
|
|
doc-scrape-examples = true
|
2021-11-11 14:56:37 +00:00
|
|
|
|
2023-08-11 01:36:12 +00:00
|
|
|
[[example]]
|
|
|
|
name = "modifiers"
|
|
|
|
required-features = ["crossterm"]
|
|
|
|
# this example is a bit verbose, so we don't want to include it in the docs
|
|
|
|
doc-scrape-examples = false
|
|
|
|
|
2022-04-24 14:49:57 +00:00
|
|
|
[[example]]
|
|
|
|
name = "panic"
|
|
|
|
required-features = ["crossterm"]
|
2023-05-24 19:58:04 +00:00
|
|
|
doc-scrape-examples = true
|
2022-04-24 14:49:57 +00:00
|
|
|
|
2021-11-11 14:56:37 +00:00
|
|
|
[[example]]
|
|
|
|
name = "paragraph"
|
|
|
|
required-features = ["crossterm"]
|
2023-05-24 19:58:04 +00:00
|
|
|
doc-scrape-examples = true
|
2021-11-11 14:56:37 +00:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "popup"
|
|
|
|
required-features = ["crossterm"]
|
2023-05-24 19:58:04 +00:00
|
|
|
doc-scrape-examples = true
|
2021-11-11 14:56:37 +00:00
|
|
|
|
2023-06-17 19:25:43 +00:00
|
|
|
[[example]]
|
|
|
|
name = "scrollbar"
|
|
|
|
required-features = ["crossterm"]
|
|
|
|
doc-scrape-examples = true
|
|
|
|
|
2021-11-11 14:56:37 +00:00
|
|
|
[[example]]
|
|
|
|
name = "sparkline"
|
|
|
|
required-features = ["crossterm"]
|
2023-05-24 19:58:04 +00:00
|
|
|
doc-scrape-examples = true
|
2021-11-11 14:56:37 +00:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "table"
|
|
|
|
required-features = ["crossterm"]
|
2023-05-24 19:58:04 +00:00
|
|
|
doc-scrape-examples = true
|
2021-11-11 14:56:37 +00:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "tabs"
|
|
|
|
required-features = ["crossterm"]
|
2023-05-24 19:58:04 +00:00
|
|
|
doc-scrape-examples = true
|
2021-11-11 14:56:37 +00:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "user_input"
|
|
|
|
required-features = ["crossterm"]
|
2023-05-24 19:58:04 +00:00
|
|
|
doc-scrape-examples = true
|
2023-04-17 12:23:50 +00:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "inline"
|
|
|
|
required-features = ["crossterm"]
|
2023-05-24 19:58:04 +00:00
|
|
|
doc-scrape-examples = true
|