29 lines
750 B
TOML
29 lines
750 B
TOML
[package]
|
|
name = "cat2text"
|
|
version = "0.1.3"
|
|
edition = "2021"
|
|
license = "GPL-3.0-or-later"
|
|
description = "A port of Cat2Text to Rust, with extra functionality, better documentation, and support for using it as a library as well."
|
|
readme = "README.md"
|
|
repository = "https://git.askiiart.net/askiiart/cat2text-rs"
|
|
authors = ["askiiart <mail@askiiart.net>"]
|
|
categories = ["encoding"]
|
|
keywords = ["base4", "meow", "base16"]
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
|
|
[lib]
|
|
name = "cat2text"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "cat2text"
|
|
path = "src/main.rs"
|
|
|
|
[features]
|
|
bin = ["dep:clap", "dep:clap_complete"]
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5.26", features = ["derive", "cargo"], optional = true }
|
|
clap_complete = { version = "4.5.42", optional = true }
|