[package]
edition = "2024"
name = "cut"
version = "0.2.0"
build = false
include = [
"src/",
"README.md",
"CHANGELOG.md",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Utilities."
readme = "README.md"
keywords = ["utilities"]
categories = [
"no-std",
"no-std::no-alloc",
"rust-patterns",
]
license = "GPL-3.0-only"
repository = "https://github.com/ZenPZero/cut"
[features]
all = [
"cli",
"macros",
]
alloc = []
cli = []
default = [
"alloc",
"all",
"unstable",
]
macros = []
unstable = ["unstable-cli-parse-args"]
unstable-cli-parse-args = [
"cli",
"alloc",
]
[lib]
name = "cut"
path = "src/lib.rs"