-
Notifications
You must be signed in to change notification settings - Fork 110
/
Cargo.toml
57 lines (44 loc) · 935 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "rust_design_pattern"
version = "0.1.0"
authors = ["lpxxn <mi_duo@live.com>"]
edition = "2018"
[[bin]]
name = "factory"
path = "./creational/factory.rs"
[[bin]]
name = "abstract_factory"
path = "./creational/abstract_factory.rs"
[[bin]]
name = "builder"
path = "./creational/builder.rs"
[[bin]]
name = "strategy"
path = "./behavioral/strategy.rs"
[[bin]]
name = "state"
path = "./behavioral/state.rs"
[[bin]]
name = "command"
path = "./behavioral/command.rs"
[[bin]]
name = "iterator"
path = "./behavioral/iterator.rs"
[[bin]]
name = "observer"
path = "./behavioral/observer.rs"
[[bin]]
name = "chain_of_responsibility"
path = "./behavioral/chain_of_responsibility.rs"
[[bin]]
name = "adapter"
path = "./structural/adapter.rs"
[[bin]]
name = "decorator"
path = "./structural/decorator.rs"
[[bin]]
name = "proxy"
path = "./structural/proxy.rs"
[[bin]]
name = "singleton"
path = "./creational/singleton.rs"