-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
59 lines (55 loc) · 1.33 KB
/
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]
members = [
"rust_01_hello_world",
"rust_02_var_mut_types",
"rust_03_functions",
"rust_04_control",
"rust_05_pattern_matching",
"rust_06_ownership_borrowing",
"rust_07_collections",
"rust_08_struct",
"rust_09_traits",
"rust_10_tests",
"rust_11_traits_2",
"rust_12_closures",
"rust_13_threading_1",
"rust_14_threading_2",
"rust_15_iterator",
"rust_16_default_trait_from",
"rust_17_error_1",
"rust_18_arc_ptr",
"rust_19_multiple_error_types",
"rust_20_mutex",
"rust_21_enum",
"rust_22_into_from",
"rust_23_generic",
"rust_24_coercion",
"rust_25_path",
"rust_26_macro_1",
"rust_27_cow",
"rust_28_into_iterator",
"rust_29_interior_mut",
"rust_30_deref",
# rust crate examples
"rust_crate_clap_01",
"rust_crate_flume_01",
"rust_crate_serde_yaml_01",
"rust_crate_small_strings_01",
"rust_crate_thiserror_anyhow_01",
"rust_crate_nom_01",
"rust_crate_rayon_01",
# rust misc examples
"rustgdb_1",
# tokio examples
"tokio_tcp_echo",
"tokio_async_block_return",
"tokio_future_pin",
"tokio_async_common_mistakes",
# tokio crate examples
"tokio_crate_loom_01",
"tokio_crate_codec_01",
"tokio_tcp_tls",
# hyper examples
# "hyper_01_http_post",
]
resolver = "2"