-
Notifications
You must be signed in to change notification settings - Fork 125
/
Cargo.toml
88 lines (67 loc) · 1.88 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[workspace]
members = [
## Gotham Core
"gotham",
"gotham_derive",
"misc/borrow_bag",
## Middleware
"middleware/template",
"middleware/diesel",
"middleware/jwt",
## Examples (these crates are not published)
"examples/hello_world",
"examples/hello_world_tls",
"examples/hello_world_until",
"examples/shared_state",
# Tera template
"examples/templating/tera",
# Askama template
"examples/templating/askama",
# routing
"examples/routing/introduction",
"examples/routing/http_verbs",
"examples/routing/scopes",
"examples/routing/associations",
# path
"examples/path/introduction",
"examples/path/globs",
"examples/path/regex",
# query_string
"examples/query_string/introduction",
# cookies
"examples/cookies/introduction",
# sessions
"examples/sessions/introduction",
"examples/sessions/custom_data_type",
# headers
"examples/headers/setting",
# middleware
"examples/middleware/introduction",
"examples/middleware/introduction_await",
"examples/middleware/multiple_pipelines",
# into_response
"examples/into_response/introduction",
# handlers
"examples/handlers/request_data",
"examples/handlers/stateful",
"examples/handlers/simple_async_handlers",
"examples/handlers/simple_async_handlers_await",
"examples/handlers/async_handlers",
"examples/handlers/form_urlencoded",
"examples/handlers/multipart",
# static_assets
"examples/static_assets",
# diesel
"examples/diesel",
# openssl
# TODO: Re-enable when this example is updated
# "examples/openssl",
# example_contribution_template
"examples/example_contribution_template/name",
# websocket
"examples/websocket",
# finalizer
"examples/finalizers/",
# custom_service
"examples/custom_service/",
]