cat2text-rs/Cargo.toml
2025-01-15 08:53:36 -06:00

24 lines
563 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"
[dependencies]