[package]
edition = "2021"
rust-version = "1.86"
name = "bijux-dag-cli"
version = "0.4.1"
authors = ["Bijan Mousavi <bijan@bijux.io>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Installable command-line package for validating, running, replaying, and inspecting Bijux DAG graphs."
homepage = "https://bijux.io/bijux-core/bijux-dag/"
documentation = "https://bijux.io/bijux-core/bijux-dag/packages/bijux-dag-cli/"
readme = "README.md"
keywords = [
"bijux",
"dag",
"cli",
"workflow",
"graphs",
]
categories = [
"command-line-interface",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/bijux/bijux-core"
[[bin]]
name = "bijux-dag"
path = "src/main.rs"
[[test]]
name = "contract_surface"
path = "tests/contract_surface.rs"
[[test]]
name = "demo_command_contract"
path = "tests/demo_command_contract.rs"
[[test]]
name = "routing"
path = "tests/routing.rs"
[[test]]
name = "schedule_contract_surface"
path = "tests/schedule_contract_surface.rs"
[[test]]
name = "smoke_pipeline"
path = "tests/smoke_pipeline.rs"
[dependencies.bijux-dag-app]
version = "0.4.1"
[dependencies.clap]
version = "4.5.51"
features = ["derive"]
[dependencies.clap_complete]
version = "4.6.5"
[dev-dependencies.serde_json]
version = "1.0.150"
features = ["std"]
default-features = false
[dev-dependencies.tempfile]
version = "3.23.0"
[lints.clippy]
bool_assert_comparison = "allow"
bool_to_int_with_if = "allow"
case_sensitive_file_extension_comparisons = "allow"
cast_lossless = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
collapsible_else_if = "allow"
collapsible_if = "allow"
const_is_empty = "allow"
default_trait_access = "allow"
doc_markdown = "allow"
enum_variant_names = "allow"
field_reassign_with_default = "allow"
filter_map_next = "allow"
float_cmp = "allow"
fn_params_excessive_bools = "allow"
format_push_string = "allow"
if_not_else = "allow"
if_same_then_else = "allow"
ignored_unit_patterns = "allow"
implicit_clone = "allow"
inefficient_to_string = "allow"
items_after_statements = "allow"
items_after_test_module = "allow"
iter_cloned_collect = "allow"
let_and_return = "allow"
manual_assert = "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"
match_wildcard_for_single_variants = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_borrow = "allow"
needless_pass_by_value = "allow"
needless_raw_string_hashes = "allow"
needless_return = "allow"
new_without_default = "allow"
no_effect_underscore_binding = "allow"
ptr_arg = "allow"
redundant_closure = "allow"
redundant_closure_for_method_calls = "allow"
redundant_else = "allow"
ref_option = "allow"
result_large_err = "allow"
semicolon_if_nothing_returned = "allow"
similar_names = "allow"
single_char_add_str = "allow"
single_char_pattern = "allow"
single_element_loop = "allow"
single_match = "allow"
single_match_else = "allow"
struct_excessive_bools = "allow"
struct_field_names = "allow"
too_many_arguments = "allow"
too_many_lines = "allow"
type_complexity = "allow"
unchecked_duration_subtraction = "allow"
uninlined_format_args = "allow"
unnecessary_get_then_check = "allow"
unnecessary_map_or = "allow"
unnecessary_wraps = "allow"
unnested_or_patterns = "allow"
unreadable_literal = "allow"
unused_self = "allow"
unusual_byte_groupings = "allow"
useless_vec = "allow"
vec_init_then_push = "allow"
wildcard_imports = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "allow"
unsafe_code = "forbid"
unused_crate_dependencies = "allow"