Files
managarr-tree-widget/Cargo.toml
dependabot[bot] b913dcda77 build(cargo): update unicode-width requirement from 0.1 to 0.2 (#43)
Updates the requirements on [unicode-width](https://github.com/unicode-rs/unicode-width) to permit the latest version.
- [Commits](https://github.com/unicode-rs/unicode-width/commits)

---
updated-dependencies:
- dependency-name: unicode-width
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-10-01 11:22:32 +02:00

39 lines
972 B
TOML

[package]
name = "tui-tree-widget"
description = "Tree Widget for ratatui"
version = "0.22.0"
license = "MIT"
repository = "https://github.com/EdJoPaTo/tui-rs-tree-widget"
authors = ["EdJoPaTo <tui-tree-widget-rust-crate@edjopato.de>"]
edition = "2021"
keywords = ["tui", "terminal", "tree", "widget"]
categories = ["command-line-interface"]
include = ["src/**/*", "examples/**/*", "benches/**/*", "README.md"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
pedantic = "warn"
nursery = "warn"
[profile.bench]
codegen-units = 1
debug = true
lto = true
[dependencies]
ratatui = { version = "0.28", default-features = false }
unicode-width = "0.2"
[dev-dependencies]
criterion = "0.5"
ratatui = "0.28"
[target.'cfg(target_family = "unix")'.dev-dependencies]
pprof = { version = "0.13", features = ["criterion", "flamegraph"] }
[[bench]]
name = "bench"
harness = false