[package]
edition = "2024"
rust-version = "1.85"
name = "termpulse"
version = "0.1.0"
build = false
exclude = ["examples/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Native terminal progress indicators via OSC 9;4 — with smart detection, graceful fallback, throttling, and stall detection."
homepage = "https://github.com/justinhuangcode/termpulse"
documentation = "https://docs.rs/termpulse"
readme = "README.md"
keywords = [
"terminal",
"progress",
"osc",
"cli",
"progress-bar",
]
categories = [
"command-line-interface",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/justinhuangcode/termpulse"
resolver = "2"
[lib]
name = "termpulse"
path = "src/lib.rs"
[dependencies.termpulse-core]
version = "0.1.0"
features = ["std"]
[lints.clippy]
cloned_instead_of_copied = "warn"
dbg_macro = "warn"
doc_markdown = "warn"
explicit_into_iter_loop = "warn"
explicit_iter_loop = "warn"
inconsistent_struct_constructor = "warn"
manual_ok_or = "warn"
missing_errors_doc = "warn"
missing_panics_doc = "warn"
print_stderr = "warn"
print_stdout = "warn"
semicolon_if_nothing_returned = "warn"
unnecessary_wraps = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.correctness]
level = "deny"
priority = -1
[lints.rust]
unsafe_code = "deny"
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1