[package]
edition = "2024"
rust-version = "1.95"
name = "crustkit"
version = "0.2.0"
build = false
include = [
"src/**/*.rs",
"Cargo.toml",
"README.md",
"LICENSE-*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Small Ratatui and Crossterm primitives for terminal applications."
homepage = "https://github.com/arvidnilber/crustkit"
documentation = "https://docs.rs/crustkit"
readme = "README.md"
keywords = [
"tui",
"terminal",
"ratatui",
"crossterm",
]
categories = ["command-line-interface"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/arvidnilber/crustkit"
[features]
default = ["tachyonfx"]
tachyonfx = ["dep:tachyonfx"]
taffy = ["dep:taffy"]
watch = [
"dep:notify",
"dep:notify-debouncer-full",
]
[lib]
name = "crustkit"
path = "src/lib.rs"
[dependencies.color-eyre]
version = "0.6"
[dependencies.crossterm]
version = "0.29"
[dependencies.notify]
version = "8.2.0"
optional = true
[dependencies.notify-debouncer-full]
version = "0.7.0"
optional = true
[dependencies.ratatui]
version = "0.30"
[dependencies.tachyonfx]
version = "0.25.0"
optional = true
[dependencies.taffy]
version = "0.10.1"
optional = true