temporary allows

This commit is contained in:
hinto.janai 2024-09-08 18:06:01 -04:00
parent 2d52c26bdc
commit ca13b40e71
No known key found for this signature in database
GPG key ID: D47CE05FA175A499
2 changed files with 22 additions and 0 deletions

View file

@ -1,5 +1,16 @@
#![doc = include_str!("../README.md")]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![allow(
unused_imports,
unreachable_pub,
unused_crate_dependencies,
dead_code,
unused_variables,
clippy::needless_pass_by_value,
clippy::unused_async,
unreachable_code,
reason = "TODO: remove after cuprated RpcHandler impl"
)]
mod constants;
mod defaults;

View file

@ -3,6 +3,17 @@
// See `cuprate-database` for reasoning.
clippy::significant_drop_tightening
)]
#![allow(
unused_imports,
unreachable_pub,
unused_crate_dependencies,
dead_code,
unused_variables,
clippy::needless_pass_by_value,
clippy::unused_async,
unreachable_code,
reason = "TODO: remove after cuprated RpcHandler impl"
)]
// Only allow building 64-bit targets.
//