[package]
edition = "2021"
rust-version = "1.91"
name = "headwater-cli"
version = "0.4.0"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The headwater binary, and what CI runs. headwater --help is the verb list"
readme = false
license = "Apache-2.0"
repository = "https://github.com/headwater-ai/headwater"
[features]
default = ["fetch"]
fetch = ["dep:headwater-fetch"]
[lib]
name = "headwater_cli"
path = "src/lib.rs"
[[bin]]
name = "headwater"
path = "src/main.rs"
[[test]]
name = "adoption"
path = "tests/adoption.rs"
[[test]]
name = "blank_facet"
path = "tests/blank_facet.rs"
[[test]]
name = "classify"
path = "tests/classify.rs"
[[test]]
name = "completions"
path = "tests/completions.rs"
[[test]]
name = "conformance_lock"
path = "tests/conformance_lock.rs"
[[test]]
name = "consumer_surface"
path = "tests/consumer_surface.rs"
[[test]]
name = "diff"
path = "tests/diff.rs"
[[test]]
name = "export"
path = "tests/export.rs"
[[test]]
name = "fixed_name_shelf"
path = "tests/fixed_name_shelf.rs"
[[test]]
name = "help"
path = "tests/help.rs"
[[test]]
name = "init"
path = "tests/init.rs"
[[test]]
name = "interface_contract"
path = "tests/interface_contract.rs"
[[test]]
name = "interface_options"
path = "tests/interface_options.rs"
[[test]]
name = "json"
path = "tests/json.rs"
[[test]]
name = "merge_driver"
path = "tests/merge_driver.rs"
[[test]]
name = "migration"
path = "tests/migration.rs"
[[test]]
name = "network_boundary"
path = "tests/network_boundary.rs"
[[test]]
name = "publish"
path = "tests/publish.rs"
[[test]]
name = "publish_order"
path = "tests/publish_order.rs"
[[test]]
name = "route"
path = "tests/route.rs"
[[test]]
name = "scope"
path = "tests/scope.rs"
[[test]]
name = "stray_generated"
path = "tests/stray_generated.rs"
[[test]]
name = "sweep"
path = "tests/sweep.rs"
[[test]]
name = "taxonomy_graph"
path = "tests/taxonomy_graph.rs"
[[test]]
name = "unwritable"
path = "tests/unwritable.rs"
[[test]]
name = "validate"
path = "tests/validate.rs"
[[test]]
name = "verbs"
path = "tests/verbs.rs"
[[test]]
name = "width"
path = "tests/width.rs"
[[test]]
name = "wiring"
path = "tests/wiring.rs"
[dependencies.clap]
version = "4.6.6"
features = ["derive"]
[dependencies.clap_complete]
version = "4.6.9"
default-features = false
[dependencies.headwater-adapter]
version = "0.4.0"
[dependencies.headwater-audit]
version = "0.4.0"
[dependencies.headwater-census]
version = "0.4.0"
[dependencies.headwater-check]
version = "0.4.0"
[dependencies.headwater-compat]
version = "0.4.0"
[dependencies.headwater-conformance]
version = "0.4.0"
[dependencies.headwater-embed]
version = "0.4.0"
[dependencies.headwater-fetch]
version = "0.4.0"
optional = true
[dependencies.headwater-generate]
version = "0.4.0"
[dependencies.headwater-graph]
version = "0.4.0"
[dependencies.headwater-hash]
version = "0.4.0"
[dependencies.headwater-import]
version = "0.4.0"
[dependencies.headwater-lock]
version = "0.4.0"
[dependencies.headwater-probe]
version = "0.4.0"
[dependencies.headwater-query]
version = "0.4.0"
[dependencies.headwater-resolve]
version = "0.4.0"
[dependencies.headwater-scaffold]
version = "0.4.0"
[dependencies.headwater-sweep]
version = "0.4.0"
[dependencies.headwater-vcs]
version = "0.4.0"
[dependencies.headwater-verbs]
version = "0.4.0"
[dependencies.headwater-yaml]
version = "0.4.0"
[dev-dependencies.zip]
version = "5.1.1"
features = ["deflate-flate2"]
default-features = false
[lints.clippy]
dbg_macro = "deny"
exit = "deny"
explicit_iter_loop = "deny"
filetype_is_file = "deny"
implicit_clone = "deny"
lossy_float_literal = "deny"
manual_assert_eq = "deny"
manual_let_else = "deny"
mem_forget = "deny"
needless_raw_string_hashes = "deny"
rc_buffer = "deny"
semicolon_if_nothing_returned = "deny"
single_char_pattern = "deny"
stable_sort_primitive = "deny"
todo = "deny"
unimplemented = "deny"
uninlined_format_args = "deny"
[lints.rust]
trivial_numeric_casts = "deny"
unreachable_pub = "deny"
unsafe_code = "forbid"
unused_lifetimes = "deny"
variant_size_differences = "deny"