vx 0.2.2

Universal Development Tool Manager
Documentation
[[bin]]
name = "vx"
path = "src/main.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.tokio]
features = ["rt-multi-thread", "macros", "fs", "process"]
version = "1.0"

[dependencies.vx-cli]
version = "0.2.2"

[dev-dependencies.tempfile]
version = "3.8"

[dev-dependencies.tokio]
features = ["rt-multi-thread", "macros", "fs", "process", "test-util"]
version = "1.0"

[dev-dependencies.vx-core]
version = "0.2.2"

[dev-dependencies.vx-tool-go]
version = "0.2.2"

[dev-dependencies.vx-tool-node]
version = "0.2.2"

[dev-dependencies.vx-tool-rust]
version = "0.2.2"

[dev-dependencies.vx-tool-uv]
version = "0.2.2"

[[example]]
name = "auto_install_demo"
path = "examples/auto_install_demo.rs"

[[example]]
name = "config_management_demo"
path = "examples/config_management_demo.rs"

[lib]
name = "vx"
path = "src/lib.rs"

[package]
authors = ["Hal <hal.long@outlook.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "development-tools"]
description = "Universal Development Tool Manager"
edition = "2021"
homepage = "https://github.com/loonghao/vx"
keywords = ["version", "manager", "development", "tools", "cli"]
license = "MIT"
name = "vx"
readme = "README.md"
repository = "https://github.com/loonghao/vx"
rust-version = "1.80.0"
version = "0.2.2"

[profile.dev]
debug = 1
opt-level = 1

[profile.dev-fast]
debug = 0
incremental = true
inherits = "dev"
opt-level = 0

[profile.pgo-gen]
debug = 1
inherits = "release"
lto = false

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

[profile.release-pgo]
codegen-units = 1
inherits = "release"
lto = true
panic = "abort"

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

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

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

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