diff options
| author | Fuwn <[email protected]> | 2023-04-16 15:12:19 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-04-16 15:12:19 -0700 |
| commit | e65d780247888b12217abfaca807e180f1e0eb33 (patch) | |
| tree | 0b831d2e3ab70d10e06a0b2b569d20eb928ccc50 /src/main.rs | |
| parent | chore(robots): remove unused module (diff) | |
| download | locus-e65d780247888b12217abfaca807e180f1e0eb33.tar.xz locus-e65d780247888b12217abfaca807e180f1e0eb33.zip | |
deps(rust): bump to nightly-2023-04-15
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index faeddcc..224583c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -16,7 +16,7 @@ // Copyright (C) 2022-2022 Fuwn <[email protected]> // SPDX-License-Identifier: GPL-3.0-only -#![feature(const_extern_fn, is_some_with, once_cell)] +#![feature(const_extern_fn)] #![deny( warnings, nonstandard_style, @@ -27,7 +27,7 @@ )] #![deny(clippy::all, clippy::nursery, clippy::pedantic)] #![recursion_limit = "128"] -#![allow(clippy::cast_precision_loss)] +#![allow(clippy::cast_precision_loss, clippy::significant_drop_tightening)] mod macros; mod modules; |