2021-09-07 15:30:03 +02:00
|
|
|
|
2021-08-15 20:49:12 +02:00
|
|
|
[package]
|
2021-10-17 01:19:32 +02:00
|
|
|
name = "reel-moby"
|
2021-10-31 22:52:06 +01:00
|
|
|
version = "1.0.0"
|
2021-08-15 20:49:12 +02:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
serde = { version = "1.0.127", features = ["derive"] }
|
|
|
|
serde_json = "1.0.66"
|
|
|
|
reqwest = { version = "0.11.4", features = ["blocking", "json"] }
|
|
|
|
chrono = "0.4.19"
|
2021-08-23 14:06:00 +02:00
|
|
|
tui = "0.16"
|
|
|
|
termion = "1.5"
|
2021-08-30 00:28:12 +02:00
|
|
|
regex = "1.5.4"
|
2021-09-13 15:54:37 +02:00
|
|
|
lazy_static = "1.4.0"
|
2021-10-17 02:37:28 +02:00
|
|
|
structopt = "0.3.23"
|
2021-09-07 15:30:03 +02:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
lto = "yes"
|
|
|
|
opt-level = "z"
|