-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (54 loc) · 1001 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
[workspace]
name = "rust-the-book"
version = "0.1.0"
edition = "2021"
members = [
"loops",
"ownership",
"references_and_borrowing",
"the_slice_type",
"struct",
"enum",
"match",
"backyard",
"restaurant",
"vectors",
"strings",
"hash_maps",
"collections",
"errors",
"generic_data_types",
"traits",
"lifetimes",
"adder",
"minigrep",
"closures",
"iterators",
"my_crates",
"pointer_box",
"my_box",
"drop",
"reference_count",
"ref_cell",
"reference_cycle",
"threads",
"channels",
"mutex",
"oop",
"trait_object",
"blog",
"blog_type",
"patterns",
"unsafe_rust",
"advanced_traits",
"advanced_types",
"advanced_functions",
"macros",
"hello_macro",
"hello_macro/hello_macro_derive",
"pancakes",
"server",
]
[profile.dev]
opt-level =1
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html