add documentation, make pbr optional as well

This commit is contained in:
2022-10-26 23:40:41 +02:00
parent 4eab36b9d9
commit 2eb8f230ba
6 changed files with 86 additions and 22 deletions

View File

@@ -1,15 +1,18 @@
[package]
name = "upkr"
version = "0.2.0"
version = "0.2.1"
edition = "2021"
[profile.release]
strip = "debuginfo"
[features]
terminal = ["crossterm", "pbr"]
[dependencies]
cdivsufsort = "2"
lexopt = "0.2.1"
anyhow = "1"
thiserror = "1.0.36"
pbr = "1"
pbr = { version = "1", optional = true }
crossterm = { version = "0.25.0", default-features = false, optional = true }