-
Notifications
You must be signed in to change notification settings - Fork 33
/
Cargo.toml
51 lines (38 loc) · 799 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
[package]
name = "rust-examples"
version = "0.0.1"
authors = ["Eliovir <[email protected]>"]
[dependencies.inifile]
path = "inifile"
[dependencies]
getopts = "0.2.21"
rand = "0.8.5"
[[bin]]
name = "api-getopts"
path = "api-getopts.rs"
[[bin]]
name = "api-rand"
path = "api-rand.rs"
[[bin]]
name = "book-3_1-guessing_game"
path = "book-3_1-guessing_game.rs"
[[bin]]
name = "design_pattern-state"
path = "design_pattern-state.rs"
[[bin]]
name ="fibonacci"
path = "fibonacci.rs"
[[bin]]
name = "find_max"
path = "find_max.rs"
[[bin]]
name = "finite-state-machine"
path = "finite-state-machine.rs"
[[bin]]
name = "tutorial-tasks-02_3-arc"
path = "tutorial-tasks-02_3-arc.rs"
[[bin]]
name = "tutorial-04_2-pattern-matching"
path = "tutorial-04_2-pattern-matching.rs"
[features]
nightly = []