mirror of
https://github.com/hinto-janai/cuprate.git
synced 2024-11-17 00:07:53 +00:00
temporary allow
s
This commit is contained in:
parent
2d52c26bdc
commit
ca13b40e71
2 changed files with 22 additions and 0 deletions
|
@ -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;
|
||||
|
|
|
@ -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.
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue