mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 04:47:39 +03:00
drop web-macros
This commit is contained in:
parent
c1607f1698
commit
5512e8d501
5 changed files with 2 additions and 13 deletions
|
@ -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" }
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue