Files
pixiv_downloader/Cargo.toml
2022-03-02 18:33:04 +08:00

34 lines
929 B
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]
c_fixed_string = { version = "0.2", optional = true }
chrono = "0.4"
dateparser = "0.1.6"
futures-util = "0.3"
getopts = "0.2"
gettext = "0.4"
html_parser = "0.6.2"
int-enum = { version = "0.4", optional = true }
lazy_static = "1.4"
json = "0.12"
utf16string = { version= "0.2", optional = true }
regex = "1"
reqwest = { version = "0.11", features = ["brotli", "deflate", "gzip", "rustls-tls", "socks", "stream"] }
spin_on = "0.1.1"
tokio = { version = "1.17", features = ["rt", "macros", "rt-multi-thread", "time"] }
[build-dependencies]
cmake = "0.1"
bindgen = "0.53"
[features]
exif = ["c_fixed_string", "int-enum", "utf16string"]
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", features = ["winnls", "stringapiset"] }