1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-08-21 21:25:36 +02:00

Private serde fork (#390)

* Fork serde_urlencoded

* Apply enum PR https://github.com/nox/serde_urlencoded/pull/30

* Add test to verify enum in query

* Docs are updated to show example of how to use enum.
This commit is contained in:
Douman
2018-07-13 09:59:09 +03:00
committed by GitHub
parent 4395add1c7
commit 7d753eeb8c
11 changed files with 1595 additions and 8 deletions

View File

@@ -133,7 +133,6 @@ extern crate num_cpus;
#[macro_use]
extern crate percent_encoding;
extern crate serde_json;
extern crate serde_urlencoded;
extern crate smallvec;
#[macro_use]
extern crate actix as actix_inner;
@@ -152,6 +151,7 @@ extern crate openssl;
#[cfg(feature = "openssl")]
extern crate tokio_openssl;
mod serde_urlencoded;
mod application;
mod body;
mod context;