[[bench]]
harness = false
name = "prompt_bench"
path = "benches/prompt_bench.rs"
[[bin]]
name = "slick"
path = "src/bin/slick.rs"
[dependencies.clap]
version = "4"
[dependencies.compound_duration]
version = "2"
[dependencies.git2]
version = "0.20"
[dependencies.openssl]
features = ["vendored"]
optional = true
version = "0.10"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.tokio]
features = ["rt-multi-thread", "process", "macros", "time"]
version = "1.44"
[dependencies.uzers]
version = "0.12"
[dev-dependencies.criterion]
version = "0.7"
[dev-dependencies.tempfile]
version = "3"
[features]
default = []
musl = ["openssl/vendored"]
[lib]
name = "slick"
path = "src/lib.rs"
[package]
authors = ["Nicolas Embriz <nbari@tequila.io>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "command-line-interface"]
description = "async ZSH prompt"
documentation = "https://github.com/nbari/slick/blob/master/README.md"
edition = "2024"
homepage = "https://github.com/nbari/slick"
keywords = ["prompt", "zsh", "shell", "terminal", "git"]
license = "BSD-3-Clause"
name = "slick"
readme = "README.md"
repository = "https://github.com/nbari/slick"
version = "0.14.6"
[package.metadata.deb]
assets = [["target/release/slick", "/usr/bin/slick", "755"]]
depends = ""
[[package.metadata.generate-rpm.assets]]
dest = "/usr/bin/slick"
mode = "0755"
source = "target/release/slick"
[profile.release]
codegen-units = 1
lto = "thin"
opt-level = 3
strip = true
[[test]]
name = "auth_cache_tests"
path = "tests/auth_cache_tests.rs"
[[test]]
name = "env_custom_tests"
path = "tests/env_custom_tests.rs"
[[test]]
name = "env_tests"
path = "tests/env_tests.rs"
[[test]]
name = "git_integration_tests"
path = "tests/git_integration_tests.rs"