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

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