-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
69 lines (52 loc) · 938 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
58
59
60
61
62
63
64
65
66
67
68
69
[package]
name = "rust-tests"
version = "0.1.0"
edition = "2021"
default-run = "main"
[profile.release]
panic = 'abort'
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rand = "0.8.5"
[[bin]]
name = "guess"
path = "src/guess.rs"
[[bin]]
name = "main"
path = "src/main.rs"
[[bin]]
name = "variables"
path = "src/variables.rs"
[[bin]]
name = "ownership"
path = "src/ownership.rs"
[[bin]]
name = "slices"
path = "src/slices.rs"
[[bin]]
name = "structs"
path = "src/structs.rs"
[[bin]]
name = "enums"
path = "src/enums.rs"
[[bin]]
name = "vectors"
path = "src/vectors.rs"
[[bin]]
name = "strings"
path = "src/strings.rs"
[[bin]]
name = "hash"
path = "src/hash.rs"
[[bin]]
name = "errors"
path = "src/errors.rs"
[[bin]]
name = "generics"
path = "src/generics.rs"
[[bin]]
name = "traits"
path = "src/traits.rs"
[[bin]]
name = "lifetimes"
path = "src/lifetimes.rs"