-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (25 loc) · 711 Bytes
/
Cargo.toml
File metadata and controls
31 lines (25 loc) · 711 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
29
30
31
[package]
name = "tablestream"
description = "A streaming table formatter for the console"
keywords = ["table", "console", "format", "stream", "unicode"]
categories = ["command-line-interface", "visualization"]
license = "MIT OR Apache-2.0"
version = "0.1.4"
edition = "2018"
repository = "https://github.com/NfNitLoop/tablestream"
documentation = "https://docs.rs/tablestream"
readme = "README.md"
exclude = [
# This seems like unnecessary bloat:
"*.gif",
]
[dependencies]
# Used to determine terminal width.
# (And maybe eventually for colors.)
crossterm = "0.28"
unicode-truncate = "0.2.0"
unicode-width = "0.1.8"
[dev-dependencies.clap]
# Used by example.rs
version = "4"
features = ["derive"]