-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (25 loc) · 810 Bytes
/
Cargo.toml
File metadata and controls
30 lines (25 loc) · 810 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
[package]
name = "tinytable"
version = "0.2.0"
edition = "2024"
rust-version = "1.85.0"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/MonterraByte/tinytable"
description = "A tiny text table drawing library"
categories = ["command-line-interface", "text-processing", "visualization"]
keywords = ["table", "tabular", "terminal", "text", "unicode"]
exclude = ["/.github"]
[dependencies]
fallible-iterator = { version = "0.3", optional = true }
unicode-width = { version = "0.2", default-features = false }
unicode-segmentation = "1.13"
[dev-dependencies]
divan = "0.1"
[[bench]]
name = "benches"
harness = false
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tinytable_profile_alloc)'] }
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]