[package]
edition = "2024"
name = "cato"
version = "0.2.0"
authors = ["Alex Campbell alex.m.campbell@hotmail.com"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A file catenation tool written in Rust."
homepage = "https://github.com/notnotnull/cato"
readme = "README.md"
keywords = [
"cli",
"cat",
"cato",
]
categories = ["command-line-utilities"]
license = "GPL-3.0-only"
repository = "https://github.com/notnotnull/cato"
[[bin]]
name = "cato"
path = "src/main.rs"
[[test]]
name = "cato"
path = "tests/cato.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.0"
features = ["derive"]
[dev-dependencies.assert_cmd]
version = "2.0.14"
[dev-dependencies.predicates]
version = "3.1.0"