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

standardize binary names

This commit is contained in:
Rob Ede 2022-02-18 02:22:58 +00:00
parent cfb181ecf5
commit 6f1c9e2350
No known key found for this signature in database
GPG Key ID: 97C636207D3EF933
29 changed files with 10 additions and 10 deletions

View File

@ -6,15 +6,14 @@ members = [
"auth/redis-session", "auth/redis-session",
"auth/simple-auth-server", "auth/simple-auth-server",
"basics/basics", "basics/basics",
"basics/error_handling", "basics/error-handling",
"basics/hello-world", "basics/hello-world",
"basics/json-validation",
"basics/nested-routing", "basics/nested-routing",
"basics/state", "basics/state",
"basics/static_index", "basics/static-files",
"basics/todo", "basics/todo",
"cors/backend", "cors/backend",
"data_factory", "data-factory",
# example uses incompatible libsqlite-sys to other examples # example uses incompatible libsqlite-sys to other examples
# "databases/diesel", # "databases/diesel",
"databases/mongodb", "databases/mongodb",
@ -29,13 +28,14 @@ members = [
"graphql/juniper-advanced", "graphql/juniper-advanced",
"graphql/juniper", "graphql/juniper",
"http-proxy", "http-proxy",
"https-tls/awc_https", "https-tls/awc-https",
"https-tls/openssl-auto-le", "https-tls/openssl-auto-le",
"https-tls/openssl", "https-tls/openssl",
"https-tls/rustls-client-cert", "https-tls/rustls-client-cert",
"https-tls/rustls", "https-tls/rustls",
"json/json_decode_error", "json/json-decode-error",
"json/json_error", "json/json-error",
"json/json-validation",
"json/json", "json/json",
"json/jsonrpc", "json/jsonrpc",
"middleware/middleware-ext-mut", "middleware/middleware-ext-mut",

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

View File

@ -5,7 +5,7 @@
### Server ### Server
```shell ```shell
cd other/protobuf cd protobuf
cargo run cargo run
``` ```

View File

@ -2,7 +2,7 @@
Example of server-sent events, aka `EventSource`, with actix web. Example of server-sent events, aka `EventSource`, with actix web.
```sh ```sh
cd other/server-sent-events cd server-sent-events
cargo run cargo run
``` ```

View File

@ -1,7 +1,7 @@
## Unix domain socket example ## Unix domain socket example
```bash ```bash
cd other/unix-socket cd unix-socket
cargo run cargo run
# in another shell # in another shell