Switch to 2021 edition (#172)

This commit is contained in:
Nikolay Kim 2023-02-03 00:30:07 +06:00 committed by GitHub
parent 0c61a78d60
commit 29e04cf478
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
53 changed files with 54 additions and 81 deletions

View file

@ -1,8 +1,5 @@
use std::task::{Context, Poll};
use std::{
cell::Cell, convert::Infallible, convert::TryInto, marker, time::Duration,
time::Instant,
};
use std::{cell::Cell, convert::Infallible, marker, time::Duration, time::Instant};
use ntex_service::{Service, ServiceFactory};

View file

@ -1,4 +1,4 @@
use std::{convert::TryInto, ops};
use std::ops;
/// A Duration type to represent a span of time.
///