18 lines
366 B
TOML
18 lines
366 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.0.0"
|
|
rand = "0.8.5"
|
|
ratatui.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|