[package]
edition = "2024"
name = "lessify"
version = "0.6.0"
authors = ["Quentin Richert <noreply@richert.co>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Output text through a pager."
readme = "README.md"
keywords = [
"tui",
"less",
"pager",
"terminal",
"console",
]
categories = [
"command-line-interface",
"rendering::engine",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/qrichert/lessify.git"
[lib]
name = "lessify"
path = "src/lib.rs"
[[example]]
name = "lorem_ipsum"
path = "examples/lorem_ipsum.rs"
[[example]]
name = "lorem_ipsum_with_trait"
path = "examples/lorem_ipsum_with_trait.rs"
[[test]]
name = "test_pager"
path = "tests/test_pager.rs"
[[test]]
name = "test_pager_args"
path = "tests/test_pager_args.rs"
[[test]]
name = "test_pager_default"
path = "tests/test_pager_default.rs"
[[test]]
name = "test_pager_error"
path = "tests/test_pager_error.rs"
[[test]]
name = "test_pager_path_lookup"
path = "tests/test_pager_path_lookup.rs"
[[test]]
name = "test_pager_spaced_path"
path = "tests/test_pager_spaced_path.rs"
[dependencies]
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(tarpaulin_include)"]