You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lolistealer/Cargo.toml

43 lines
1.0 KiB

[package]
name = "lolistealer"
version = "1.3.2"
authors = ["Avril <flanchan@cumallover.me>"]
edition = "2018"
license = "GPL-3.0-or-later"
homepage = "https://git.flanchan.moe/flanchan/lolistealer"
description = "Downloads cute images"
[package.metadata.ebuild]
iuse = "threads"
license = "GPL-3+"
homepage = "https://flanchan.moe"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["async", "mem_find"]
async = ["tokio"]
mem_find = ["memchr"]
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
[dependencies]
termprogress = "0.1.0"
lazy_static = "1.4"
tokio = {version = "0.2", features= ["rt-threaded", "io-driver", "io-util", "macros", "fs"], optional=true}
reqwest = { version = "0.10.8", features = ["stream"] }
memmap = "0.7"
getrandom = "0.1"
base64 = "0.12"
memchr = {version = "2.3", optional = true}
[build-dependencies]
rustc_version = "0.2"
[target.'cfg(not(nightly))'.dependencies] # Fuck this. Just. Fuck. It.
linked-list = "0.0"