21 lines
457 B
TOML
21 lines
457 B
TOML
[package]
|
|
name = "comic-book-binder"
|
|
version = "0.1.0"
|
|
authors = ["Zykino <Zykino@users.noreply.github.com>"]
|
|
description = "A helper to manage your comic books and others sorted list of files."
|
|
license = "GPL-3.0-or-later"
|
|
keywords = ["cbr", "cbt", "cbz"]
|
|
categories = ["command-line-utilities", "filesystem", "value-formatting"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "cbb"
|
|
|
|
[[bin]]
|
|
name = "cbb"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
regex = "1"
|
|
structopt = "0.2"
|