[package]
edition = "2021"
name = "vx-shim"
version = "0.2.3"
authors = ["Hal <hal.long@outlook.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cross-platform shim executable for vx tool manager"
homepage = "https://github.com/loonghao/vx"
documentation = "https://docs.rs/vx-shim"
readme = "README.md"
keywords = [
"shim",
"executable",
"proxy",
"tool-manager",
"cross-platform",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/loonghao/vx"
[features]
debug = []
default = []
[lib]
name = "vx_shim"
path = "src/lib.rs"
[[bin]]
name = "vx-shim"
path = "src/main.rs"
[[test]]
name = "config_tests"
path = "tests/config_tests.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.0"
features = ["derive"]
[dependencies.ctrlc]
version = "3.4"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.shell-words]
version = "1.1"
[dependencies.toml]
version = "0.8"
[dev-dependencies.anyhow]
version = "1.0"
[dev-dependencies.assert_cmd]
version = "2.0"
[dev-dependencies.pretty_assertions]
version = "1.4"
[dev-dependencies.rstest]
version = "0.25"
[dev-dependencies.tempfile]
version = "3.0"
[dev-dependencies.test-case]
version = "3.3"
[dev-dependencies.tokio-test]
version = "0.4"
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(unix)".dependencies.nix]
version = "0.30"
features = [
"signal",
"process",
]
[target."cfg(windows)".dependencies.winapi]
version = "0.3"
features = [
"winbase",
"processthreadsapi",
"handleapi",
"synchapi",
"jobapi2",
"consoleapi",
"shellapi",
"winuser",
"errhandlingapi",
"winerror",
"winnt",
]