-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (24 loc) · 952 Bytes
/
Cargo.toml
File metadata and controls
28 lines (24 loc) · 952 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# <FILE>Cargo.toml</FILE> - <DESC>bgraph: Braille-based terminal graphing library</DESC>
# <VERS>VERSION: 1.2.0</VERS>
# <WCTX>bgraph crate preparation for crates.io release</WCTX>
# <CLOG>Added unicode-width for legend sizing</CLOG>
[package]
name = "bgraph"
version = "0.1.0"
edition = "2021"
rust-version = "1.74.0"
authors = ["JAC <jac@jac.app>"]
description = "btop-style Braille graphing for terminal UIs - smooth, high-resolution charts using Unicode Braille characters"
license = "MIT"
repository = "https://github.com/jacbart/bgraph"
readme = "README.md"
documentation = "https://docs.rs/bgraph"
keywords = ["terminal", "tui", "graph", "braille", "visualization"]
categories = ["command-line-interface", "visualization"]
[dependencies]
ratatui = "0.29"
unicode-width = "0.1"
[dev-dependencies]
crossterm = "0.28"
# <FILE>Cargo.toml</FILE> - <DESC>bgraph: Braille-based terminal graphing library</DESC>
# <VERS>END OF VERSION: 1.2.0</VERS>