-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (24 loc) · 927 Bytes
/
Cargo.toml
File metadata and controls
26 lines (24 loc) · 927 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "rplexfmtr"
version = "1.0.6"
edition = "2021"
authors = ["nikolaizombie1 <fabio.matos999@gmail.com>"]
license = "GPL-3.0-only"
description = "A command line tool to batch rename media files for Plex® Media Server TV Show."
readme = "README.md"
homepage = "https://github.com/nikolaizombie1/rplexfmtr"
repository = "https://github.com/nikolaizombie1/rplexfmtr"
keywords = ["cli","rename","batch","Plex"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.71"
clap = { version = "4.3.4", features = ["derive"] }
clearscreen = "2.0.1"
colored = "2.0.0"
natord = "1.0.9"
once_cell = "1.18.0"
regex = "1.8.4"
sqlx = { version = "0.6.2", features = ["runtime-tokio-native-tls", "sqlite"] }
tabled = { version = "0.12.2", features = ["color"] }
tokio = { version = "1.20.0", features = ["macros"]}