forked from fadeevab/design-patterns-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (30 loc) · 820 Bytes
/
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
[workspace]
members = [
"behavioral/chain-of-responsibility",
"behavioral/command",
"behavioral/iterator",
"behavioral/mediator",
"behavioral/memento",
"behavioral/observer",
"behavioral/state",
"behavioral/strategy",
"behavioral/template-method",
"behavioral/visitor",
"creational/abstract-factory/app",
"creational/abstract-factory/app-dyn",
"creational/builder",
"creational/factory-method/maze-game",
"creational/factory-method/render-dialog",
"creational/prototype",
"creational/simple-factory",
"creational/singleton/how-to-create",
"creational/singleton/logger",
"creational/static-creation-method",
"structural/adapter",
"structural/bridge",
"structural/composite",
"structural/decorator",
"structural/facade",
"structural/flyweight",
"structural/proxy",
]