mirror of
https://github.com/ratatui/ratatui.git
synced 2025-09-26 20:40:44 +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)
20 lines
453 B
TOML
20 lines
453 B
TOML
[package]
|
|
name = "demo2"
|
|
publish = false
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
color-eyre.workspace = true
|
|
crossterm.workspace = true
|
|
indoc.workspace = true
|
|
itertools.workspace = true
|
|
palette.workspace = true
|
|
rand.workspace = true
|
|
rand_chacha.workspace = true
|
|
ratatui = { workspace = true, features = ["all-widgets"] }
|
|
strum.workspace = true
|
|
time.workspace = true
|
|
unicode-width.workspace = true
|