Skip to content

Commit 37a00a7

Browse files
committed
Bump Rust version to 1.7.7
1 parent b9869b7 commit 37a00a7

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

Cargo.toml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "aoc"
33
version = "2023.12.25"
44
edition = "2021"
5-
rust-version = "1.76"
5+
rust-version = "1.77"
66

77
[features]
88
frivolity = []
@@ -65,6 +65,7 @@ doc_link_with_quotes = "warn"
6565
doc_markdown = "warn"
6666
empty_drop = "warn"
6767
empty_enum = "warn"
68+
empty_enum_variants_with_brackets = "warn"
6869
empty_structs_with_brackets = "warn"
6970
error_impl_error = "warn"
7071
exit = "warn"
@@ -96,6 +97,8 @@ infinite_loop = "warn"
9697
inline_always = "warn"
9798
invalid_upcast_comparisons = "warn"
9899
items_after_statements = "warn"
100+
iter_filter_is_ok = "warn"
101+
iter_filter_is_some = "warn"
99102
iter_not_returning_iterator = "warn"
100103
large_digit_groups = "warn"
101104
large_futures = "warn"
@@ -106,7 +109,9 @@ linkedlist = "warn"
106109
lossy_float_literal = "warn"
107110
macro_use_imports = "warn"
108111
manual_assert = "warn"
112+
manual_c_str_literals = "warn"
109113
manual_instant_elapsed = "warn"
114+
manual_is_variant_and = "warn"
110115
manual_let_else = "warn"
111116
manual_ok_or = "warn"
112117
manual_string_new = "warn"
@@ -137,11 +142,13 @@ needless_raw_strings = "warn"
137142
negative_feature_names = "warn"
138143
no_effect_underscore_binding = "warn"
139144
no_mangle_with_rust_abi = "warn"
145+
option_as_ref_cloned = "warn"
140146
option_option = "warn"
141147
panic_in_result_fn = "warn"
142148
partial_pub_fields = "warn"
143149
ptr_as_ptr = "warn"
144150
ptr_cast_constness = "warn"
151+
pub_underscore_fields = "warn"
145152
pub_use = "warn"
146153
pub_with_shorthand = "warn"
147154
range_minus_one = "warn"
@@ -151,6 +158,7 @@ redundant_closure_for_method_calls = "warn"
151158
redundant_else = "warn"
152159
redundant_feature_names = "warn"
153160
redundant_type_annotations = "warn"
161+
ref_as_ptr = "warn"
154162
ref_binding_to_reference = "warn"
155163
ref_option_ref = "warn"
156164
rest_pat_in_fully_bound_structs = "warn"
@@ -166,6 +174,7 @@ string_add_assign = "warn"
166174
string_lit_chars_any = "warn"
167175
struct_excessive_bools = "warn"
168176
struct_field_names = "warn"
177+
str_split_at_newline = "warn"
169178
suspicious_xor_used_as_pow = "warn"
170179
todo = "warn"
171180
too_many_lines = "warn"

0 commit comments

Comments
 (0)