mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +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
|
@ -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"
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
use std::collections::{self, hash_map, hash_map::Entry, VecDeque};
|
||||
use std::{convert::TryFrom, iter::FromIterator};
|
||||
|
||||
use crate::{HeaderName, HeaderValue};
|
||||
|
||||
|
|
|
@ -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};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue