mirror of
https://github.com/fafhrd91/actix-web
synced 2025-06-25 06:39:22 +02:00
rust 1.31.0 compatibility
This commit is contained in:
@ -1,5 +1,12 @@
|
||||
# Changes
|
||||
|
||||
## [0.1.0-alpha.3] - 2019-04-xx
|
||||
|
||||
### Fixed
|
||||
|
||||
* Rust 1.31.0 compatibility
|
||||
|
||||
|
||||
## [0.1.0-alpha.2] - 2019-03-29
|
||||
|
||||
### Added
|
||||
|
@ -59,7 +59,7 @@ mod parse;
|
||||
#[macro_use]
|
||||
mod secure;
|
||||
#[cfg(feature = "secure-cookies")]
|
||||
pub use secure::*;
|
||||
pub use self::secure::*;
|
||||
|
||||
use std::borrow::Cow;
|
||||
use std::fmt;
|
||||
@ -68,11 +68,11 @@ use std::str::FromStr;
|
||||
use percent_encoding::{percent_encode, USERINFO_ENCODE_SET};
|
||||
use time::{Duration, Tm};
|
||||
|
||||
pub use builder::CookieBuilder;
|
||||
pub use draft::*;
|
||||
pub use jar::{CookieJar, Delta, Iter};
|
||||
use parse::parse_cookie;
|
||||
pub use parse::ParseError;
|
||||
pub use self::builder::CookieBuilder;
|
||||
pub use self::draft::*;
|
||||
pub use self::jar::{CookieJar, Delta, Iter};
|
||||
use self::parse::parse_cookie;
|
||||
pub use self::parse::ParseError;
|
||||
|
||||
#[derive(Debug, Clone)]
|
||||
enum CookieStr {
|
||||
|
Reference in New Issue
Block a user