mirror of
https://github.com/lifegpc/pixiv_downloader.git
synced 2026-07-08 01:32:41 +08:00
Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.17.0 to 1.18.0. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.17.0...tokio-1.18.0) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
46 lines
1.4 KiB
TOML
46 lines
1.4 KiB
TOML
[package]
|
|
name = "pixiv_downloader"
|
|
version = "0.0.1"
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
atty = "0.2"
|
|
c_fixed_string = { version = "0.2", optional = true }
|
|
chrono = "0.4"
|
|
dateparser = "0.1.6"
|
|
derive_more = "0.99"
|
|
flagset = { version = "0.4", optional = true }
|
|
futures-util = "0.3"
|
|
getopts = "0.2"
|
|
gettext = "0.4"
|
|
html_parser = "0.6.3"
|
|
indicatif = "0.17.0-rc.10"
|
|
int-enum = { version = "0.4", optional = true }
|
|
json = "0.12"
|
|
lazy_static = "1.4"
|
|
regex = "1"
|
|
reqwest = { version = "0.11", features = ["brotli", "deflate", "gzip", "rustls-tls", "socks", "stream"] }
|
|
RustyXML = "0.3"
|
|
spin_on = "0.1.1"
|
|
tokio = { version = "1.18", features = ["rt", "macros", "rt-multi-thread", "time"] }
|
|
urlparse = "0.7"
|
|
utf16string = { version= "0.2", optional = true }
|
|
|
|
[build-dependencies]
|
|
bindgen = { version = "0.59", optional = true }
|
|
cmake = { version = "0.1", optional = true }
|
|
|
|
[features]
|
|
all = ["exif", "ugoira"]
|
|
avdict = ["bindgen", "cmake", "flagset"]
|
|
exif = ["bindgen", "c_fixed_string", "cmake", "link-cplusplus", "int-enum", "utf16string"]
|
|
ugoira = ["avdict", "bindgen", "cmake", "link-cplusplus"]
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winapi = { version = "0.3.9", features = ["winnls", "stringapiset"] }
|
|
|
|
[target.'cfg(target_env = "gnu")'.dependencies]
|
|
link-cplusplus = { version = "1.0", features = ["libstdc++"], optional = true }
|