[package]
edition = "2021"
name = "cirious_codex_term"
version = "0.2.1"
authors = ["Cirious Studio <cirious.studio@proton.me>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Next-generation native ANSI terminal control and formatting."
readme = "README.md"
keywords = [
"terminal",
"ansi",
"color",
"cli",
"style",
]
categories = ["command-line-interface"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/cirious-studio/cirious_codex_term"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "cirious_codex_term"
path = "src/lib.rs"
[[example]]
name = "demo"
path = "examples/demo.rs"
[[example]]
name = "event"
path = "examples/event.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[dependencies]
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.61"
features = ["Win32_System_Console"]
[lints.clippy]
expect_used = "warn"
nursery = "warn"
pedantic = "warn"
unwrap_used = "warn"
[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
unsafe_code = "warn"