forked from actix/examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
63 lines (63 loc) · 1.43 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
59
60
61
62
63
[workspace]
members = [
"auth/casbin",
"auth/cookie-auth",
"auth/cookie-session",
"auth/redis-session",
"auth/simple-auth-server",
"basics/basics",
"basics/error-handling",
"basics/hello-world",
"basics/nested-routing",
"basics/state",
"basics/static-files",
"basics/todo",
"cors/backend",
"data-factory",
"databases/mongodb",
"databases/postgres",
"databases/redis",
"databases/sqlite",
"docker",
"forms/form",
"forms/multipart-s3",
"forms/multipart",
"graphql/async-graphql",
"graphql/juniper-advanced",
"graphql/juniper",
"guards",
"http-proxy",
"https-tls/awc-https",
"https-tls/openssl-auto-le",
"https-tls/openssl",
"https-tls/rustls-client-cert",
"https-tls/rustls",
"json/json-decode-error",
"json/json-error",
"json/json-validation",
"json/json",
"json/jsonrpc",
"middleware/middleware-ext-mut",
"middleware/middleware-http-to-https",
"middleware/middleware",
"protobuf",
"run-in-thread",
"server-sent-events",
"shutdown-server",
"templating/askama",
"templating/handlebars",
"templating/sailfish",
"templating/tera",
"templating/tinytemplate",
"templating/yarte",
"unix-socket",
"websockets/autobahn",
"websockets/chat-broker",
"websockets/chat-tcp",
"websockets/chat",
"websockets/echo",
]
exclude = [
# uses incompatible libsqlite-sys to other examples
"databases/diesel",
]