-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
53 lines (45 loc) · 1.39 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[workspace]
members = ["ibdl-common", "ibdl-core", "ibdl-extractors"]
[package]
name = "imageboard_downloader"
authors = ["Ferrah Aiko Wolf <[email protected]>"]
version = "1.7.0"
edition = "2021"
description = "Cli utility to bulk download images from popular imageboard sites (Boorus) using their APIs"
license = "MIT"
readme = "README.md"
repository = "https://gitlab.com/FerrahWolfeh/imageboard-downloader-rs"
documentation = "https://docs.rs/imageboard_downloader"
keywords = ["download", "api", "e621", "danbooru", "rule34"]
categories = ["command-line-utilities", "multimedia::images"]
include = ["**/*.rs", "Cargo.toml"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
env_logger = "0.10"
ibdl-core = { version = "1.6.2", path = "./ibdl-core" }
ibdl-extractors = { version = "1.8.0", path = "./ibdl-extractors" }
ibdl-common = { version = "1.6.0", path = "./ibdl-common" }
color-eyre = "0.6.2"
once_cell = "1.19.0"
dialoguer = "0.11.0"
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
ahash = { version = "0.8.7", features = ["serde"] }
rand = "0.8.5"
[[bench]]
name = "post_filter"
harness = false
[[bench]]
name = "post_mapper"
harness = false
[profile.release]
lto = "thin"
opt-level = 3
strip = true
debug = false
[profile.opttest]
inherits = "release"
lto = false
opt-level = 3
strip = false
debug = true