1
0
mirror of https://github.com/actix/examples synced 2024-11-23 14:31:07 +01:00

Restructure folders (#411)

This commit is contained in:
Daniel T. Rodrigues 2021-02-25 21:57:58 -03:00 committed by GitHub
parent 9db98162b2
commit c3407627d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
334 changed files with 127 additions and 120 deletions

55
Cargo.lock generated
View File

@ -946,7 +946,7 @@ dependencies = [
"memchr",
"num_cpus",
"once_cell",
"pin-project-lite 0.2.0",
"pin-project-lite 0.2.4",
"pin-utils",
"slab",
"wasm-bindgen-futures",
@ -2256,9 +2256,9 @@ dependencies = [
[[package]]
name = "futures"
version = "0.3.8"
version = "0.3.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b3b0c040a1fe6529d30b3c5944b280c7f0dcb2930d2c3062bca967b602583d0"
checksum = "7f55667319111d593ba876406af7c409c0ebb44dc4be6132a783ccf163ea14c1"
dependencies = [
"futures-channel",
"futures-core",
@ -2271,9 +2271,9 @@ dependencies = [
[[package]]
name = "futures-channel"
version = "0.3.8"
version = "0.3.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4b7109687aa4e177ef6fe84553af6280ef2778bdb7783ba44c9dc3399110fe64"
checksum = "8c2dd2df839b57db9ab69c2c9d8f3e8c81984781937fe2807dc6dcf3b2ad2939"
dependencies = [
"futures-core",
"futures-sink",
@ -2281,15 +2281,15 @@ dependencies = [
[[package]]
name = "futures-core"
version = "0.3.8"
version = "0.3.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "847ce131b72ffb13b6109a221da9ad97a64cbe48feb1028356b836b47b8f1748"
checksum = "15496a72fabf0e62bdc3df11a59a3787429221dd0710ba8ef163d6f7a9112c94"
[[package]]
name = "futures-executor"
version = "0.3.8"
version = "0.3.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4caa2b2b68b880003057c1dd49f1ed937e38f22fcf6c212188a121f08cf40a65"
checksum = "891a4b7b96d84d5940084b2a37632dd65deeae662c114ceaa2c879629c9c0ad1"
dependencies = [
"futures-core",
"futures-task",
@ -2298,9 +2298,9 @@ dependencies = [
[[package]]
name = "futures-io"
version = "0.3.8"
version = "0.3.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "611834ce18aaa1bd13c4b374f5d653e1027cf99b6b502584ff8c9a64413b30bb"
checksum = "d71c2c65c57704c32f5241c1223167c2c3294fd34ac020c807ddbe6db287ba59"
[[package]]
name = "futures-lite"
@ -2319,9 +2319,9 @@ dependencies = [
[[package]]
name = "futures-macro"
version = "0.3.8"
version = "0.3.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77408a692f1f97bcc61dc001d752e00643408fbc922e4d634c655df50d595556"
checksum = "ea405816a5139fb39af82c2beb921d52143f556038378d6db21183a5c37fbfb7"
dependencies = [
"proc-macro-hack",
"proc-macro2",
@ -2331,24 +2331,21 @@ dependencies = [
[[package]]
name = "futures-sink"
version = "0.3.8"
version = "0.3.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f878195a49cee50e006b02b93cf7e0a95a38ac7b776b4c4d9cc1207cd20fcb3d"
checksum = "85754d98985841b7d4f5e8e6fbfa4a4ac847916893ec511a2917ccd8525b8bb3"
[[package]]
name = "futures-task"
version = "0.3.8"
version = "0.3.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7c554eb5bf48b2426c4771ab68c6b14468b6e76cc90996f528c3338d761a4d0d"
dependencies = [
"once_cell",
]
checksum = "fa189ef211c15ee602667a6fcfe1c1fd9e07d42250d2156382820fba33c9df80"
[[package]]
name = "futures-util"
version = "0.3.8"
version = "0.3.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d304cff4a7b99cfb7986f7d43fbe93d175e72e704a8860787cc95e9ffd85cbd2"
checksum = "1812c7ab8aedf8d6f2701a43e1243acdbcc2b36ab26e2ad421eb99ac963d96d1"
dependencies = [
"futures-channel",
"futures-core",
@ -2357,7 +2354,7 @@ dependencies = [
"futures-sink",
"futures-task",
"memchr",
"pin-project 1.0.2",
"pin-project-lite 0.2.4",
"pin-utils",
"proc-macro-hack",
"proc-macro-nested",
@ -3895,9 +3892,9 @@ checksum = "c917123afa01924fc84bb20c4c03f004d9c38e5127e3c039bbf7f4b9c76a2f6b"
[[package]]
name = "pin-project-lite"
version = "0.2.0"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6b063f57ec186e6140e2b8b6921e5f1bd89c7356dda5b33acc5401203ca6131c"
checksum = "439697af366c49a6d0a010c56a0d97685bc140ce0d377b13a2ea2aa42d64a827"
[[package]]
name = "pin-utils"
@ -4332,7 +4329,7 @@ dependencies = [
"mime_guess",
"native-tls",
"percent-encoding",
"pin-project-lite 0.2.0",
"pin-project-lite 0.2.4",
"serde 1.0.117",
"serde_json",
"serde_urlencoded",
@ -4865,9 +4862,9 @@ dependencies = [
[[package]]
name = "signal-hook-registry"
version = "1.2.2"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce32ea0c6c56d5eacaeb814fbed9960547021d3edd010ded1425f180536b20ab"
checksum = "16f1d0fef1604ba8f7a073c7e701f213e056707210e9020af4528e0101ce11a6"
dependencies = [
"libc",
]
@ -5579,7 +5576,7 @@ checksum = "9f47026cdc4080c07e49b37087de021820269d996f581aac150ef9e5583eefe3"
dependencies = [
"cfg-if 1.0.0",
"log",
"pin-project-lite 0.2.0",
"pin-project-lite 0.2.4",
"tracing-attributes",
"tracing-core",
]

View File

@ -1,57 +1,57 @@
[workspace]
members = [
"async_data_factory",
"async_db",
"async_ex1",
"async_ex2",
"async-graphql-demo",
"async_pg",
"awc_https",
"basics",
"casbin",
"cookie-auth",
"cookie-session",
"diesel",
"docker_sample",
"error_handling",
"form",
"hello-world",
"http-proxy",
"json",
"json_decode_error",
"json_error",
"jsonrpc",
"juniper",
"juniper-advanced",
"middleware",
"multipart",
"multipart-s3",
"multipart-async-std",
"openssl",
"protobuf",
"r2d2",
"redis",
"redis-session",
"run-in-thread",
"rustls",
"rustls-client-cert",
"shutdown-server",
"server-sent-events",
"simple-auth-server",
"state",
"static_index",
"template_askama",
"template_handlebars",
"template_tera",
"template_tinytemplate",
"template_yarte",
"todo",
"udp-echo",
"unix-socket",
"web-cors/backend",
"websocket",
"websocket-autobahn",
"websocket-chat",
"websocket-chat-broker",
"websocket-tcp-chat"
"basics/basics",
"basics/docker_sample",
"basics/error_handling",
"basics/hello-world",
"basics/http-proxy",
"basics/json-validation",
"basics/middleware",
"basics/nested-routing",
"basics/run-in-thread",
"basics/shutdown-server",
"basics/state",
"basics/static_index",
"basics/todo",
"database_interactions/basic",
"database_interactions/diesel",
"database_interactions/pg",
"database_interactions/r2d2",
"database_interactions/redis",
"database_interactions/simple-auth-server",
"forms/form",
"forms/multipart",
"forms/multipart-async-std",
"forms/multipart-s3",
"graphql/graphql-demo",
"graphql/juniper",
"graphql/juniper-advanced",
"json/json",
"json/json_decode_error",
"json/json_error",
"json/jsonrpc",
"other/data_factory",
"other/protobuf",
"other/server-sent-events",
"other/udp-echo",
"other/unix-socket",
"security/awc_https",
"security/casbin",
"security/openssl",
"security/rustls",
"security/rustls-client-cert",
"security/web-cors/backend",
"session/cookie-auth",
"session/cookie-session",
"session/redis-session",
"template_engines/askama",
"template_engines/handlebars",
"template_engines/tera",
"template_engines/tinytemplate",
"template_engines/yarte",
"websockets/autobahn",
"websockets/chat",
"websockets/chat-broker",
"websockets/tcp-chat",
"websockets/websocket",
]

View File

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

View File

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 32 KiB

View File

Before

Width:  |  Height:  |  Size: 8.7 KiB

After

Width:  |  Height:  |  Size: 8.7 KiB

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Some files were not shown because too many files have changed in this diff Show More