diff --git a/Cargo.toml b/Cargo.toml index 3fe4c5a..094e01b 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