mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-24 22:30:03 +00:00
Update deps
This commit is contained in:
parent
66a14d0c7c
commit
72148ec572
2 changed files with 62 additions and 68 deletions
14
Cargo.toml
14
Cargo.toml
|
@ -29,20 +29,20 @@ dirs = "4.0.0"
|
|||
flate2 = { version = "1.0.24", features = ["zlib-ng"], default-features = false }
|
||||
futures-util = { version = "0.3.21", default-features = false }
|
||||
log = "0.4.14"
|
||||
miette = { version = "4.7.1", features = ["fancy-no-backtrace"] }
|
||||
miette = { version = "5.1.0", features = ["fancy-no-backtrace"] }
|
||||
once_cell = "1.12.0"
|
||||
reqwest = { version = "0.11.11", features = [ "rustls-tls", "stream" ], default-features = false }
|
||||
reqwest = { version = "0.11.11", features = ["rustls-tls", "stream"], default-features = false }
|
||||
scopeguard = "1.1.0"
|
||||
semver = "1.0.10"
|
||||
serde = { version = "1.0.136", features = [ "derive" ] }
|
||||
serde = { version = "1.0.136", features = ["derive"] }
|
||||
simplelog = "0.12.0"
|
||||
strum = "0.24.1"
|
||||
strum_macros = "0.24.0"
|
||||
strum_macros = "0.24.2"
|
||||
tar = "0.4.38"
|
||||
tempfile = "3.3.0"
|
||||
thiserror = "1.0.31"
|
||||
tinytemplate = "1.2.1"
|
||||
tokio = { version = "1.19.1", features = [ "rt-multi-thread", "process", "sync" ], default-features = false }
|
||||
tokio = { version = "1.19.1", features = ["rt-multi-thread", "process", "sync"], default-features = false }
|
||||
url = "2.2.2"
|
||||
xz2 = "0.1.6"
|
||||
|
||||
|
@ -52,7 +52,7 @@ xz2 = "0.1.6"
|
|||
# this crate.
|
||||
# - time: Enables features using the [time](https://github.com/time-rs/time) crate,
|
||||
# which is not used by this crate.
|
||||
zip = { version = "0.6.2", default-features = false, features = [ "deflate", "bzip2", "zstd" ] }
|
||||
zip = { version = "0.6.2", default-features = false, features = ["deflate", "bzip2", "zstd"] }
|
||||
|
||||
# zstd is also depended by zip.
|
||||
# Since zip 0.6.2 depends on zstd 0.10.0, we also have to use 0.10.0 here,
|
||||
|
@ -60,7 +60,7 @@ zip = { version = "0.6.2", default-features = false, features = [ "deflate", "bz
|
|||
#
|
||||
# Enable feature bindgen to generate C bindings.
|
||||
# Enable feature zstdmt to enable multithreading in libzstd.
|
||||
zstd = { version = "0.10.0", features = [ "bindgen", "zstdmt" ], default-features = false }
|
||||
zstd = { version = "0.10.0", features = ["bindgen", "zstdmt"], default-features = false }
|
||||
|
||||
[target.'cfg(any(target_os = "macos", target_os = "windows"))'.dependencies]
|
||||
guess_host_triple = "0.1.3"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue