forked from actix/examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
58 lines (58 loc) · 1.48 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[workspace]
members = [
"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",
"database_interactions/sqlx_todo",
"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",
]