-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (38 loc) · 1.21 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
[package]
authors = ["Mankong <mankong@mankong.me>", "siwilizhao <siwilizhao@gmail.com>"]
categories = ["filesystem", "command-line-interface"]
description = "Downloaders with a pure http implementation support breakpoint continuations"
documentation = "https://docs.rs/siwi-download"
edition = "2021"
keywords = ["siwi-download", "download", "siwi", "downloader"]
license = "MIT"
name = "siwi-download"
readme = "README.md"
repository = "https://github.com/rs-videos/siwi-download.git"
version = "0.3.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package.metadata.docs.rs]
features = ["docs"]
rustdoc-args = ["--cfg", "feature=\"docs\""]
[features]
docs = ["unstable"]
unstable = []
[dependencies]
anyhow = "^1"
chrono = {version = "^0.4", features = ["serde"]}
indicatif = "^0.17"
reqwest = {version = "^0.12", default-features = false, features = [
"rustls-tls",
"json",
]}
serde = {version = "^1.0", features = ["derive"]}
serde_json = "^1.0"
tokio = {version = "1", features = ["fs", "macros", "rt-multi-thread"]}
tracing = "^0.1"
tracing-subscriber = "0.3"
[[example]]
name = "cli"
path = "examples/cli.rs"
[[example]]
name = "download"
path = "examples/download.rs"