forked from GyrosOfWar/youtube-dl-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
26 lines (23 loc) · 758 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 = "youtube_dl"
version = "0.7.0"
authors = ["Martin Tomasi <martin.tomasi@gmail.com>"]
edition = "2018"
description = "Runs youtube-dl and parses its JSON output."
license = "MIT/Apache-2.0"
repository = "https://github.com/GyrosOfWar/youtube-dl-rs"
homepage = "https://github.com/GyrosOfWar/youtube-dl-rs"
categories = ["multimedia::video"]
keywords = ["youtube-dl", "youtube"]
[dependencies]
serde = { version = "1.0.124", features = ["derive"] }
serde_json = "1.0.64"
log = "0.4.14"
wait-timeout = "0.2.0"
tokio = { version = "1.0", optional = true, features = ["io-util", "process", "time"] }
[dev-dependencies.tokio]
version = "1"
features = ["rt", "rt-multi-thread", "macros"]
[[example]]
name = "async"
required-features = ["tokio"]