withd 0.3.2

Run a command in another directory.
[[bin]]
doc = false
name = "completions"
path = "src/completions.rs"

[[bin]]
doc = false
name = "withd"
path = "src/main.rs"

[dependencies.bstr]
default-features = false
features = ["std"]
version = "=1.11.1"

[dependencies.clap]
features = ["derive", "env", "wrap_help"]
version = "=4.5.23"

[dependencies.clap_complete]
version = "=4.5.40"

[dependencies.lazy-regex]
default-features = false
features = ["regex"]
version = "=3.3.0"

[dependencies.tempfile]
version = "=3.14.0"

[dependencies.thiserror]
version = "=2.0.9"

[package]
authors = ["Gavin Panella <gavin@allenap.me>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities"]
description = "Run a command in another directory."
edition = "2021"
keywords = ["cd", "cdpath"]
license-file = "LICENSE"
name = "withd"
readme = "README.md"
repository = "https://github.com/allenap/withd"
version = "0.3.2"

[profile.release]
codegen-units = 1
lto = true
opt-level = "z"
panic = "abort"
strip = true

[target."cfg(unix)".dependencies.nix]
default-features = false
features = ["signal"]
version = "=0.29.0"

[[test]]
name = "test_basics"
path = "tests/test_basics.rs"