mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-21 21:18:42 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.21.1 to 1.21.2. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.21.1...tokio-1.21.2) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
60 lines
1.8 KiB
TOML
60 lines
1.8 KiB
TOML
[package]
|
|
name = "cargo-binstall"
|
|
description = "Rust binary package installer for CI integration"
|
|
repository = "https://github.com/cargo-bins/cargo-binstall"
|
|
documentation = "https://docs.rs/cargo-binstall"
|
|
version = "0.13.3"
|
|
rust-version = "1.61.0"
|
|
authors = ["ryan <ryan@kurte.nz>"]
|
|
edition = "2021"
|
|
license = "GPL-3.0"
|
|
readme = "../../README.md"
|
|
|
|
# These MUST remain even if they're not needed in recent versions because
|
|
# OLD versions use them to upgrade
|
|
[package.metadata.binstall]
|
|
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-{ target }.{ archive-format }"
|
|
bin-dir = "{ bin }{ binary-ext }"
|
|
|
|
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
|
|
pkg-fmt = "zip"
|
|
[package.metadata.binstall.overrides.x86_64-apple-darwin]
|
|
pkg-fmt = "zip"
|
|
|
|
[dependencies]
|
|
binstalk = { path = "../binstalk", version = "0.2.2" }
|
|
clap = { version = "3.2.22", features = ["derive"] }
|
|
crates_io_api = { version = "0.8.1", default-features = false }
|
|
dirs = "4.0.0"
|
|
log = "0.4.17"
|
|
miette = "5.3.0"
|
|
mimalloc = { version = "0.1.29", default-features = false, optional = true }
|
|
reqwest = { version = "0.11.12", default-features = false }
|
|
semver = "1.0.14"
|
|
simplelog = "0.12.0"
|
|
tempfile = "3.3.0"
|
|
tokio = { version = "1.21.2", features = ["rt-multi-thread"], default-features = false }
|
|
|
|
[build-dependencies]
|
|
embed-resource = "1.7.3"
|
|
|
|
[features]
|
|
default = ["static", "rustls", "trust-dns", "fancy-no-backtrace"]
|
|
|
|
mimalloc = ["dep:mimalloc"]
|
|
|
|
static = ["binstalk/static"]
|
|
pkg-config = ["binstalk/pkg-config"]
|
|
|
|
zlib-ng = ["binstalk/zlib-ng"]
|
|
|
|
rustls = ["binstalk/rustls"]
|
|
native-tls = ["binstalk/native-tls"]
|
|
|
|
trust-dns = ["binstalk/trust-dns"]
|
|
|
|
fancy-no-backtrace = ["miette/fancy-no-backtrace"]
|
|
fancy-with-backtrace = ["fancy-no-backtrace", "miette/fancy"]
|
|
|
|
log_release_max_level_info = ["log/release_max_level_info"]
|
|
log_release_max_level_debug = ["log/release_max_level_debug"]
|