-
Notifications
You must be signed in to change notification settings - Fork 53
/
Cargo.toml
52 lines (44 loc) · 1.21 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
[workspace]
resolver = "2"
members = [
"models/starwars",
"models/books",
"models/files",
"models/token",
"models/dynamic-starwars",
"models/dynamic-files",
"poem/opentelemetry-basic",
"poem/starwars",
"poem/subscription",
"poem/subscription-redis",
"poem/token-from-header",
"poem/upload",
"poem/dynamic-schema",
"poem/dynamic-starwars",
"poem/dynamic-books",
"poem/dynamic-upload",
"actix-web/token-from-header",
"actix-web/subscription",
"actix-web/upload",
"actix-web/starwars",
"actix-web/error-extensions",
"warp/starwars",
"warp/subscription",
"warp/token-from-header",
"rocket/starwars",
"rocket/upload",
"axum/starwars",
"axum/subscription",
"axum/upload",
"axum/token-from-header",
"tide/starwars",
"tide/dataloader",
"tide/dataloader-postgres",
"tide/subscription",
"federation/static-schema/federation-accounts",
"federation/static-schema/federation-products",
"federation/static-schema/federation-reviews",
"federation/dynamic-schema/federation-accounts",
"federation/dynamic-schema/federation-products",
"federation/dynamic-schema/federation-reviews",
]