[package]
edition = "2021"
rust-version = "1.78.0"
name = "jiwa"
version = "0.3.0"
authors = ["kako-jun"]
build = false
exclude = [
".github/",
"target/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Terminal text reveal animations — typewriter + per-grapheme fade-in + pulse. Renderer-agnostic: returns plain RGB so the caller maps to crossterm, ratatui, or its own ANSI writer."
homepage = "https://github.com/kako-jun/jiwa"
documentation = "https://docs.rs/jiwa"
readme = "README.md"
keywords = [
"lolcat",
"typewriter",
"reveal",
"terminal",
"ansi",
]
categories = [
"command-line-interface",
"rendering",
]
license = "MIT"
repository = "https://github.com/kako-jun/jiwa"
[lib]
name = "jiwa"
path = "src/lib.rs"
[[bin]]
name = "jiwa"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[dependencies.unicode-segmentation]
version = "1.11"
[profile.release]
lto = true
codegen-units = 1