2024-10-31 14:59:17 -07:00
|
|
|
[workspace]
|
|
|
|
resolver = "2"
|
2024-11-05 22:10:49 -08:00
|
|
|
members = ["ratatui", "ratatui-core", "xtask"]
|
|
|
|
default-members = ["ratatui", "ratatui-core"]
|
2024-10-31 14:59:17 -07:00
|
|
|
|
|
|
|
[workspace.package]
|
2023-07-17 12:41:45 +02:00
|
|
|
authors = ["Florian Dehau <work@fdehau.com>", "The Ratatui Developers"]
|
2023-03-17 18:03:49 +02:00
|
|
|
documentation = "https://docs.rs/ratatui/latest/ratatui/"
|
2024-08-21 11:35:08 -07:00
|
|
|
repository = "https://github.com/ratatui/ratatui"
|
2024-05-02 02:47:10 -07:00
|
|
|
homepage = "https://ratatui.rs"
|
2016-11-28 09:52:51 +01:00
|
|
|
keywords = ["tui", "terminal", "dashboard"]
|
2024-04-19 21:55:12 +02:00
|
|
|
categories = ["command-line-interface"]
|
2021-01-01 14:35:07 +01:00
|
|
|
readme = "README.md"
|
2016-11-08 10:29:42 +01:00
|
|
|
license = "MIT"
|
2023-06-11 22:27:35 +02:00
|
|
|
exclude = [
|
|
|
|
"assets/*",
|
|
|
|
".github",
|
|
|
|
"Makefile.toml",
|
|
|
|
"CONTRIBUTING.md",
|
|
|
|
"*.log",
|
|
|
|
"tags",
|
|
|
|
]
|
2022-01-22 13:07:35 +01:00
|
|
|
edition = "2021"
|
2024-03-02 13:13:17 +01:00
|
|
|
rust-version = "1.74.0"
|
2016-10-09 19:46:53 +02:00
|
|
|
|
2024-11-05 22:10:49 -08:00
|
|
|
[workspace.dependencies]
|
|
|
|
bitflags = "2.6.0"
|
|
|
|
indoc = "2.0.5"
|
|
|
|
instability = "0.3.1"
|
|
|
|
itertools = "0.13.0"
|
|
|
|
pretty_assertions = "1.4.1"
|
|
|
|
ratatui-core = { path = "ratatui-core" }
|
|
|
|
rstest = "0.23.0"
|
|
|
|
serde = { version = "1.0.214", features = ["derive"] }
|
|
|
|
strum = { version = "0.26.3", features = ["derive"] }
|
|
|
|
unicode-segmentation = "1.12.0"
|
|
|
|
# See <https://github.com/ratatui/ratatui/issues/1271> for information about why we pin unicode-width
|
|
|
|
unicode-width = "=0.2.0"
|
|
|
|
|
2024-05-22 08:12:31 +02:00
|
|
|
# Improve benchmark consistency
|
|
|
|
[profile.bench]
|
|
|
|
codegen-units = 1
|
|
|
|
lto = true
|