-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
41 lines (39 loc) · 1.16 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
[package]
authors = ["9-FS <[email protected]>"]
categories = []
description = ""
edition = "2021"
exclude = [".github/", "readme.pdf"] # additional to .gitignore
keywords = []
license = "MIT"
name = "nhentai_archivist"
readme = "readme.md"
repository = "https://github.com/9-FS/nhentai_archivist"
version = "3.5.1"
[dependencies]
chrono = { version = "^0.4.0", features = ["serde"] }
load_config = { git = "https://github.com/9-FS/load_config", tag = "1.2.1", features = [
"toml_file",
] }
log = "^0.4.0"
reqwest = { version = "^0.12.0", default-features = false, features = [
"cookies",
"rustls-tls",
] }
scaler = "^1.0.0"
serde = { version = "^1.0.0", features = ["derive"] }
serde-xml-rs = "^0.6.0"
serde_json = "^1.0.0"
setup_logging = { git = "https://github.com/9-FS/setup_logging", tag = "2.1.1" }
sqlx = { version = "^0.8.0", features = [
"chrono",
"runtime-tokio-rustls",
"sqlite",
] }
thiserror = "^2.0.0"
tokio = { version = "^1.0.0", features = ["rt-multi-thread"] }
unicode-segmentation = "^1.0.0"
zip = "^2.0.0"
[lints.clippy]
needless_late_init = "allow"
needless_return = "allow"