[package]
edition = "2024"
rust-version = "1.87"
name = "gibblox-cli"
version = "0.0.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI for reading and composing gibblox block pipelines."
readme = false
license = "GPL-3.0-only"
repository = "https://github.com/samcday/gibblox"
resolver = "2"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/{ version }/{ bin }-{ target }.tar.gz"
pkg-fmt = "tgz"
bin-dir = "{ bin }{ binary-ext }"
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
pkg-url = "{ repo }/releases/download/{ version }/{ bin }-{ target }.zip"
pkg-fmt = "zip"
[[bin]]
name = "gibblox"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0.95"
[dependencies.clap]
version = "4.5.32"
features = ["derive"]
[dependencies.gibblox-core]
version = "0.0.1"
features = ["std"]
[dependencies.gibblox-pipeline]
version = "0.0.1"
features = ["std"]
[dependencies.serde_yaml]
version = "0.9.34"
[dependencies.tokio]
version = "1.49.0"
features = [
"macros",
"rt-multi-thread",
]
[dependencies.tracing-subscriber]
version = "0.3.20"
features = [
"env-filter",
"fmt",
]