mirror of
https://github.com/ratatui/ratatui.git
synced 2025-09-28 05:21:23 +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)
18 lines
369 B
TOML
18 lines
369 B
TOML
[package]
|
|
name = "mouse-drawing"
|
|
publish = false
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
color-eyre.workspace = true
|
|
crossterm.workspace = true
|
|
## a collection of line drawing algorithms (e.g. Bresenham's line algorithm)
|
|
line_drawing = "1"
|
|
rand.workspace = true
|
|
ratatui.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|