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

@ -9,7 +9,7 @@ repository = "https://github.com/ntex-rs/ntex.git"
documentation = "https://docs.rs/ntex-http/"
categories = ["network-programming", "asynchronous"]
license = "MIT"
edition = "2018"
edition = "2021"
[lib]
name = "ntex_http"

View file

@ -1,5 +1,4 @@
use std::collections::{self, hash_map, hash_map::Entry, VecDeque};
use std::{convert::TryFrom, iter::FromIterator};
use crate::{HeaderName, HeaderValue};

View file

@ -4,7 +4,7 @@
clippy::no_effect,
clippy::missing_safety_doc
)]
use std::{cmp, convert::TryFrom, error::Error, fmt, str, str::FromStr};
use std::{cmp, error::Error, fmt, str, str::FromStr};
use ntex_bytes::{ByteString, Bytes};