-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
26 lines (24 loc) · 896 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
[package]
name = "royalroad-dl"
version = "0.1.1"
authors = ["Easyoakland"]
edition = "2021"
description = "Incremental downloader for Royal Road"
readme = "README.md"
repository = "https://github.com/Easyoakland/royalroad-dl"
license = "MIT"
[dependencies]
anyhow = { version = "1.0.79", features = ["backtrace"] }
bpaf = { version = "0.9.9", features = ["derive"] }
ego-tree = "0.10.0"
leaky-bucket = "1.0.1"
regex = "1.10.3"
reqwest = { version = "0.12.12", default-features = false, features= ["http2", "rustls-tls", "charset", "macos-system-configuration"]} # use rustls to make cross-compile simple for musl, but keep other defaults
scraper = { version = "0.22.0", features = ["deterministic"] }
thiserror = "2.0.11"
tokio = { version = "1.35.1", features = ["macros", "fs"] }
url = "2.5.0"
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"