mirror of
https://github.com/ratatui/ratatui.git
synced 2025-09-27 13:01:13 +00:00

The goal of this is to reduce dependabot updates to generally only Cargo.lock updates - Use "0.x" or "x" as the version generally. - Specify versions only in the workspace manifest - Bump versions to latest semver compatible (and update rstest / lru / criterion deps)
23 lines
571 B
TOML
23 lines
571 B
TOML
[package]
|
|
name = "demo"
|
|
publish = false
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[features]
|
|
default = ["crossterm"]
|
|
crossterm = ["ratatui/crossterm", "dep:crossterm"]
|
|
termion = ["ratatui/termion", "dep:termion"]
|
|
termwiz = ["ratatui/termwiz", "dep:termwiz"]
|
|
|
|
[dependencies]
|
|
clap.workspace = true
|
|
crossterm = { workspace = true, optional = true }
|
|
rand.workspace = true
|
|
ratatui.workspace = true
|
|
termwiz = { workspace = true, optional = true }
|
|
|
|
[target.'cfg(not(windows))'.dependencies]
|
|
termion = { workspace = true, optional = true }
|