@@ -22,7 +22,7 @@ Current beta, release 2020-11-19
22
22
* [ ` map_err_ignore ` ] [ #5998 ] ( https://github.com/rust-lang/rust-clippy/pull/5998 )
23
23
* [ ` rc_buffer ` ] [ #6044 ] ( https://github.com/rust-lang/rust-clippy/pull/6044 )
24
24
* [ ` to_string_in_display ` ] [ #5831 ] ( https://github.com/rust-lang/rust-clippy/pull/5831 )
25
- * [ ` single_char_push_str ` ] [ #5881 ] ( https://github.com/rust-lang/rust-clippy/pull/5881 )
25
+ * ` single_char_push_str ` [ #5881 ] ( https://github.com/rust-lang/rust-clippy/pull/5881 )
26
26
27
27
### Moves and Deprecations
28
28
@@ -1665,6 +1665,7 @@ Released 2018-09-13
1665
1665
[ `cognitive_complexity` ] : https://rust-lang.github.io/rust-clippy/master/index.html#cognitive_complexity
1666
1666
[ `collapsible_if` ] : https://rust-lang.github.io/rust-clippy/master/index.html#collapsible_if
1667
1667
[ `comparison_chain` ] : https://rust-lang.github.io/rust-clippy/master/index.html#comparison_chain
1668
+ [ `comparison_to_empty` ] : https://rust-lang.github.io/rust-clippy/master/index.html#comparison_to_empty
1668
1669
[ `copy_iterator` ] : https://rust-lang.github.io/rust-clippy/master/index.html#copy_iterator
1669
1670
[ `create_dir` ] : https://rust-lang.github.io/rust-clippy/master/index.html#create_dir
1670
1671
[ `crosspointer_transmute` ] : https://rust-lang.github.io/rust-clippy/master/index.html#crosspointer_transmute
@@ -1731,6 +1732,7 @@ Released 2018-09-13
1731
1732
[ `for_loops_over_fallibles` ] : https://rust-lang.github.io/rust-clippy/master/index.html#for_loops_over_fallibles
1732
1733
[ `forget_copy` ] : https://rust-lang.github.io/rust-clippy/master/index.html#forget_copy
1733
1734
[ `forget_ref` ] : https://rust-lang.github.io/rust-clippy/master/index.html#forget_ref
1735
+ [ `from_iter_instead_of_collect` ] : https://rust-lang.github.io/rust-clippy/master/index.html#from_iter_instead_of_collect
1734
1736
[ `future_not_send` ] : https://rust-lang.github.io/rust-clippy/master/index.html#future_not_send
1735
1737
[ `get_last_with_len` ] : https://rust-lang.github.io/rust-clippy/master/index.html#get_last_with_len
1736
1738
[ `get_unwrap` ] : https://rust-lang.github.io/rust-clippy/master/index.html#get_unwrap
@@ -1795,13 +1797,15 @@ Released 2018-09-13
1795
1797
[ `manual_async_fn` ] : https://rust-lang.github.io/rust-clippy/master/index.html#manual_async_fn
1796
1798
[ `manual_memcpy` ] : https://rust-lang.github.io/rust-clippy/master/index.html#manual_memcpy
1797
1799
[ `manual_non_exhaustive` ] : https://rust-lang.github.io/rust-clippy/master/index.html#manual_non_exhaustive
1800
+ [ `manual_ok_or` ] : https://rust-lang.github.io/rust-clippy/master/index.html#manual_ok_or
1798
1801
[ `manual_range_contains` ] : https://rust-lang.github.io/rust-clippy/master/index.html#manual_range_contains
1799
1802
[ `manual_saturating_arithmetic` ] : https://rust-lang.github.io/rust-clippy/master/index.html#manual_saturating_arithmetic
1800
1803
[ `manual_strip` ] : https://rust-lang.github.io/rust-clippy/master/index.html#manual_strip
1801
1804
[ `manual_swap` ] : https://rust-lang.github.io/rust-clippy/master/index.html#manual_swap
1802
1805
[ `manual_unwrap_or` ] : https://rust-lang.github.io/rust-clippy/master/index.html#manual_unwrap_or
1803
1806
[ `many_single_char_names` ] : https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names
1804
1807
[ `map_clone` ] : https://rust-lang.github.io/rust-clippy/master/index.html#map_clone
1808
+ [ `map_collect_result_unit` ] : https://rust-lang.github.io/rust-clippy/master/index.html#map_collect_result_unit
1805
1809
[ `map_entry` ] : https://rust-lang.github.io/rust-clippy/master/index.html#map_entry
1806
1810
[ `map_err_ignore` ] : https://rust-lang.github.io/rust-clippy/master/index.html#map_err_ignore
1807
1811
[ `map_flatten` ] : https://rust-lang.github.io/rust-clippy/master/index.html#map_flatten
@@ -1917,6 +1921,7 @@ Released 2018-09-13
1917
1921
[ `redundant_pub_crate` ] : https://rust-lang.github.io/rust-clippy/master/index.html#redundant_pub_crate
1918
1922
[ `redundant_static_lifetimes` ] : https://rust-lang.github.io/rust-clippy/master/index.html#redundant_static_lifetimes
1919
1923
[ `ref_in_deref` ] : https://rust-lang.github.io/rust-clippy/master/index.html#ref_in_deref
1924
+ [ `ref_option_ref` ] : https://rust-lang.github.io/rust-clippy/master/index.html#ref_option_ref
1920
1925
[ `regex_macro` ] : https://rust-lang.github.io/rust-clippy/master/index.html#regex_macro
1921
1926
[ `repeat_once` ] : https://rust-lang.github.io/rust-clippy/master/index.html#repeat_once
1922
1927
[ `replace_consts` ] : https://rust-lang.github.io/rust-clippy/master/index.html#replace_consts
@@ -1937,8 +1942,8 @@ Released 2018-09-13
1937
1942
[ `should_assert_eq` ] : https://rust-lang.github.io/rust-clippy/master/index.html#should_assert_eq
1938
1943
[ `should_implement_trait` ] : https://rust-lang.github.io/rust-clippy/master/index.html#should_implement_trait
1939
1944
[ `similar_names` ] : https://rust-lang.github.io/rust-clippy/master/index.html#similar_names
1945
+ [ `single_char_add_str` ] : https://rust-lang.github.io/rust-clippy/master/index.html#single_char_add_str
1940
1946
[ `single_char_pattern` ] : https://rust-lang.github.io/rust-clippy/master/index.html#single_char_pattern
1941
- [ `single_char_push_str` ] : https://rust-lang.github.io/rust-clippy/master/index.html#single_char_push_str
1942
1947
[ `single_component_path_imports` ] : https://rust-lang.github.io/rust-clippy/master/index.html#single_component_path_imports
1943
1948
[ `single_element_loop` ] : https://rust-lang.github.io/rust-clippy/master/index.html#single_element_loop
1944
1949
[ `single_match` ] : https://rust-lang.github.io/rust-clippy/master/index.html#single_match
0 commit comments