diff options
author | Martin Fischer <martin@push-f.com> | 2021-04-09 12:32:01 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2021-04-09 12:49:02 +0200 |
commit | 9df4a6c0b55b2e680eca4e89489ad4c684bfb127 (patch) | |
tree | 9d95f03bd52509bb29b76ad9ed21f3d796272619 /examples | |
parent | bfeddf5d15ddaa9937ceeba04678ad6c4a4e8aea (diff) |
make hyper dependency optional
Diffstat (limited to 'examples')
-rw-r--r-- | examples/form/Cargo.toml | 2 | ||||
-rw-r--r-- | examples/form/src/main.rs | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/examples/form/Cargo.toml b/examples/form/Cargo.toml index c6eb1c3..69901c5 100644 --- a/examples/form/Cargo.toml +++ b/examples/form/Cargo.toml @@ -9,7 +9,7 @@ publish = false [dependencies] hyper = { version = "0.14", features = ["full"] } -sputnik = {path = "../../"} +sputnik = { path = "../../", features = ["hyper_body"] } serde = { version = "1.0", features = ["derive"] } tokio = { version = "1", features = ["full"] } thiserror = "1.0"
\ No newline at end of file diff --git a/examples/form/src/main.rs b/examples/form/src/main.rs index e354f9f..9e6748e 100644 --- a/examples/form/src/main.rs +++ b/examples/form/src/main.rs @@ -4,8 +4,8 @@ use hyper::{Method, Server, StatusCode, Body}; use hyper::http::request::Parts; use hyper::http::response::Builder; use serde::Deserialize; -use sputnik::{mime, request::{SputnikParts, SputnikBody}, response::SputnikBuilder}; -use sputnik::request::FormError; +use sputnik::{mime, request::SputnikParts, response::SputnikBuilder}; +use sputnik::hyper_body::{SputnikBody, FormError}; type Response = hyper::Response<Body>; |