[[bin]]
name = "shimexe"
path = "src/main.rs"
[build-dependencies.winres]
version = "0.1"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
features = ["derive", "env"]
version = "4.5"
[dependencies.dirs]
version = "6.0"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.shimexe-core]
version = "0.5.5"
[dependencies.tokio]
features = ["full"]
version = "1.0"
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
features = ["env-filter"]
version = "0.3"
[dev-dependencies.anyhow]
version = "1.0"
[dev-dependencies.tempfile]
version = "3.8"
[dev-dependencies.zip]
version = "4.0"
[[example]]
name = "vx_integration_simple"
path = "examples/vx_integration_simple.rs"
[lints.clippy]
uninlined_format_args = "allow"
[package]
authors = ["Hal <hal.long@outlook.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
categories = ["command-line-utilities", "development-tools"]
description = "A modern, cross-platform executable shim manager with environment variable expansion and TOML configuration support"
documentation = "https://docs.rs/shimexe"
edition = "2021"
homepage = "https://github.com/loonghao/shimexe"
keywords = ["shim", "executable", "wrapper", "cross-platform", "cli"]
license = "MIT"
name = "shimexe"
readme = "README.md"
repository = "https://github.com/loonghao/shimexe"
version = "0.5.5"
[profile.release]
codegen-units = 1
lto = true
opt-level = 3
panic = "abort"
strip = true
[[test]]
name = "add_command_tests"
path = "tests/add_command_tests.rs"
[[test]]
name = "archive_tests"
path = "tests/archive_tests.rs"
[[test]]
name = "config_tests"
path = "tests/config_tests.rs"
[[test]]
name = "downloader_tests"
path = "tests/downloader_tests.rs"
[[test]]
name = "env_tests"
path = "tests/env_tests.rs"
[[test]]
name = "runner_tests"
path = "tests/runner_tests.rs"