static-serve/Cargo.toml
Paolo Barbolini 7dc755dde4 First commit
2025-02-20 17:31:04 +01:00

24 lines
522 B
TOML

[package]
name = "static-serve"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
[dependencies]
[lints.rust]
unsafe_code = "deny"
unreachable_pub = "deny"
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
module_name_repetitions = "allow"
await_holding_refcell_ref = "deny"
map_unwrap_or = "warn"
needless_lifetimes = "warn"
needless_raw_string_hashes = "warn"
redundant_closure_for_method_calls = "warn"
semicolon_if_nothing_returned = "warn"
str_to_string = "warn"
clone_on_ref_ptr = "warn"