-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
105 lines (98 loc) · 4.38 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# Auto generated with `./script/gen-workspace`
[workspace]
members = [
"chapter-01/listing_02_rust_csv",
"chapter-01/listing_04_rust_map",
"chapter-02/listing_01_hello_world",
"chapter-02/listing_02_artwork",
"chapter-02/listing_03_admiration",
"chapter-02/listing_04_two_arts",
# "chapter-02/listing_05_double_admiration_NO_COMPILE",
"chapter-02/listing_09_double_admiration_ref",
"chapter-02/listing_10_mutability",
"chapter-02/listing_11_view_counter",
# "chapter-02/listing_12_use_after_move_NO_COMPILE",
# "chapter-02/listing_13_hanging_ref_NO_COMPILE",
"chapter-02/listing_16_large_string_rs",
"chapter-02/listing_17_large_string_prealloc",
"chapter-02/listing_18_string_to_ref",
"chapter-02/listing_19_ref_to_string",
"chapter-02/listing_21_fizz_buzz_basic",
"chapter-02/listing_24_fizz_buzz_enum_basic",
"chapter-02/listing_25_fizz_buzz_enum",
"chapter-02/listing_27_fizz_buzz_result",
# "chapter-02/listing_29_unit_type_mismatch_NO_COMPILE",
"chapter-02/listing_30_unit_return_explicit",
"chapter-02/listing_32_custom_error",
"chapter-02/listing_34_question_mark",
"chapter-02/listing_35_username_validation",
"chapter-02/listing_36_err_panic",
"chapter-02/listing_37_err_unwrap",
"chapter-03/listing_01_unsafe_iteration",
"chapter-03/listing_04_beginning_ffi",
"chapter-03/listing_06_most_basic_ffi",
"chapter-03/listing_08_ffi_with_evaluate",
"chapter-03/listing_10_hello_world_display",
"chapter-03/listing_13_full_calculator",
"chapter-04/listing_01_module_starter",
"chapter-04/listing_02_build_script_hello",
"chapter-04/listing_03_build_script_language",
"chapter-04/listing_04_build_script_include",
"chapter-04/listing_05_build_script_bindings",
"chapter-04/listing_06_build_script_ngx_prefix",
"chapter-04/listing_07_nginx_handler",
"chapter-04/listing_08_request_body",
"chapter-04/listing_09_print_vec",
"chapter-04/listing_10_print_vec_fn",
# "chapter-04/listing_11_print_vec_fn_dangling_NO_COMPILE",
# "chapter-04/listing_12_print_vec_fn_ref_NO_COMPILE",
"chapter-04/listing_13_print_vec_fn_lifetimes",
"chapter-04/listing_14_calculate",
"chapter-04/listing_15_evaluate_expression",
"chapter-04/listing_16_full_handler",
"chapter-05/listing_01_greeter_start",
# "chapter-05/listing_02_greeter_mod_NO_COMPILE",
# "chapter-05/listing_03_greeter_use_NO_COMPILE",
"chapter-05/listing_04_greeter_pub",
"chapter-05/listing_05_greeter_mod_files",
# "chapter-05/listing_08_day_kind_NO_COMPILE",
"chapter-05/listing_11_paths",
"chapter-05/listing_12_libsnack",
"chapter-05/listing_13_libsnack_lifecycle_absolute",
"chapter-05/listing_14_libsnack_lifecycle_relative",
"chapter-05/listing_15_libsnack_lifecycle_use",
"chapter-05/listing_20_greeter_day_kind_input",
"chapter-05/listing_21_greeter_day_kind_main",
"chapter-05/listing_22_greeter_day_kind_read_line",
"chapter-05/listing_23_greeter_pub_use",
"chapter-05/listing_27_forest",
# "chapter-05/listing_28_forest_pvt_NO_COMPILE",
"chapter-05/listing_29_forest_pub_crate",
"chapter-05/listing_30_nested_parent_visibility",
# "chapter-05/listing_31_nested_downward_visibility_doesnt_work_NO_COMPILE",
"chapter-06/listing_00_complete",
"chapter-06/listing_01_benching",
# "chapter-06/listing_03_rust_psuedocode_NO_COMPILE",
# "chapter-06/listing_04_json_parser_first_pass_NO_COMPILE",
"chapter-06/listing_05_json_parser_working",
"chapter-06/listing_06_json_parser_wrong_types",
"chapter-06/listing_07_json_summer_rust",
"chapter-06/listing_08_rust_json_lib",
"chapter-06/listing_09_rust_json_empty_pymodule",
"chapter-06/listing_10_rust_json_wrapped_pyfunction",
# "chapter-06/listing_12_dev_dependencies_NO_COMPILE",
"chapter-06/listing_13_bench_base",
"chapter-06/listing_14_bench_rust_sum",
"chapter-07/listing_01_testing",
"chapter-07/listing_02_failing_test",
"chapter-07/listing_03_stdout",
"chapter-07/listing_04_add_fn",
"chapter-07/listing_05_add_fn_doc",
"chapter-07/listing_06_add_fn_doctest",
"chapter-07/listing_07_add_fn_passing_doctest",
"chapter-07/listing_08_rust_json_reminder",
"chapter-07/listing_09_rust_json_tests",
"chapter-07/listing_10_rust_json_raw_string",
"chapter-07/listing_11_more_rust_tests",
"chapter-07/listing_18_add_bug_to_rust",
]