[package]
edition = "2021"
rust-version = "1.85"
name = "bijux-cli"
version = "0.3.3"
authors = ["Bijan Mousavi <mousavi.bijan@gmail.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line runtime for automation, plugin-driven tools, and interactive workflows with structured output."
homepage = "https://bijux.github.io/bijux-cli/"
documentation = "https://bijux.github.io/bijux-cli/04-architecture/runtime-and-distribution/"
readme = "README.md"
keywords = [
"bijux",
"cli",
"automation",
"plugins",
"diagnostics",
]
categories = [
"command-line-interface",
"development-tools",
"config",
]
license = "Apache-2.0"
repository = "https://github.com/bijux/bijux-cli"
[lib]
name = "bijux_cli"
path = "src/lib.rs"
[[bin]]
name = "bijux"
path = "src/bin/bijux.rs"
[[test]]
name = "architecture"
path = "tests/architecture.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "routing"
path = "tests/routing.rs"
[dependencies.anyhow]
version = "1.0.100"
[dependencies.clap]
version = "4.5.51"
features = ["std"]
[dependencies.futures]
version = "0.3.31"
[dependencies.schemars]
version = "0.8.22"
features = ["derive"]
[dependencies.semver]
version = "1.0.27"
features = ["std"]
default-features = false
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.145"
features = ["std"]
default-features = false
[dependencies.serde_yaml]
version = "0.9.34"
[dependencies.sha2]
version = "0.10.9"
[dependencies.shlex]
version = "1.3.0"
[dependencies.thiserror]
version = "2.0.17"
[dev-dependencies.libc]
version = "0.2.177"
[dev-dependencies.proptest]
version = "1.6.0"
[dev-dependencies.shlex]
version = "1.3.0"
[dev-dependencies.tempfile]
version = "3.23.0"
[dev-dependencies.thiserror]
version = "2.0.17"
[build-dependencies.semver]
version = "1.0.27"
features = ["std"]
default-features = false
[lints.clippy]
cast_lossless = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_sign_loss = "allow"
collapsible_if = "allow"
doc_markdown = "allow"
format_push_string = "allow"
if_not_else = "allow"
if_same_then_else = "allow"
implicit_clone = "allow"
items_after_statements = "allow"
manual_let_else = "allow"
manual_string_new = "allow"
many_single_char_names = "allow"
map_unwrap_or = "allow"
match_like_matches_macro = "allow"
match_same_arms = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
needless_borrow = "allow"
needless_pass_by_value = "allow"
ptr_arg = "allow"
redundant_closure_for_method_calls = "allow"
result_large_err = "allow"
semicolon_if_nothing_returned = "allow"
similar_names = "allow"
single_char_pattern = "allow"
single_match_else = "allow"
too_many_lines = "allow"
type_complexity = "allow"
uninlined_format_args = "allow"
unnested_or_patterns = "allow"
unreadable_literal = "allow"
unused_self = "allow"
unusual_byte_groupings = "allow"
useless_vec = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"
unused_crate_dependencies = "allow"