mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-05 22:07:38 +03:00
Switch to 2021 edition (#172)
This commit is contained in:
parent
0c61a78d60
commit
29e04cf478
53 changed files with 54 additions and 81 deletions
|
@ -1,5 +1,4 @@
|
|||
use std::borrow::{Borrow, BorrowMut};
|
||||
use std::iter::{FromIterator, Iterator};
|
||||
use std::ops::{Deref, DerefMut, RangeBounds};
|
||||
use std::sync::atomic::Ordering::{Acquire, Relaxed, Release};
|
||||
use std::sync::atomic::{self, AtomicUsize};
|
||||
|
@ -4049,7 +4048,7 @@ fn abort() {
|
|||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use std::{collections::HashMap, convert::TryFrom};
|
||||
use std::collections::HashMap;
|
||||
|
||||
use super::*;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue