[package]
name = "ztheme"
version = "1.3.0"
edition = "2024"
rust-version = "1.97"
description = "Fast asynchronous Zsh prompt"
license = "MIT"
repository = "https://github.com/alexykn/ztheme"
homepage = "https://github.com/alexykn/ztheme"
keywords = ["zsh", "prompt", "terminal", "shell", "theme"]
categories = ["command-line-interface", "command-line-utilities"]
[dependencies]
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
shell-words = "1.1"
tokio = { version = "1", features = ["io-util", "macros", "net", "process", "rt", "sync", "time"] }
toml = "1.1"
[profile.release]
codegen-units = 1
lto = "thin"
opt-level = 3
panic = "abort"
strip = "symbols"