reel-moby/Cargo.toml
Thomas Eppers 7e1ee0f699
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
strip release build of debuginfo
2023-03-04 23:52:18 +01:00

27 lines
634 B
TOML

[package]
name = "reel-moby"
version = "1.2.1"
edition = "2021"
# 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", default-features = false, features = ["json", "rustls-tls"] }
chrono = "0.4.19"
tui = "0.16"
termion = "1.5"
regex = "1.5.4"
lazy_static = "1.4.0"
structopt = "0.3.23"
thiserror = "1.0.32"
anyhow = "1.0.59"
tokio = { version = "1.24.2", features = ["macros", "rt-multi-thread"] }
[profile.release]
lto = "yes"
opt-level = "z"
strip="debuginfo"