[package]
edition = "2024"
rust-version = "1.86"
name = "chaud-cli"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Utilities for working with Chaud, a hot-reloading library for Cargo workspaces.
"""
readme = "README.md"
keywords = [
"chaud",
"hot-reloading",
]
categories = [
"development-tools",
"development-tools::cargo-plugins",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/TimNN/chaud"
[lib]
name = "chaud_cli"
path = "src/lib.rs"
[[bin]]
name = "cargo-chaud"
path = "src/bin/cargo-chaud.rs"
[[bin]]
name = "chaud-rustc"
path = "src/bin/chaud-rustc.rs"
[dependencies.anyhow]
version = "1.0.98"
[dependencies.lexopt]
version = "0.3.1"
[dependencies.shlex]
version = "1.3.0"
[dev-dependencies.pretty_assertions]
version = "1.4.1"
[lints.clippy]
bool_to_int_with_if = "allow"
case_sensitive_file_extension_comparisons = "allow"
expect_used = "warn"
field_reassign_with_default = "allow"
ignored_unit_patterns = "allow"
indexing_slicing = "warn"
match_bool = "allow"
match_same_arms = "allow"
match_wildcard_for_single_variants = "allow"
multiple_unsafe_ops_per_block = "warn"
needless_raw_string_hashes = "allow"
panic = "warn"
redundant_closure_for_method_calls = "allow"
self_named_module_files = "warn"
single_match_else = "allow"
struct_field_names = "allow"
undocumented_unsafe_blocks = "warn"
unimplemented = "warn"
unnecessary_debug_formatting = "allow"
unreachable = "warn"
unused_trait_names = "warn"
unwrap_used = "forbid"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_op_in_unsafe_fn = "forbid"