[package]
edition = "2024"
name = "upkit"
version = "0.4.4"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "One CLI to check & update Go/Rust/Node/Python/Flutter (hybrid built-in + direct-download)."
readme = "README.md"
keywords = [
"cli",
"updater",
"toolchain",
"devtools",
]
categories = ["command-line-utilities"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/christiandoxa/upkit"
[lib]
name = "upkit"
path = "src/lib.rs"
[[bin]]
name = "upkit"
path = "src/main.rs"
[[test]]
name = "coverage"
path = "tests/coverage.rs"
[[test]]
name = "coverage_child"
path = "tests/coverage_child.rs"
[[test]]
name = "infrastructure_tests"
path = "tests/infrastructure_tests.rs"
[[test]]
name = "main_tests"
path = "tests/main_tests.rs"
[[test]]
name = "paths_coverage"
path = "tests/paths_coverage.rs"
[[test]]
name = "tools_flutter"
path = "tests/tools_flutter.rs"
[[test]]
name = "tools_go"
path = "tests/tools_go.rs"
[[test]]
name = "tools_node"
path = "tests/tools_node.rs"
[[test]]
name = "tools_python"
path = "tests/tools_python.rs"
[[test]]
name = "tools_rust"
path = "tests/tools_rust.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.clap_complete]
version = "4.5"
[dependencies.dialoguer]
version = "0.12"
[dependencies.dirs]
version = "6"
[dependencies.flate2]
version = "1.0"
[dependencies.hex]
version = "0.4"
[dependencies.indicatif]
version = "0.18"
[dependencies.regex]
version = "1"
[dependencies.reqwest]
version = "0.13"
features = [
"blocking",
"json",
"rustls",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.tar]
version = "0.4"
[dependencies.tempfile]
version = "3"
[dependencies.toml]
version = "0.9"
[dependencies.which]
version = "8"
[dependencies.xz2]
version = "0.1"
[dependencies.zstd]
version = "0.13"
[dev-dependencies.jmpln]
version = "0.1.0"