From ffb20a1b202132705ed7c24d641d467094c9d724 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Wed, 2 Feb 2022 02:03:54 +0000 Subject: [PATCH] move http-proxy to other --- Cargo.toml | 16 ++++++++-------- {basics => other}/http-proxy/Cargo.toml | 0 {basics => other}/http-proxy/README.md | 0 {basics => other}/http-proxy/src/main.rs | 0 4 files changed, 8 insertions(+), 8 deletions(-) rename {basics => other}/http-proxy/Cargo.toml (100%) rename {basics => other}/http-proxy/README.md (100%) rename {basics => other}/http-proxy/src/main.rs (100%) diff --git a/Cargo.toml b/Cargo.toml index 3fe4c5ac..094e01b3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,11 +4,10 @@ members = [ "basics/docker_sample", "basics/error_handling", "basics/hello-world", - "basics/http-proxy", "basics/json-validation", - "basics/middleware", - "basics/middleware-http-to-https", "basics/middleware-ext-mut", + "basics/middleware-http-to-https", + "basics/middleware", "basics/nested-routing", "basics/run-in-thread", "basics/shutdown-server", @@ -24,24 +23,25 @@ members = [ "database_interactions/simple-auth-server", "database_interactions/sqlx_todo", "forms/form", - "forms/multipart", "forms/multipart-s3", + "forms/multipart", "graphql/graphql-demo", - "graphql/juniper", "graphql/juniper-advanced", - "json/json", + "graphql/juniper", "json/json_decode_error", "json/json_error", + "json/json", "json/jsonrpc", "other/data_factory", + "other/http-proxy", "other/protobuf", "other/server-sent-events", "other/unix-socket", "security/awc_https", "security/casbin", "security/openssl", - "security/rustls", "security/rustls-client-cert", + "security/rustls", "security/web-cors/backend", "session/cookie-auth", "session/cookie-session", @@ -52,8 +52,8 @@ members = [ "template_engines/tinytemplate", "template_engines/yarte", "websockets/autobahn", - "websockets/chat", "websockets/chat-broker", + "websockets/chat", "websockets/tcp-chat", "websockets/websocket", ] diff --git a/basics/http-proxy/Cargo.toml b/other/http-proxy/Cargo.toml similarity index 100% rename from basics/http-proxy/Cargo.toml rename to other/http-proxy/Cargo.toml diff --git a/basics/http-proxy/README.md b/other/http-proxy/README.md similarity index 100% rename from basics/http-proxy/README.md rename to other/http-proxy/README.md diff --git a/basics/http-proxy/src/main.rs b/other/http-proxy/src/main.rs similarity index 100% rename from basics/http-proxy/src/main.rs rename to other/http-proxy/src/main.rs