[dependencies.chaud-hot]
optional = true
version = "0.1"
[dependencies.chaud-macros]
version = "0.1"
[dev-dependencies.expect-test]
version = "1.5.1"
[dev-dependencies.walkdir]
version = "2.5.0"
[features]
silence-log-level-warning = ["chaud-hot?/silence-log-level-warning"]
unsafe-hot-reload = ["dep:chaud-hot", "chaud-macros/unsafe-hot-reload"]
[lib]
name = "chaud"
path = "src/lib.rs"
[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"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
categories = ["development-tools"]
description = """
A hot-reloading library for Cargo workspaces designed for ease of use. Unix only.
"""
edition = "2024"
keywords = ["chaud", "hot-reloading"]
license = "MIT OR Apache-2.0"
name = "chaud"
readme = "README.md"
repository = "https://github.com/TimNN/chaud"
rust-version = "1.86"
version = "0.1.0"
[package.metadata.docs.rs]
targets = []
[target."cfg(any())".dependencies.chaud-hot]
version = "0.1"
[[test]]
harness = false
name = "expansion"
path = "tests/expansion.rs"
[[test]]
harness = false
name = "selftest"
path = "tests/selftest.rs"