movie-rename/Cargo.toml

28 lines
783 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"
version = "1.2.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]
torrent-name-parser = "0.11.0"
tmdb = "3.0.0"
2023-02-07 18:16:20 -06:00
inquire = "0.5.3"
load_file = "1.0.1"
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"