forked from gotham-rs/gotham
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
66 lines (51 loc) · 1.44 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
[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",
"examples/shared_state",
# Tera template
"examples/templating/tera",
# 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",
# into_response
"examples/into_response/introduction",
# handlers
"examples/handlers/request_data",
"examples/handlers/stateful",
"examples/handlers/simple_async_handlers",
"examples/handlers/async_handlers",
"examples/handlers/form_urlencoded",
# static_assets
"examples/static_assets",
# example_contribution_template
"examples/example_contribution_template/name"
]
[patch.crates-io]
gotham = { path = "gotham" }
gotham_derive = { path = "gotham_derive" }
borrow-bag = { path = "misc/borrow_bag" }