File tree Expand file tree Collapse file tree 5 files changed +639
-7
lines changed Expand file tree Collapse file tree 5 files changed +639
-7
lines changed Original file line number Diff line number Diff line change @@ -22,18 +22,21 @@ unstable = []
22
22
hyperium_http = [" http" ]
23
23
24
24
[dependencies ]
25
- anyhow = " 1.0.26"
26
- cookie = " 0.12.0"
27
- infer = " 0.1.2"
28
- omnom = " 2.1.1"
29
- pin-project-lite = " 0.1.0"
30
- url = " 2.1.0"
31
25
32
26
# Note(yoshuawuyts): used for async_std's `channel` only; use "core" once possible.
33
27
async-std = { version = " 1.4.0" , features = [" unstable" ] }
34
28
35
29
# features: hyperium/http
36
30
http = { version = " 0.2.0" , optional = true }
37
31
32
+ anyhow = " 1.0.26"
33
+ cookie = " 0.12.0"
34
+ infer = " 0.1.2"
35
+ omnom = " 2.1.1"
36
+ pin-project-lite = " 0.1.0"
37
+ url = " 2.1.0"
38
+ serde_json = " 1.0.51"
39
+ serde = { version = " 1.0" , features = [" derive" ] }
40
+
38
41
[dev-dependencies ]
39
42
http = " 0.2.0"
Original file line number Diff line number Diff line change 93
93
//! differently. But as a rule: if you know the size of the body, it's usually more efficient to
94
94
//! declare it up front. But if you don't, things will still work.
95
95
96
- #![ forbid( rust_2018_idioms) ]
97
96
#![ deny( missing_debug_implementations, nonstandard_style) ]
98
97
#![ warn( missing_docs, unreachable_pub) ]
99
98
#![ cfg_attr( test, deny( warnings) ) ]
@@ -164,6 +163,8 @@ pub use crate::cookies::Cookie;
164
163
#[ doc( inline) ]
165
164
pub mod trailers;
166
165
166
+ pub mod security;
167
+
167
168
#[ cfg( feature = "hyperium_http" ) ]
168
169
mod hyperium_http;
169
170
You can’t perform that action at this time.
0 commit comments