-
Notifications
You must be signed in to change notification settings - Fork 19
/
Cargo.toml
37 lines (31 loc) · 911 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
37
[package]
name = "design_patterns"
version = "0.1.0"
authors = ["blackanger <blackanger.z@gmail.com>"]
[dependencies]
factory = {path = "factory"}
builder = {path = "builder"}
singleton = {path = "singleton"}
prototype = {path = "prototype"}
adapter = {path = "adapter"}
bridge = {path = "bridge"}
filter = {path = "filter"}
composite = {path = "composite"}
decorator = {path = "decorator"}
facade = {path = "facade"}
flyweight = {path = "flyweight"}
proxy = {path = "proxy"}
chain_of_responsibility = {path = "chain_of_responsibility"}
command = {path = "command"}
interpreter = {path = "interpreter"}
iterator = {path = "iterator"}
mediator = {path = "mediator"}
memento = {path = "memento"}
observer = {path = "observer"}
state = {path = "state"}
null_object = {path = "null_object"}
strategy = {path = "strategy"}
template = {path = "template"}
visitor = {path = "visitor"}
rand = "0.3.14"
[workspace]