reel-moby/Cargo.toml

27 lines
634 B
TOML
Raw Permalink Normal View History

2021-08-15 20:49:12 +02:00
[package]
name = "reel-moby"
2022-07-23 00:50:03 +02:00
version = "1.2.1"
edition = "2021"
2021-08-15 20:49:12 +02:00
# 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"
2023-02-17 12:40:45 +01:00
reqwest = { version = "0.11.4", default-features = false, features = ["json", "rustls-tls"] }
2021-08-15 20:49:12 +02:00
chrono = "0.4.19"
2021-08-23 14:06:00 +02:00
tui = "0.16"
termion = "1.5"
regex = "1.5.4"
lazy_static = "1.4.0"
2021-10-17 02:37:28 +02:00
structopt = "0.3.23"
thiserror = "1.0.32"
anyhow = "1.0.59"
2023-01-31 23:51:45 +01:00
tokio = { version = "1.24.2", features = ["macros", "rt-multi-thread"] }
[profile.release]
lto = "yes"
2023-03-04 23:52:18 +01:00
opt-level = "z"
strip="debuginfo"