cargo-binstall/crates/detect-targets/Cargo.toml
dependabot[bot] ae7f502d11
build(deps): bump tokio from 1.44.1 to 1.44.2 in the cargo group
Bumps the cargo group with 1 update: [tokio](https://github.com/tokio-rs/tokio).


Updates `tokio` from 1.44.1 to 1.44.2
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.44.1...tokio-1.44.2)

---
updated-dependencies:
- dependency-name: tokio
  dependency-version: 1.44.2
  dependency-type: direct:production
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-04-08 02:10:38 +00:00

41 lines
1.2 KiB
TOML

[package]
name = "detect-targets"
description = "Detect the target of the env at runtime"
repository = "https://github.com/cargo-bins/cargo-binstall"
documentation = "https://docs.rs/detect-targets"
version = "0.1.47"
rust-version = "1.62.0"
authors = ["Jiahao XU <Jiahao_XU@outlook.com>"]
edition = "2021"
license = "Apache-2.0 OR MIT"
[dependencies]
tokio = { version = "1.44.2", features = [
"rt",
"process",
"sync",
], default-features = false }
tracing = { version = "0.1.39", optional = true }
tracing-subscriber = { version = "0.3.17", features = [
"fmt",
], default-features = false, optional = true }
cfg-if = "1.0.0"
guess_host_triple = "0.1.3"
[features]
tracing = ["dep:tracing"]
cli-logging = ["tracing", "dep:tracing-subscriber"]
[target.'cfg(target_os = "windows")'.dependencies]
windows-sys = { version = "0.59.0", features = [
"Win32_System_Threading",
"Win32_System_SystemInformation",
"Win32_Foundation",
"Win32_System_LibraryLoader",
] }
[dev-dependencies]
tokio = { version = "1.44.2", features = ["macros"], default-features = false }
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/cargo-binstall-{ target }.full.{ archive-format }"