console_static_text 0.9.0

Logging for text that should stay in the same place in a console.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "console_static_text"
version = "0.9.0"
authors = ["David Sherret <dsherret@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Logging for text that should stay in the same place in a console."
readme = "README.md"
keywords = ["console"]
license = "MIT"
repository = "https://github.com/dsherret/console_static_text"

[package.metadata.docs.rs]
all-features = true

[features]
sized = [
    "atty",
    "rustix",
    "terminal_size",
    "windows-sys",
]

[lib]
name = "console_static_text"
path = "src/lib.rs"

[[example]]
name = "count"
path = "examples/count.rs"
required-features = ["sized"]

[[example]]
name = "input"
path = "examples/input.rs"

[[example]]
name = "logging_text_above"
path = "examples/logging_text_above.rs"
required-features = ["sized"]

[[example]]
name = "main"
path = "examples/main.rs"

[[example]]
name = "word_wrapping"
path = "examples/word_wrapping.rs"
required-features = ["sized"]

[[bench]]
name = "render"
path = "benches/render.rs"
harness = false

[dependencies.atty]
version = "0.2"
optional = true

[dependencies.terminal_size]
version = "0.3.0"
optional = true

[dependencies.unicode-width]
version = "0.1.11"

[dependencies.vte]
version = "0.13.0"

[dev-dependencies.console]
version = "0.15.7"

[dev-dependencies.crossterm]
version = "0.27.0"

[dev-dependencies.divan]
version = "0.1"

[dev-dependencies.pretty_assertions]
version = "1.3"

[target."cfg(not(windows))".dependencies.rustix]
version = "0.38.28"
features = ["stdio"]
optional = true

[target."cfg(windows)".dependencies.windows-sys]
version = "0.52.0"
features = [
    "Win32_Foundation",
    "Win32_System_Console",
]
optional = true