-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
27 lines (25 loc) · 912 Bytes
/
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
[package]
name = "fanbox-archive"
version = "0.1.0"
edition = "2021"
license = "BSD-3-Clause"
description = "A Fanbox Download and Archiver"
authors = ["xiao-e-yun <[email protected]>"]
repository = "https://github.com/xiao-e-yun/FanboxArchive"
[dependencies]
post-archiver = { version = "0.2.3", features = ["utils"] }
# other dependencies
chrono = { version = "0.4.38", features = ["serde"] }
rusqlite = { version = "0.32.1", features = ["bundled", "chrono"] }
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
clap = { version = "4.5.4", features = ["derive", "env"] }
log = "0.4.21"
dotenv = "0.15.0"
env_logger = "0.11.3"
clap-verbosity-flag = "2.2.0"
tokio = { version = "1.38.0", features = ["full"] }
futures = "0.3.31"
reqwest = { version = "0.12", features = ["json", "stream"] }
reqwest-retry = "0.5.0"
reqwest-middleware = { version = "0.3.1", features = ["json"] }