mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-23 05:58:42 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
* build(deps): bump the deps group across 1 directory with 2 updates Bumps the deps group with 2 updates in the / directory: [fs4](https://github.com/al8n/fs4-rs) and [windows-sys](https://github.com/microsoft/windows-rs). Updates `fs4` from 0.8.4 to 0.9.1 - [Release notes](https://github.com/al8n/fs4-rs/releases) - [Commits](https://github.com/al8n/fs4-rs/commits) Updates `windows-sys` from 0.52.0 to 0.59.0 - [Release notes](https://github.com/microsoft/windows-rs/releases) - [Commits](https://github.com/microsoft/windows-rs/compare/0.52.0...0.59.0) --- updated-dependencies: - dependency-name: fs4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: deps - dependency-name: windows-sys dependency-type: direct:production update-type: version-update:semver-minor dependency-group: deps ... Signed-off-by: dependabot[bot] <support@github.com> * Fix use of fs4 Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> * Fix windows.rs Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> * Rm drop impl for LibraryHandle As unmounting dynlib might cause UB Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> * Fix clippy in windows.rs Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com>
41 lines
1.2 KiB
TOML
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.17"
|
|
rust-version = "1.62.0"
|
|
authors = ["Jiahao XU <Jiahao_XU@outlook.com>"]
|
|
edition = "2021"
|
|
license = "Apache-2.0 OR MIT"
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.35.0", 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.35.0", features = ["macros"], default-features = false }
|
|
|
|
[package.metadata.binstall]
|
|
pkg-url = "{ repo }/releases/download/v{ version }/cargo-binstall-{ target }.full.{ archive-format }"
|