-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
44 lines (38 loc) · 1017 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "ytextract"
version = "0.9.0"
edition = "2018"
description = "A library for getting YouTube metadata"
readme = "README.md"
repository = "https://github.com/ATiltedTree/ytextract/"
license = "MIT OR Apache-2.0"
keywords = ["youtube", "youtube-dl", "youtube-downloader"]
categories = ["multimedia"]
include = ["LICENSE-*", "src", "Cargo.toml", "README.md"]
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "1"
serde_with = { version = "1", features = ["chrono"] }
log = "0.4"
bytes = "1"
futures-core = "0.3"
async-stream = "0.3"
base64 = "0.13"
url = { version = "2", features = ["serde"] }
[dependencies.chrono]
version = "0.4"
default-features = false
features = ["std"]
[dependencies.reqwest]
version = "0.11"
features = ["stream", "json"]
[dev-dependencies]
futures = "0.3"
once_cell = "1"
assert_matches = "1"
[dev-dependencies.async-std]
version = "1"
features = ["attributes", "tokio1"]