Skip to content

Commit 904cf6a

Browse files
committed
Remove rust_2018_idioms for more modern Code
This will allow less unnecessary lifetimes in function signatures (instead of enforcing all)
1 parent 27f85b3 commit 904cf6a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/but-rebase/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! An API for an interactive rebases, suitable for interactive, UI driven, and programmatic use.
22
//!
33
//! It will only affect the commit-graph, and never the alter the worktree in any way.
4-
#![deny(rust_2018_idioms, missing_docs)]
4+
#![deny(missing_docs)]
55

66
use crate::commit::DateMode;
77
use anyhow::{Context, Ok, Result, anyhow, bail};

crates/but-testsupport/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//! Utilities for testing.
2-
#![deny(rust_2018_idioms, missing_docs)]
2+
#![deny(missing_docs)]
33

44
use gix::Repository;
55
use gix::bstr::{BStr, ByteSlice};

0 commit comments

Comments
 (0)