movie-rename/Cargo.toml

30 lines
861 B
TOML
Raw Normal View History

2022-12-07 22:53:16 -06:00
[package]
2022-12-09 15:02:20 -06:00
name = "movie-rename"
2023-05-29 00:14:54 -05:00
version = "2.1.3"
2022-12-07 22:53:16 -06:00
edition = "2021"
2022-12-10 23:33:09 -06:00
authors = ["Sayantan Santra <sayantan[dot]santra689[at]gmail[dot]com"]
license = "GPL-3.0"
description = "A simple tool to rename movies, written in Rust."
homepage = "https://github.com/SinTan1729/movie-rename"
documentation = "https://docs.rs/movie-rename"
repository = "https://github.com/SinTan1729/movie-rename"
readme = "README.md"
keywords = ["rename", "movie", "media", "tmdb"]
categories = ["command-line-utilities"]
2022-12-07 22:53:16 -06:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-05-15 17:10:51 -05:00
torrent-name-parser = "0.12.1"
tmdb-api = "0.4.0"
inquire = "0.6.2"
2023-02-07 18:16:20 -06:00
load_file = "1.0.1"
2023-05-15 17:10:51 -05:00
tokio = { version = "1.28.1", features = ["macros", "rt-multi-thread"] }
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
2023-05-15 17:10:51 -05:00
panic = "abort"