-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
46 lines (37 loc) · 1020 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
45
46
[package]
name = "ektoboat"
version = "0.1.0"
authors = ["Martin Milata <[email protected]>"]
description = "a boat for carrying music"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
clap = "~2.33.0"
[dependencies]
# arg parser
clap = "~2.33.0"
# logging
stderrlog = "0.4.3"
log = "0.4.8"
# youtube
google-youtube3 = "1.0.10"
# This project intentionally uses an old version of Hyper. See
# https://github.com/Byron/google-apis-rs/issues/173 for more
# information.
hyper = "^0.10"
hyper-rustls = "^0.6"
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
yup-oauth2 = "^1.0"
# yup-hyper-mock = "2.0.0"
# for scraping ektoplazm.com
select = "^0.4.3" #137 deps total
# persistent state
rusqlite = { version = "^0.22.0", features = ["chrono", "serde_json"] }
chrono = "^0.4.11"
# source - unpacking, metadata extraction
tempfile = "^3.1.0"
zip = "^0.5.4"
id3 = "^0.3.0"
regex = "1"
lazy_static = "1"