forked from gotham-rs/gotham
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (35 loc) · 954 Bytes
/
Copy pathCargo.toml
File metadata and controls
47 lines (35 loc) · 954 Bytes
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
[workspace]
members = [
## Gotham Core
"gotham",
"gotham_derive",
"misc/borrow_bag",
## Middleware
"middleware/template",
"middleware/under_development/diesel",
## Examples (these crates are not published)
"examples/hello_world",
# routing
"examples/routing/introduction",
"examples/routing/http_verbs",
"examples/routing/scopes",
"examples/routing/associations",
# path
"examples/path/introduction",
# query_string
"examples/query_string/introduction",
# cookies
# sessions
"examples/sessions/introduction",
"examples/sessions/custom_data_type",
# headers
"examples/headers/setting",
# middleware
"examples/middleware/introduction",
# into_response
"examples/into_response/introduction",
# handlers
"examples/handlers/request_data",
# example_contribution_template
"examples/example_contribution_template/name"
]