[package]
edition = "2024"
rust-version = "1.97"
name = "ztheme"
version = "1.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast asynchronous Zsh prompt"
homepage = "https://github.com/alexykn/ztheme"
readme = "README.md"
keywords = [
"zsh",
"prompt",
"terminal",
"shell",
"theme",
]
categories = [
"command-line-interface",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/alexykn/ztheme"
[[bin]]
name = "ztheme"
path = "src/main.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.shell-words]
version = "1.1"
[dependencies.tokio]
version = "1"
features = [
"io-util",
"macros",
"net",
"process",
"rt",
"sync",
"time",
]
[dependencies.toml]
version = "1.1"
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
panic = "abort"
strip = "symbols"