[package]
edition = "2021"
rust-version = "1.74"
name = "wincd"
version = "2.0.0"
authors = ["ccc007ccc"]
build = false
exclude = [
"/.github",
"/target",
"/install.sh",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "WSL 下一步到位的 Windows 路径导航工具 — 粘贴 Windows 路径,直接 cd"
homepage = "https://github.com/ccc007ccc/wincd"
documentation = "https://docs.rs/wincd"
readme = "README.md"
keywords = [
"wsl",
"windows",
"path",
"cd",
"navigation",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/ccc007ccc/wincd"
[lib]
name = "wincd"
path = "src/lib.rs"
[[bin]]
name = "wincd"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[dependencies.anyhow]
version = "1"
[dependencies.arboard]
version = "3"
default-features = false
[dependencies.clap]
version = "4"
features = [
"derive",
"wrap_help",
]
[dependencies.clap_complete]
version = "4"
[dependencies.dirs]
version = "6"
[dependencies.owo-colors]
version = "4"
features = ["supports-colors"]
[dependencies.strsim]
version = "0.11"
[dependencies.thiserror]
version = "2"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.tempfile]
version = "3"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = true