[package]
edition = "2024"
name = "bnto-cli"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI for running .bnto.json recipes — compress images, clean CSVs, rename files"
homepage = "https://bnto.io"
readme = "README.md"
keywords = [
"cli",
"automation",
"workflow",
"pipeline",
"tool",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/Develonaut/bnto"
resolver = "2"
[[bin]]
name = "bnto"
path = "src/main.rs"
[[test]]
name = "cli_commands"
path = "tests/cli_commands.rs"
[[test]]
name = "golden_helpers"
path = "tests/golden_helpers.rs"
[[test]]
name = "golden_tests"
path = "tests/golden_tests.rs"
[[test]]
name = "recipe_tests"
path = "tests/recipe_tests.rs"
[dependencies.bnto-core]
version = "0.1.1"
[dependencies.bnto-engine]
version = "0.1.1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dev-dependencies.sha2]
version = "0.10"
[dev-dependencies.tempfile]
version = "3"