1
0
mirror of https://github.com/actix/examples synced 2024-11-23 22:41:07 +01:00
examples/Cargo.toml

59 lines
1.5 KiB
TOML
Raw Normal View History

2018-04-13 21:32:15 +02:00
[workspace]
members = [
2021-02-26 01:57:58 +01:00
"basics/basics",
"basics/docker_sample",
"basics/error_handling",
"basics/hello-world",
"basics/json-validation",
"basics/middleware-ext-mut",
2022-02-02 03:03:54 +01:00
"basics/middleware-http-to-https",
"basics/middleware",
2021-02-26 01:57:58 +01:00
"basics/nested-routing",
"basics/shutdown-server",
"basics/state",
"basics/static_index",
"basics/todo",
"database_interactions/basic",
2022-02-06 09:31:17 +01:00
# example uses incompatible libsqlite-sys to other examples
# "database_interactions/diesel",
"database_interactions/mongodb",
2021-02-26 01:57:58 +01:00
"database_interactions/pg",
"database_interactions/redis",
"database_interactions/simple-auth-server",
"forms/form",
"forms/multipart-s3",
2022-02-02 03:03:54 +01:00
"forms/multipart",
2021-02-26 01:57:58 +01:00
"graphql/graphql-demo",
"graphql/juniper-advanced",
2022-02-02 03:03:54 +01:00
"graphql/juniper",
2021-02-26 01:57:58 +01:00
"json/json_decode_error",
"json/json_error",
2022-02-02 03:03:54 +01:00
"json/json",
2021-02-26 01:57:58 +01:00
"json/jsonrpc",
"other/data_factory",
2022-02-02 03:03:54 +01:00
"other/http-proxy",
2021-02-26 01:57:58 +01:00
"other/protobuf",
2022-02-02 03:09:06 +01:00
"other/run-in-thread",
2021-02-26 01:57:58 +01:00
"other/server-sent-events",
"other/unix-socket",
"security/awc_https",
"security/casbin",
"security/openssl",
"security/rustls-client-cert",
2022-02-02 03:03:54 +01:00
"security/rustls",
2021-02-26 01:57:58 +01:00
"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-broker",
2022-02-02 03:03:54 +01:00
"websockets/chat",
2021-02-26 01:57:58 +01:00
"websockets/tcp-chat",
"websockets/websocket",
2018-04-13 21:32:15 +02:00
]