drop web-macros

This commit is contained in:
Nikolay Kim 2020-04-01 14:41:45 +06:00
parent c1607f1698
commit 5512e8d501
5 changed files with 2 additions and 13 deletions

View file

@ -6,7 +6,6 @@ members = [
"ntex-rt",
"ntex-rt-macros",
"ntex-service",
"ntex-macros",
]
[patch.crates-io]
@ -16,4 +15,3 @@ ntex-router = { path = "ntex-router" }
ntex-rt = { path = "ntex-rt" }
ntex-rt-macros = { path = "ntex-rt-macros" }
ntex-service = { path = "ntex-service" }
ntex-macros = { path = "ntex-macros" }

View file

@ -41,7 +41,6 @@ ntex-rt = "0.1"
ntex-rt-macros = "0.1"
ntex-router = "0.3"
ntex-service = "0.1"
ntex-macros = "0.1"
actix-threadpool = "0.3.1"
base64 = "0.12"

View file

@ -1,5 +1,5 @@
use ntex::http;
use ntex::web::{self, get, middleware, App, HttpRequest, HttpResponse, HttpServer};
use ntex::web::{self, middleware, App, HttpRequest, HttpResponse, HttpServer};
// #[get("/resource1/{name}/index.html")]
async fn index(req: HttpRequest, name: web::types::Path<String>) -> String {

View file

@ -1,6 +1,4 @@
use ntex::web::{
self, get, middleware, App, Error, HttpRequest, HttpResponse, HttpServer,
};
use ntex::web::{self, middleware, App, Error, HttpRequest, HttpResponse, HttpServer};
// #[get("/resource1/{name}/index.html")]
async fn index(req: HttpRequest, name: web::types::Path<String>) -> String {

View file

@ -91,12 +91,6 @@ pub mod test;
pub mod types;
mod util;
pub use ntex_macros::{
web_connect as connect, web_delete as delete, web_get as get, web_head as head,
web_options as options, web_patch as patch, web_post as post, web_put as put,
web_trace as trace,
};
pub use crate::http::Response as HttpResponse;
pub use crate::http::ResponseBuilder as HttpResponseBuilder;