-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (30 loc) · 912 Bytes
/
Cargo.toml
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
32
33
34
35
36
[package]
name = "ratatui-binary-data-widget"
description = "Binary Data Widget for ratatui"
version = "0.1.0"
license = "MIT"
repository = "https://github.com/EdJoPaTo/ratatui-binary-data-widget"
authors = ["EdJoPaTo <ratatui-binary-data-widget-rust@edjopato.de>"]
edition = "2021"
keywords = ["tui", "terminal", "binary", "widget"]
categories = ["command-line-interface"]
include = ["src/**/*", "README.md"]
[lints.clippy]
pedantic = "warn"
nursery = "warn"
[profile.bench]
codegen-units = 1
debug = true
lto = true
[dependencies]
# ratatui = { path = "/home/edjopato/git/hub/EdJoPaTo-fork/public/ratatui" }
ratatui = { version = "0.26", default-features = false }
[dev-dependencies]
criterion = "0.5"
crossterm = "0.27"
ratatui = "0.26"
[target.'cfg(target_family = "unix")'.dev-dependencies]
pprof = { version = "0.14", features = ["criterion", "flamegraph"] }
[[bench]]
name = "bench"
harness = false