-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathCargo.toml
36 lines (34 loc) · 988 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
32
33
34
35
36
[workspace]
resolver = "2"
members = [
"behavioral/chain-of-responsibility",
"behavioral/command",
"behavioral/iterator",
"behavioral/mediator/mediator-rc-refcell",
"behavioral/mediator/mediator-top-down",
"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",
]
[patch.crates-io]
draw = { git = "https://github.com/fadeevab/draw", branch = "master" }