mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-20 20:48:43 +00:00
Drop tokio macros
This commit is contained in:
parent
77b331f97c
commit
73b3ac1adb
2 changed files with 4 additions and 13 deletions
12
Cargo.lock
generated
12
Cargo.lock
generated
|
@ -1450,21 +1450,9 @@ dependencies = [
|
||||||
"pin-project-lite",
|
"pin-project-lite",
|
||||||
"signal-hook-registry",
|
"signal-hook-registry",
|
||||||
"socket2",
|
"socket2",
|
||||||
"tokio-macros",
|
|
||||||
"winapi",
|
"winapi",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "tokio-macros"
|
|
||||||
version = "1.7.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "b557f72f448c511a979e2564e55d74e6c4432fc96ff4f6241bc6bded342643b7"
|
|
||||||
dependencies = [
|
|
||||||
"proc-macro2",
|
|
||||||
"quote",
|
|
||||||
"syn",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tokio-rustls"
|
name = "tokio-rustls"
|
||||||
version = "0.23.4"
|
version = "0.23.4"
|
||||||
|
|
|
@ -41,9 +41,11 @@ tinytemplate = "1.2.1"
|
||||||
|
|
||||||
# This crate uses features rt-multi-thread and macros in `#[tokio::main]` and
|
# This crate uses features rt-multi-thread and macros in `#[tokio::main]` and
|
||||||
# uses feature process to create process.
|
# uses feature process to create process.
|
||||||
tokio = { version = "1.18.0", features = [ "rt-multi-thread", "macros", "process" ], default-features = false }
|
tokio = { version = "1.18.0", features = [ "rt-multi-thread", "process" ], default-features = false }
|
||||||
|
|
||||||
url = "2.2.2"
|
url = "2.2.2"
|
||||||
xz2 = "0.1.6"
|
xz2 = "0.1.6"
|
||||||
|
|
||||||
# Disable all features of zip except for features of compression algorithms:
|
# Disable all features of zip except for features of compression algorithms:
|
||||||
# Disable features include:
|
# Disable features include:
|
||||||
# - aes-crypto: Enables decryption of files which were encrypted with AES, absolutely zero use for
|
# - aes-crypto: Enables decryption of files which were encrypted with AES, absolutely zero use for
|
||||||
|
@ -51,6 +53,7 @@ xz2 = "0.1.6"
|
||||||
# - time: Enables features using the [time](https://github.com/time-rs/time) crate,
|
# - time: Enables features using the [time](https://github.com/time-rs/time) crate,
|
||||||
# which is not used by this 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.
|
# 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,
|
# Since zip 0.6.2 depends on zstd 0.10.0, we also have to use 0.10.0 here,
|
||||||
# otherwise there will be a link conflict.
|
# otherwise there will be a link conflict.
|
||||||
|
|
Loading…
Add table
Reference in a new issue