[package]
edition = "2024"
rust-version = "1.93.1"
name = "repobin"
version = "0.1.0-alpha.1"
build = false
include = [
"src/**",
"Cargo.toml",
"Cargo.lock",
"README.md",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Experimental repo-local Bazel command dispatcher; API and behavior may change without notice"
homepage = "https://github.com/spinyfin/mono"
documentation = "https://docs.rs/repobin"
readme = "README.md"
keywords = [
"bazel",
"cli",
"repository",
"tooling",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/spinyfin/mono"
resolver = "2"
[lib]
name = "repobin"
path = "src/lib.rs"
[[bin]]
name = "repobin"
path = "src/main.rs"
[dependencies.clap]
version = "4.5.39"
features = ["derive"]
[dependencies.serde]
version = "1.0.219"
features = ["derive"]
[dependencies.thiserror]
version = "1.0"
[dependencies.toml]
version = "1.0.7"
[dev-dependencies.tempfile]
version = "3.25.0"