diff --git a/build.rs b/build.rs index ed75944..aeee31d 100644 --- a/build.rs +++ b/build.rs @@ -6,12 +6,12 @@ use std::{ default::Default, env, fmt::Debug, - io::{BufRead, BufReader, BufWriter, Write}, + io::{BufWriter, Write}, iter, path::Path, }; -use anyhow::{bail, Context as _}; +use anyhow::Context as _; use fs_err::{self as fs, DirEntry, File}; use proc_macro2::{Ident, Span, TokenStream}; use quote::{quote, ToTokens}; @@ -192,43 +192,18 @@ fn collect_features( continue; } - let slug = match file_name.strip_suffix(".md") { + let slug = match file_name.strip_suffix(".toml") { Some(basename) => basename.to_owned(), None => { - panic!("expected only .md files and version.toml in data/*, found `{}`", file_name,) + panic!( + "expected only .toml files in data/*, found `{}`", + file_name, + ) } }; - let feature_file = BufReader::new(File::open(file.path())?); - - let mut feature_file_lines = feature_file.lines(); - let mut feature_file_frontmatter = String::new(); - assert_eq!( - match feature_file_lines.next() { - Some(Ok(s)) => s, - _ => bail!("reading first line of data/{}/{} failed", dir_name, file_name), - }, - "+++", - "expected frontmatter at the beginning of data/{}/{}", - dir_name, - file_name - ); - - loop { - match feature_file_lines.next() { - Some(Ok(s)) if s == "+++" => break, - Some(Ok(s)) => { - feature_file_frontmatter += s.as_str(); - feature_file_frontmatter.push('\n'); - } - _ => bail!("reading frontmatter of data/{}/{} failed", dir_name, file_name), - } - } - - // TODO: Read file contents after frontmatter - let feature = toml::from_str(&feature_file_frontmatter).with_context(|| { - format!("deserializing frontmatter of data/{}/{}", dir_name, file_name) - })?; + let feature = toml::from_str(&fs::read_to_string(file.path())?) + .with_context(|| format!("deserializing data/{}/{}", dir_name, file_name))?; features.push(FeatureData { slug, ..feature }); } diff --git a/data/1.0/associated_types.md b/data/1.0/associated_types.md deleted file mode 100644 index 1205b98..0000000 --- a/data/1.0/associated_types.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "associated types in traits" -flag = "associated_types" -+++ diff --git a/data/1.0/associated_types.toml b/data/1.0/associated_types.toml new file mode 100644 index 0000000..4bda3cb --- /dev/null +++ b/data/1.0/associated_types.toml @@ -0,0 +1,2 @@ +title = "associated types in traits" +flag = "associated_types" diff --git a/data/1.0/default_type_params.md b/data/1.0/default_type_params.md deleted file mode 100644 index a0298a6..0000000 --- a/data/1.0/default_type_params.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "type parameter defaults" -flag = "default_type_params" -+++ diff --git a/data/1.0/default_type_params.toml b/data/1.0/default_type_params.toml new file mode 100644 index 0000000..2d372eb --- /dev/null +++ b/data/1.0/default_type_params.toml @@ -0,0 +1,2 @@ +title = "type parameter defaults" +flag = "default_type_params" diff --git a/data/1.0/if_let.md b/data/1.0/if_let.md deleted file mode 100644 index 37cfe5b..0000000 --- a/data/1.0/if_let.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`if let` expressions" -flag = "if_let" -+++ diff --git a/data/1.0/if_let.toml b/data/1.0/if_let.toml new file mode 100644 index 0000000..57b0952 --- /dev/null +++ b/data/1.0/if_let.toml @@ -0,0 +1,2 @@ +title = "`if let` expressions" +flag = "if_let" diff --git a/data/1.0/macro_rules.md b/data/1.0/macro_rules.md deleted file mode 100644 index 42791e4..0000000 --- a/data/1.0/macro_rules.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`macro_rules!`" -flag = "macro_rules" -+++ diff --git a/data/1.0/macro_rules.toml b/data/1.0/macro_rules.toml new file mode 100644 index 0000000..c608c57 --- /dev/null +++ b/data/1.0/macro_rules.toml @@ -0,0 +1,2 @@ +title = "`macro_rules!`" +flag = "macro_rules" diff --git a/data/1.0/slicing_syntax.md b/data/1.0/slicing_syntax.md deleted file mode 100644 index 59bd019..0000000 --- a/data/1.0/slicing_syntax.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`&foo[a..b]` as slicing syntax" -flag = "slicing_syntax" -+++ diff --git a/data/1.0/slicing_syntax.toml b/data/1.0/slicing_syntax.toml new file mode 100644 index 0000000..fd53980 --- /dev/null +++ b/data/1.0/slicing_syntax.toml @@ -0,0 +1,2 @@ +title = "`&foo[a..b]` as slicing syntax" +flag = "slicing_syntax" diff --git a/data/1.0/struct_variant.md b/data/1.0/struct_variant.md deleted file mode 100644 index 1240a40..0000000 --- a/data/1.0/struct_variant.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "struct variants in enums" -flag = "struct_variant" -+++ diff --git a/data/1.0/struct_variant.toml b/data/1.0/struct_variant.toml new file mode 100644 index 0000000..d0203d7 --- /dev/null +++ b/data/1.0/struct_variant.toml @@ -0,0 +1,2 @@ +title = "struct variants in enums" +flag = "struct_variant" diff --git a/data/1.0/tuple_indexing.md b/data/1.0/tuple_indexing.md deleted file mode 100644 index ff1c0f6..0000000 --- a/data/1.0/tuple_indexing.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "tuple indexing" -flag = "tuple_indexing" -+++ diff --git a/data/1.0/tuple_indexing.toml b/data/1.0/tuple_indexing.toml new file mode 100644 index 0000000..fafaa9f --- /dev/null +++ b/data/1.0/tuple_indexing.toml @@ -0,0 +1,2 @@ +title = "tuple indexing" +flag = "tuple_indexing" diff --git a/data/1.0/while_let.md b/data/1.0/while_let.md deleted file mode 100644 index a41ac07..0000000 --- a/data/1.0/while_let.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`while let` expressions" -flag = "while_let" -+++ diff --git a/data/1.0/while_let.toml b/data/1.0/while_let.toml new file mode 100644 index 0000000..3251a0e --- /dev/null +++ b/data/1.0/while_let.toml @@ -0,0 +1,2 @@ +title = "`while let` expressions" +flag = "while_let" diff --git a/data/1.1/split_whitespace.md b/data/1.1/split_whitespace.md deleted file mode 100644 index be62b2d..0000000 --- a/data/1.1/split_whitespace.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`str::split_whitespace`" -rfc_id = 1054 -impl_pr_id = 24563 -+++ diff --git a/data/1.1/split_whitespace.toml b/data/1.1/split_whitespace.toml new file mode 100644 index 0000000..10e35e6 --- /dev/null +++ b/data/1.1/split_whitespace.toml @@ -0,0 +1,3 @@ +title = "`str::split_whitespace`" +rfc_id = 1054 +impl_pr_id = 24563 diff --git a/data/1.10/cstr_default.md b/data/1.10/cstr_default.md deleted file mode 100644 index ea1bc68..0000000 --- a/data/1.10/cstr_default.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`Default` implementation for `&CStr`" -flag = "cstr_default" -impl_pr_id = 32990 -+++ diff --git a/data/1.10/cstr_default.toml b/data/1.10/cstr_default.toml new file mode 100644 index 0000000..a3f9a5d --- /dev/null +++ b/data/1.10/cstr_default.toml @@ -0,0 +1,3 @@ +title = "`Default` implementation for `&CStr`" +flag = "cstr_default" +impl_pr_id = 32990 diff --git a/data/1.10/cstring_default.md b/data/1.10/cstring_default.md deleted file mode 100644 index 5509ab1..0000000 --- a/data/1.10/cstring_default.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`Default` implementation for `CString`" -flag = "cstr_default" -impl_pr_id = 32990 -+++ diff --git a/data/1.10/cstring_default.toml b/data/1.10/cstring_default.toml new file mode 100644 index 0000000..052517b --- /dev/null +++ b/data/1.10/cstring_default.toml @@ -0,0 +1,3 @@ +title = "`Default` implementation for `CString`" +flag = "cstr_default" +impl_pr_id = 32990 diff --git a/data/1.10/weak_new.md b/data/1.10/weak_new.md deleted file mode 100644 index 59501e5..0000000 --- a/data/1.10/weak_new.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`sync::Weak::new`" -flag = "downgraded_weak" -impl_pr_id = 33699 -+++ diff --git a/data/1.10/weak_new.toml b/data/1.10/weak_new.toml new file mode 100644 index 0000000..7b63b69 --- /dev/null +++ b/data/1.10/weak_new.toml @@ -0,0 +1,3 @@ +title = "`sync::Weak::new`" +flag = "downgraded_weak" +impl_pr_id = 33699 diff --git a/data/1.11/nested_cfg_attr.md b/data/1.11/nested_cfg_attr.md deleted file mode 100644 index 788188a..0000000 --- a/data/1.11/nested_cfg_attr.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "nested `cfg_attr` attributes" -impl_pr_id = 34216 -+++ diff --git a/data/1.11/nested_cfg_attr.toml b/data/1.11/nested_cfg_attr.toml new file mode 100644 index 0000000..adcf947 --- /dev/null +++ b/data/1.11/nested_cfg_attr.toml @@ -0,0 +1,2 @@ +title = "nested `cfg_attr` attributes" +impl_pr_id = 34216 diff --git a/data/1.12/cfg_attr_path.md b/data/1.12/cfg_attr_path.md deleted file mode 100644 index 10d5f16..0000000 --- a/data/1.12/cfg_attr_path.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`cfg_attr` on `path` attributes" -impl_pr_id = 34546 -+++ diff --git a/data/1.12/cfg_attr_path.toml b/data/1.12/cfg_attr_path.toml new file mode 100644 index 0000000..f7beeb5 --- /dev/null +++ b/data/1.12/cfg_attr_path.toml @@ -0,0 +1,2 @@ +title = "`cfg_attr` on `path` attributes" +impl_pr_id = 34546 diff --git a/data/1.12/nested_macro_rules.md b/data/1.12/nested_macro_rules.md deleted file mode 100644 index 95072bd..0000000 --- a/data/1.12/nested_macro_rules.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`macro_rules!` within `macro_rules!`" -impl_pr_id = 34925 -+++ diff --git a/data/1.12/nested_macro_rules.toml b/data/1.12/nested_macro_rules.toml new file mode 100644 index 0000000..26e05e4 --- /dev/null +++ b/data/1.12/nested_macro_rules.toml @@ -0,0 +1,2 @@ +title = "`macro_rules!` within `macro_rules!`" +impl_pr_id = 34925 diff --git a/data/1.13/assert_ne.md b/data/1.13/assert_ne.md deleted file mode 100644 index 85295dc..0000000 --- a/data/1.13/assert_ne.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`assert_ne!`" -rfc_id = 1653 -impl_pr_id = 35074 -tracking_issue_id = 35073 -+++ diff --git a/data/1.13/assert_ne.toml b/data/1.13/assert_ne.toml new file mode 100644 index 0000000..d21fa7d --- /dev/null +++ b/data/1.13/assert_ne.toml @@ -0,0 +1,4 @@ +title = "`assert_ne!`" +rfc_id = 1653 +impl_pr_id = 35074 +tracking_issue_id = 35073 diff --git a/data/1.13/debug_assert_ne.md b/data/1.13/debug_assert_ne.md deleted file mode 100644 index 0208f14..0000000 --- a/data/1.13/debug_assert_ne.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`debug_assert_ne!`" -rfc_id = 1653 -impl_pr_id = 35074 -tracking_issue_id = 35073 -+++ diff --git a/data/1.13/debug_assert_ne.toml b/data/1.13/debug_assert_ne.toml new file mode 100644 index 0000000..4f49ba9 --- /dev/null +++ b/data/1.13/debug_assert_ne.toml @@ -0,0 +1,4 @@ +title = "`debug_assert_ne!`" +rfc_id = 1653 +impl_pr_id = 35074 +tracking_issue_id = 35073 diff --git a/data/1.13/question_mark.md b/data/1.13/question_mark.md deleted file mode 100644 index b0bf41e..0000000 --- a/data/1.13/question_mark.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "the `?` operator" -flag = "question_mark" -rfc_id = 243 -impl_pr_id = 31954 -tracking_issue_id = 31436 -stabilization_pr_id = 36995 -edition_guide_path = "rust-2018/error-handling-and-panics/the-question-mark-operator-for-easier-error-handling.html" -+++ diff --git a/data/1.13/question_mark.toml b/data/1.13/question_mark.toml new file mode 100644 index 0000000..e814559 --- /dev/null +++ b/data/1.13/question_mark.toml @@ -0,0 +1,7 @@ +title = "the `?` operator" +flag = "question_mark" +rfc_id = 243 +impl_pr_id = 31954 +tracking_issue_id = 31436 +stabilization_pr_id = 36995 +edition_guide_path = "rust-2018/error-handling-and-panics/the-question-mark-operator-for-easier-error-handling.html" diff --git a/data/1.13/type_macros.md b/data/1.13/type_macros.md deleted file mode 100644 index bacb87d..0000000 --- a/data/1.13/type_macros.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`macro_rules!` macros in type position" -flag = "type_macros" -tracking_issue_id = 27245 -+++ diff --git a/data/1.13/type_macros.toml b/data/1.13/type_macros.toml new file mode 100644 index 0000000..8a6c3ca --- /dev/null +++ b/data/1.13/type_macros.toml @@ -0,0 +1,3 @@ +title = "`macro_rules!` macros in type position" +flag = "type_macros" +tracking_issue_id = 27245 diff --git a/data/1.14/dotdot_in_tuple_patterns.md b/data/1.14/dotdot_in_tuple_patterns.md deleted file mode 100644 index cad2bce..0000000 --- a/data/1.14/dotdot_in_tuple_patterns.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`..` in tuple (struct) patterns" -flag = "dotdot_in_tuple_patterns" -rfc_id = 1492 -tracking_issue_id = 33627 -stabilization_pr_id = 36843 -+++ diff --git a/data/1.14/dotdot_in_tuple_patterns.toml b/data/1.14/dotdot_in_tuple_patterns.toml new file mode 100644 index 0000000..e4be166 --- /dev/null +++ b/data/1.14/dotdot_in_tuple_patterns.toml @@ -0,0 +1,5 @@ +title = "`..` in tuple (struct) patterns" +flag = "dotdot_in_tuple_patterns" +rfc_id = 1492 +tracking_issue_id = 33627 +stabilization_pr_id = 36843 diff --git a/data/1.14/fn_ptr_to_unsafe_fn_ptr.md b/data/1.14/fn_ptr_to_unsafe_fn_ptr.md deleted file mode 100644 index b0db826..0000000 --- a/data/1.14/fn_ptr_to_unsafe_fn_ptr.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`fn` pointer to `unsafe fn` pointer coercion" -impl_pr_id = 37389 -+++ diff --git a/data/1.14/fn_ptr_to_unsafe_fn_ptr.toml b/data/1.14/fn_ptr_to_unsafe_fn_ptr.toml new file mode 100644 index 0000000..65c7210 --- /dev/null +++ b/data/1.14/fn_ptr_to_unsafe_fn_ptr.toml @@ -0,0 +1,2 @@ +title = "`fn` pointer to `unsafe fn` pointer coercion" +impl_pr_id = 37389 diff --git a/data/1.14/println_no_args.md b/data/1.14/println_no_args.md deleted file mode 100644 index 691ea3f..0000000 --- a/data/1.14/println_no_args.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`println!` without arguments" -impl_pr_id = 36825 -+++ diff --git a/data/1.14/println_no_args.toml b/data/1.14/println_no_args.toml new file mode 100644 index 0000000..94871c1 --- /dev/null +++ b/data/1.14/println_no_args.toml @@ -0,0 +1,2 @@ +title = "`println!` without arguments" +impl_pr_id = 36825 diff --git a/data/1.15/proc_macro_derive.md b/data/1.15/proc_macro_derive.md deleted file mode 100644 index f4104d7..0000000 --- a/data/1.15/proc_macro_derive.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "procedural derive macros (macros 1.1)" -flag = "proc_macro" -rfc_id = 1681 -tracking_issue_id = 35900 -+++ diff --git a/data/1.15/proc_macro_derive.toml b/data/1.15/proc_macro_derive.toml new file mode 100644 index 0000000..f4e37a6 --- /dev/null +++ b/data/1.15/proc_macro_derive.toml @@ -0,0 +1,4 @@ +title = "procedural derive macros (macros 1.1)" +flag = "proc_macro" +rfc_id = 1681 +tracking_issue_id = 35900 diff --git a/data/1.16/assoc_ty_struct_expr_pat.md b/data/1.16/assoc_ty_struct_expr_pat.md deleted file mode 100644 index fcc0404..0000000 --- a/data/1.16/assoc_ty_struct_expr_pat.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "associated types in struct expressions and patterns" -tracking_issue_id = 37544 -stabilization_pr_id = 39282 -+++ diff --git a/data/1.16/assoc_ty_struct_expr_pat.toml b/data/1.16/assoc_ty_struct_expr_pat.toml new file mode 100644 index 0000000..be99a43 --- /dev/null +++ b/data/1.16/assoc_ty_struct_expr_pat.toml @@ -0,0 +1,3 @@ +title = "associated types in struct expressions and patterns" +tracking_issue_id = 37544 +stabilization_pr_id = 39282 diff --git a/data/1.16/self_struct_expr_pat.md b/data/1.16/self_struct_expr_pat.md deleted file mode 100644 index 6fbe14e..0000000 --- a/data/1.16/self_struct_expr_pat.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`Self` in struct expressions and patterns" -tracking_issue_id = 37544 -stabilization_pr_id = 39282 -+++ diff --git a/data/1.16/self_struct_expr_pat.toml b/data/1.16/self_struct_expr_pat.toml new file mode 100644 index 0000000..f7af205 --- /dev/null +++ b/data/1.16/self_struct_expr_pat.toml @@ -0,0 +1,3 @@ +title = "`Self` in struct expressions and patterns" +tracking_issue_id = 37544 +stabilization_pr_id = 39282 diff --git a/data/1.16/writeln_no_args.md b/data/1.16/writeln_no_args.md deleted file mode 100644 index 3f28217..0000000 --- a/data/1.16/writeln_no_args.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`writeln!` without arguments" -impl_pr_id = 38469 -+++ diff --git a/data/1.16/writeln_no_args.toml b/data/1.16/writeln_no_args.toml new file mode 100644 index 0000000..e44912e --- /dev/null +++ b/data/1.16/writeln_no_args.toml @@ -0,0 +1,2 @@ +title = "`writeln!` without arguments" +impl_pr_id = 38469 diff --git a/data/1.17/cell_non_copy.md b/data/1.17/cell_non_copy.md deleted file mode 100644 index f885fe8..0000000 --- a/data/1.17/cell_non_copy.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`Cell` with non-`Copy` types" -flag = "cell_non_copy" -rfc_id = 1651 -impl_pr_id = 39793 -+++ diff --git a/data/1.17/cell_non_copy.toml b/data/1.17/cell_non_copy.toml new file mode 100644 index 0000000..333e618 --- /dev/null +++ b/data/1.17/cell_non_copy.toml @@ -0,0 +1,4 @@ +title = "`Cell` with non-`Copy` types" +flag = "cell_non_copy" +rfc_id = 1651 +impl_pr_id = 39793 diff --git a/data/1.17/field_init_shorthand.md b/data/1.17/field_init_shorthand.md deleted file mode 100644 index 4a6c3e5..0000000 --- a/data/1.17/field_init_shorthand.md +++ /dev/null @@ -1,8 +0,0 @@ -+++ -title = "field init shorthands (`x` for `x: x` in struct initializers)" -flag = "field_init_shorthand" -rfc_id = 1682 -tracking_issue_id = 37340 -stabilization_pr_id = 39761 -edition_guide_path = "rust-2018/data-types/field-init-shorthand.html" -+++ diff --git a/data/1.17/field_init_shorthand.toml b/data/1.17/field_init_shorthand.toml new file mode 100644 index 0000000..6da9383 --- /dev/null +++ b/data/1.17/field_init_shorthand.toml @@ -0,0 +1,6 @@ +title = "field init shorthands (`x` for `x: x` in struct initializers)" +flag = "field_init_shorthand" +rfc_id = 1682 +tracking_issue_id = 37340 +stabilization_pr_id = 39761 +edition_guide_path = "rust-2018/data-types/field-init-shorthand.html" diff --git a/data/1.17/static_in_const.md b/data/1.17/static_in_const.md deleted file mode 100644 index af2600d..0000000 --- a/data/1.17/static_in_const.md +++ /dev/null @@ -1,8 +0,0 @@ -+++ -title = "elision of `'static` lifetimes in `static`s and `const`s" -flag = "static_in_const" -rfc_id = 1623 -tracking_issue_id = 35897 -stabilization_pr_id = 39265 -edition_guide_path = "rust-2018/ownership-and-lifetimes/simpler-lifetimes-in-static-and-const.html" -+++ diff --git a/data/1.17/static_in_const.toml b/data/1.17/static_in_const.toml new file mode 100644 index 0000000..23d5484 --- /dev/null +++ b/data/1.17/static_in_const.toml @@ -0,0 +1,6 @@ +title = "elision of `'static` lifetimes in `static`s and `const`s" +flag = "static_in_const" +rfc_id = 1623 +tracking_issue_id = 35897 +stabilization_pr_id = 39265 +edition_guide_path = "rust-2018/ownership-and-lifetimes/simpler-lifetimes-in-static-and-const.html" diff --git a/data/1.17/static_recursion.md b/data/1.17/static_recursion.md deleted file mode 100644 index a49d0ab..0000000 --- a/data/1.17/static_recursion.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "recursive static items" -flag = "static_recursion" -tracking_issue_id = 29719 -stabilization_pr_id = 40027 -+++ diff --git a/data/1.17/static_recursion.toml b/data/1.17/static_recursion.toml new file mode 100644 index 0000000..6cd00ba --- /dev/null +++ b/data/1.17/static_recursion.toml @@ -0,0 +1,4 @@ +title = "recursive static items" +flag = "static_recursion" +tracking_issue_id = 29719 +stabilization_pr_id = 40027 diff --git a/data/1.17/where_clauses_with_self.md b/data/1.17/where_clauses_with_self.md deleted file mode 100644 index 95ec5de..0000000 --- a/data/1.17/where_clauses_with_self.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`Self` in the where clause of trait impl's" -rfc_id = 1647 -tracking_issue_id = 38864 -+++ diff --git a/data/1.17/where_clauses_with_self.toml b/data/1.17/where_clauses_with_self.toml new file mode 100644 index 0000000..05333a0 --- /dev/null +++ b/data/1.17/where_clauses_with_self.toml @@ -0,0 +1,3 @@ +title = "`Self` in the where clause of trait impl's" +rfc_id = 1647 +tracking_issue_id = 38864 diff --git a/data/1.18/pub_restricted.md b/data/1.18/pub_restricted.md deleted file mode 100644 index 5be0f2b..0000000 --- a/data/1.18/pub_restricted.md +++ /dev/null @@ -1,13 +0,0 @@ -+++ -title = "`pub(restricted)` visibilities" -flag = "pub_restricted" -rfc_id = 1422 -tracking_issue_id = 32409 -stabilization_pr_id = 40556 -edition_guide_path = "rust-2018/module-system/more-visibility-modifiers.html" -items = [ - "pub(crate)", - "pub(super)", - "pub(in m)", -] -+++ diff --git a/data/1.18/pub_restricted.toml b/data/1.18/pub_restricted.toml new file mode 100644 index 0000000..1a91b6b --- /dev/null +++ b/data/1.18/pub_restricted.toml @@ -0,0 +1,11 @@ +title = "`pub(restricted)` visibilities" +flag = "pub_restricted" +rfc_id = 1422 +tracking_issue_id = 32409 +stabilization_pr_id = 40556 +edition_guide_path = "rust-2018/module-system/more-visibility-modifiers.html" +items = [ + "pub(crate)", + "pub(super)", + "pub(in m)", +] diff --git a/data/1.18/windows_subsystem.md b/data/1.18/windows_subsystem.md deleted file mode 100644 index 4de142e..0000000 --- a/data/1.18/windows_subsystem.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`#![windows_subsystem]`" -flag = "windows_subsystem" -tracking_issue_id = 37499 -+++ diff --git a/data/1.18/windows_subsystem.toml b/data/1.18/windows_subsystem.toml new file mode 100644 index 0000000..0297b4d --- /dev/null +++ b/data/1.18/windows_subsystem.toml @@ -0,0 +1,3 @@ +title = "`#![windows_subsystem]`" +flag = "windows_subsystem" +tracking_issue_id = 37499 diff --git a/data/1.19/closure_to_fn_coercion.md b/data/1.19/closure_to_fn_coercion.md deleted file mode 100644 index 2837c01..0000000 --- a/data/1.19/closure_to_fn_coercion.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "non-capturing closure to function pointer coercion" -flag = "closure_to_fn_coercion" -rfc_id = 1558 -tracking_issue_id = 39817 -stabilization_pr_id = 42162 -+++ diff --git a/data/1.19/closure_to_fn_coercion.toml b/data/1.19/closure_to_fn_coercion.toml new file mode 100644 index 0000000..98aecf4 --- /dev/null +++ b/data/1.19/closure_to_fn_coercion.toml @@ -0,0 +1,5 @@ +title = "non-capturing closure to function pointer coercion" +flag = "closure_to_fn_coercion" +rfc_id = 1558 +tracking_issue_id = 39817 +stabilization_pr_id = 42162 diff --git a/data/1.19/eprint.md b/data/1.19/eprint.md deleted file mode 100644 index 14d42c3..0000000 --- a/data/1.19/eprint.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`eprint!`" -impl_pr_id = 41192 -+++ diff --git a/data/1.19/eprint.toml b/data/1.19/eprint.toml new file mode 100644 index 0000000..2414b05 --- /dev/null +++ b/data/1.19/eprint.toml @@ -0,0 +1,2 @@ +title = "`eprint!`" +impl_pr_id = 41192 diff --git a/data/1.19/eprintln.md b/data/1.19/eprintln.md deleted file mode 100644 index 6309f51..0000000 --- a/data/1.19/eprintln.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`eprintln!`" -rfc_id = 1869 -impl_pr_id = 41192 -tracking_issue_id = 40528 -+++ diff --git a/data/1.19/eprintln.toml b/data/1.19/eprintln.toml new file mode 100644 index 0000000..1296444 --- /dev/null +++ b/data/1.19/eprintln.toml @@ -0,0 +1,4 @@ +title = "`eprintln!`" +rfc_id = 1869 +impl_pr_id = 41192 +tracking_issue_id = 40528 diff --git a/data/1.19/loop_break_value.md b/data/1.19/loop_break_value.md deleted file mode 100644 index 9b426b4..0000000 --- a/data/1.19/loop_break_value.md +++ /dev/null @@ -1,8 +0,0 @@ -+++ -title = "`break` with a value inside `loop`s" -flag = "loop_break_value" -rfc_id = 1624 -tracking_issue_id = 37339 -stabilization_pr_id = 42016 -edition_guide_path = "rust-2018/control-flow/loops-can-break-with-a-value.html" -+++ diff --git a/data/1.19/loop_break_value.toml b/data/1.19/loop_break_value.toml new file mode 100644 index 0000000..4aa285d --- /dev/null +++ b/data/1.19/loop_break_value.toml @@ -0,0 +1,6 @@ +title = "`break` with a value inside `loop`s" +flag = "loop_break_value" +rfc_id = 1624 +tracking_issue_id = 37339 +stabilization_pr_id = 42016 +edition_guide_path = "rust-2018/control-flow/loops-can-break-with-a-value.html" diff --git a/data/1.19/relaxed_adts.md b/data/1.19/relaxed_adts.md deleted file mode 100644 index 05333af..0000000 --- a/data/1.19/relaxed_adts.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "numeric fields in struct expressions and patterns" -flag = "relaxed_adts" -tracking_issue_id = 35626 -+++ diff --git a/data/1.19/relaxed_adts.toml b/data/1.19/relaxed_adts.toml new file mode 100644 index 0000000..a09b252 --- /dev/null +++ b/data/1.19/relaxed_adts.toml @@ -0,0 +1,3 @@ +title = "numeric fields in struct expressions and patterns" +flag = "relaxed_adts" +tracking_issue_id = 35626 diff --git a/data/1.19/untagged_unions.md b/data/1.19/untagged_unions.md deleted file mode 100644 index 2875565..0000000 --- a/data/1.19/untagged_unions.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`union`s" -flag = "untagged_unions" -rfc_id = 1444 -tracking_issue_id = 32836 -stabilization_pr_id = 42068 -+++ diff --git a/data/1.19/untagged_unions.toml b/data/1.19/untagged_unions.toml new file mode 100644 index 0000000..7243b9f --- /dev/null +++ b/data/1.19/untagged_unions.toml @@ -0,0 +1,5 @@ +title = "`union`s" +flag = "untagged_unions" +rfc_id = 1444 +tracking_issue_id = 32836 +stabilization_pr_id = 42068 diff --git a/data/1.2/atomic_ptr_send.md b/data/1.2/atomic_ptr_send.md deleted file mode 100644 index 1e3997e..0000000 --- a/data/1.2/atomic_ptr_send.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`Send` implementation for `AtomicPtr`" -+++ diff --git a/data/1.2/atomic_ptr_send.toml b/data/1.2/atomic_ptr_send.toml new file mode 100644 index 0000000..a4b14b8 --- /dev/null +++ b/data/1.2/atomic_ptr_send.toml @@ -0,0 +1 @@ +title = "`Send` implementation for `AtomicPtr`" diff --git a/data/1.2/iter_empty.md b/data/1.2/iter_empty.md deleted file mode 100644 index a28fcfe..0000000 --- a/data/1.2/iter_empty.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`iter::empty`" -+++ diff --git a/data/1.2/iter_empty.toml b/data/1.2/iter_empty.toml new file mode 100644 index 0000000..8aaef12 --- /dev/null +++ b/data/1.2/iter_empty.toml @@ -0,0 +1 @@ +title = "`iter::empty`" diff --git a/data/1.2/iter_once.md b/data/1.2/iter_once.md deleted file mode 100644 index 8472aec..0000000 --- a/data/1.2/iter_once.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`iter::once`" -+++ diff --git a/data/1.2/iter_once.toml b/data/1.2/iter_once.toml new file mode 100644 index 0000000..6bfd0c5 --- /dev/null +++ b/data/1.2/iter_once.toml @@ -0,0 +1 @@ +title = "`iter::once`" diff --git a/data/1.20/associated_consts.md b/data/1.20/associated_consts.md deleted file mode 100644 index 1d45b2a..0000000 --- a/data/1.20/associated_consts.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "associated constants in `trait` and `impl` blocks" -flag = "associated_consts" -tracking_issue_id = 29646 -stabilization_pr_id = 42809 -edition_guide_path = "rust-2018/trait-system/associated-constants.html" -+++ diff --git a/data/1.20/associated_consts.toml b/data/1.20/associated_consts.toml new file mode 100644 index 0000000..6ae909b --- /dev/null +++ b/data/1.20/associated_consts.toml @@ -0,0 +1,5 @@ +title = "associated constants in `trait` and `impl` blocks" +flag = "associated_consts" +tracking_issue_id = 29646 +stabilization_pr_id = 42809 +edition_guide_path = "rust-2018/trait-system/associated-constants.html" diff --git a/data/1.20/compile_error.md b/data/1.20/compile_error.md deleted file mode 100644 index f7e2697..0000000 --- a/data/1.20/compile_error.md +++ /dev/null @@ -1,8 +0,0 @@ -+++ -title = "`compile_error!`" -flag = "compile_error" -rfc_id = 1695 -impl_pr_id = 42620 -tracking_issue_id = 40872 -stabilization_pr_id = 43373 -+++ diff --git a/data/1.20/compile_error.toml b/data/1.20/compile_error.toml new file mode 100644 index 0000000..727e64e --- /dev/null +++ b/data/1.20/compile_error.toml @@ -0,0 +1,6 @@ +title = "`compile_error!`" +flag = "compile_error" +rfc_id = 1695 +impl_pr_id = 42620 +tracking_issue_id = 40872 +stabilization_pr_id = 43373 diff --git a/data/1.20/struct_field_attributes.md b/data/1.20/struct_field_attributes.md deleted file mode 100644 index 3610b14..0000000 --- a/data/1.20/struct_field_attributes.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "attributes on struct literal fields" -flag = "struct_field_attributes" -tracking_issue_id = 38814 -+++ diff --git a/data/1.20/struct_field_attributes.toml b/data/1.20/struct_field_attributes.toml new file mode 100644 index 0000000..7a8185e --- /dev/null +++ b/data/1.20/struct_field_attributes.toml @@ -0,0 +1,3 @@ +title = "attributes on struct literal fields" +flag = "struct_field_attributes" +tracking_issue_id = 38814 diff --git a/data/1.20/unimplemented_macro_args.md b/data/1.20/unimplemented_macro_args.md deleted file mode 100644 index c47ae50..0000000 --- a/data/1.20/unimplemented_macro_args.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`unimplemented!` with a message" -impl_pr_id = 42155 -+++ diff --git a/data/1.20/unimplemented_macro_args.toml b/data/1.20/unimplemented_macro_args.toml new file mode 100644 index 0000000..9219646 --- /dev/null +++ b/data/1.20/unimplemented_macro_args.toml @@ -0,0 +1,2 @@ +title = "`unimplemented!` with a message" +impl_pr_id = 42155 diff --git a/data/1.22/drop_types_in_const.md b/data/1.22/drop_types_in_const.md deleted file mode 100644 index a80648d..0000000 --- a/data/1.22/drop_types_in_const.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`Drop` types in constants" -flag = "drop_types_in_const" -rfc_id = 1440 -tracking_issue_id = 33156 -+++ diff --git a/data/1.22/drop_types_in_const.toml b/data/1.22/drop_types_in_const.toml new file mode 100644 index 0000000..232623f --- /dev/null +++ b/data/1.22/drop_types_in_const.toml @@ -0,0 +1,4 @@ +title = "`Drop` types in constants" +flag = "drop_types_in_const" +rfc_id = 1440 +tracking_issue_id = 33156 diff --git a/data/1.23/unsized_ptr_as_mut.md b/data/1.23/unsized_ptr_as_mut.md deleted file mode 100644 index 9bd5d93..0000000 --- a/data/1.23/unsized_ptr_as_mut.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`as_mut` on `*mut T`" -impl_pr_id = 44932 -+++ diff --git a/data/1.23/unsized_ptr_as_mut.toml b/data/1.23/unsized_ptr_as_mut.toml new file mode 100644 index 0000000..421dc07 --- /dev/null +++ b/data/1.23/unsized_ptr_as_mut.toml @@ -0,0 +1,2 @@ +title = "`as_mut` on `*mut T`" +impl_pr_id = 44932 diff --git a/data/1.23/unsized_ptr_as_ref.md b/data/1.23/unsized_ptr_as_ref.md deleted file mode 100644 index 7cc64a3..0000000 --- a/data/1.23/unsized_ptr_as_ref.md +++ /dev/null @@ -1,8 +0,0 @@ -+++ -title = "`as_ref` on pointers to unsized types" -impl_pr_id = 44932 -items = [ - "<*const T>::as_ref", - "<*mut T>::as_ref", -] -+++ diff --git a/data/1.23/unsized_ptr_as_ref.toml b/data/1.23/unsized_ptr_as_ref.toml new file mode 100644 index 0000000..88f8c69 --- /dev/null +++ b/data/1.23/unsized_ptr_as_ref.toml @@ -0,0 +1,6 @@ +title = "`as_ref` on pointers to unsized types" +impl_pr_id = 44932 +items = [ + "<*const T>::as_ref", + "<*mut T>::as_ref", +] diff --git a/data/1.24/abi_sysv64.md b/data/1.24/abi_sysv64.md deleted file mode 100644 index 3d8db3d..0000000 --- a/data/1.24/abi_sysv64.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "the sysV64 ABI on any platform" -flag = "abi_sysv64" -tracking_issue_id = 36167 -+++ diff --git a/data/1.24/abi_sysv64.toml b/data/1.24/abi_sysv64.toml new file mode 100644 index 0000000..ebb44ea --- /dev/null +++ b/data/1.24/abi_sysv64.toml @@ -0,0 +1,3 @@ +title = "the sysV64 ABI on any platform" +flag = "abi_sysv64" +tracking_issue_id = 36167 diff --git a/data/1.24/unsized_ptr_is_null.md b/data/1.24/unsized_ptr_is_null.md deleted file mode 100644 index 99f0c0f..0000000 --- a/data/1.24/unsized_ptr_is_null.md +++ /dev/null @@ -1,8 +0,0 @@ -+++ -title = "`is_null` on pointers to unsized types" -impl_pr_id = 46094 -items = [ - "<*const T>::is_null", - "<*mut T>::is_null", -] -+++ diff --git a/data/1.24/unsized_ptr_is_null.toml b/data/1.24/unsized_ptr_is_null.toml new file mode 100644 index 0000000..7e9cacf --- /dev/null +++ b/data/1.24/unsized_ptr_is_null.toml @@ -0,0 +1,6 @@ +title = "`is_null` on pointers to unsized types" +impl_pr_id = 46094 +items = [ + "<*const T>::is_null", + "<*mut T>::is_null", +] diff --git a/data/1.25/match_beginning_vert.md b/data/1.25/match_beginning_vert.md deleted file mode 100644 index 5a1793f..0000000 --- a/data/1.25/match_beginning_vert.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`|` at the beginning of match arms" -flag = "match_beginning_vert" -rfc_id = 1925 -tracking_issue_id = 44101 -stabilization_pr_id = 47947 -+++ diff --git a/data/1.25/match_beginning_vert.toml b/data/1.25/match_beginning_vert.toml new file mode 100644 index 0000000..afdc8d2 --- /dev/null +++ b/data/1.25/match_beginning_vert.toml @@ -0,0 +1,5 @@ +title = "`|` at the beginning of match arms" +flag = "match_beginning_vert" +rfc_id = 1925 +tracking_issue_id = 44101 +stabilization_pr_id = 47947 diff --git a/data/1.25/repr_align.md b/data/1.25/repr_align.md deleted file mode 100644 index 272c6be..0000000 --- a/data/1.25/repr_align.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`#[repr(align(N))]`" -flag = "repr_align" -rfc_id = 1358 -tracking_issue_id = 33626 -stabilization_pr_id = 47006 -+++ diff --git a/data/1.25/repr_align.toml b/data/1.25/repr_align.toml new file mode 100644 index 0000000..99202b7 --- /dev/null +++ b/data/1.25/repr_align.toml @@ -0,0 +1,5 @@ +title = "`#[repr(align(N))]`" +flag = "repr_align" +rfc_id = 1358 +tracking_issue_id = 33626 +stabilization_pr_id = 47006 diff --git a/data/1.25/use_nested_groups.md b/data/1.25/use_nested_groups.md deleted file mode 100644 index f3a4e28..0000000 --- a/data/1.25/use_nested_groups.md +++ /dev/null @@ -1,8 +0,0 @@ -+++ -title = "nested groups in imports" -flag = "use_nested_groups" -rfc_id = 2128 -tracking_issue_id = 44494 -stabilization_pr_id = 47948 -edition_guide_path = "rust-2018/module-system/nested-imports-with-use.html" -+++ diff --git a/data/1.25/use_nested_groups.toml b/data/1.25/use_nested_groups.toml new file mode 100644 index 0000000..3f52fcf --- /dev/null +++ b/data/1.25/use_nested_groups.toml @@ -0,0 +1,6 @@ +title = "nested groups in imports" +flag = "use_nested_groups" +rfc_id = 2128 +tracking_issue_id = 44494 +stabilization_pr_id = 47948 +edition_guide_path = "rust-2018/module-system/nested-imports-with-use.html" diff --git a/data/1.26/clone_closures.md b/data/1.26/clone_closures.md deleted file mode 100644 index 4347ac3..0000000 --- a/data/1.26/clone_closures.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`Clone` implementation for applicable closures" -flag = "clone_closures" -rfc_id = 2132 -tracking_issue_id = 44490 -+++ diff --git a/data/1.26/clone_closures.toml b/data/1.26/clone_closures.toml new file mode 100644 index 0000000..634f2bf --- /dev/null +++ b/data/1.26/clone_closures.toml @@ -0,0 +1,4 @@ +title = "`Clone` implementation for applicable closures" +flag = "clone_closures" +rfc_id = 2132 +tracking_issue_id = 44490 diff --git a/data/1.26/conservative_impl_trait.md b/data/1.26/conservative_impl_trait.md deleted file mode 100644 index e720db0..0000000 --- a/data/1.26/conservative_impl_trait.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`impl Trait` in function return types" -flag = "conservative_impl_trait" -tracking_issue_id = 34511 -edition_guide_path = "rust-2018/trait-system/impl-trait-for-returning-complex-types-with-ease.html" -+++ diff --git a/data/1.26/conservative_impl_trait.toml b/data/1.26/conservative_impl_trait.toml new file mode 100644 index 0000000..f4af4f3 --- /dev/null +++ b/data/1.26/conservative_impl_trait.toml @@ -0,0 +1,4 @@ +title = "`impl Trait` in function return types" +flag = "conservative_impl_trait" +tracking_issue_id = 34511 +edition_guide_path = "rust-2018/trait-system/impl-trait-for-returning-complex-types-with-ease.html" diff --git a/data/1.26/const_indexing.md b/data/1.26/const_indexing.md deleted file mode 100644 index 81a380a..0000000 --- a/data/1.26/const_indexing.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "array indexing in constants" -flag = "const_indexing" -tracking_issue_id = 29947 -stabilization_pr_id = 46882 -+++ diff --git a/data/1.26/const_indexing.toml b/data/1.26/const_indexing.toml new file mode 100644 index 0000000..931179c --- /dev/null +++ b/data/1.26/const_indexing.toml @@ -0,0 +1,4 @@ +title = "array indexing in constants" +flag = "const_indexing" +tracking_issue_id = 29947 +stabilization_pr_id = 46882 diff --git a/data/1.26/copy_closures.md b/data/1.26/copy_closures.md deleted file mode 100644 index 4bf7cb1..0000000 --- a/data/1.26/copy_closures.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`Copy` implementation for applicable closures" -flag = "copy_closures" -rfc_id = 2132 -tracking_issue_id = 44490 -+++ diff --git a/data/1.26/copy_closures.toml b/data/1.26/copy_closures.toml new file mode 100644 index 0000000..7d552cf --- /dev/null +++ b/data/1.26/copy_closures.toml @@ -0,0 +1,4 @@ +title = "`Copy` implementation for applicable closures" +flag = "copy_closures" +rfc_id = 2132 +tracking_issue_id = 44490 diff --git a/data/1.26/dotdoteq_in_patterns.md b/data/1.26/dotdoteq_in_patterns.md deleted file mode 100644 index d254c3e..0000000 --- a/data/1.26/dotdoteq_in_patterns.md +++ /dev/null @@ -1,11 +0,0 @@ -+++ -title = "inclusive ranges in patterns" -flag = "dotdoteq_in_patterns" -rfc_id = 1192 -tracking_issue_id = 28237 -#book_path = "ch18-03-pattern-syntax.html#matching-ranges-of-values-with-" -items = [ - "a..=b", - "..=b", -] -+++ diff --git a/data/1.26/dotdoteq_in_patterns.toml b/data/1.26/dotdoteq_in_patterns.toml new file mode 100644 index 0000000..9fc06e3 --- /dev/null +++ b/data/1.26/dotdoteq_in_patterns.toml @@ -0,0 +1,9 @@ +title = "inclusive ranges in patterns" +flag = "dotdoteq_in_patterns" +rfc_id = 1192 +tracking_issue_id = 28237 +#book_path = "ch18-03-pattern-syntax.html#matching-ranges-of-values-with-" +items = [ + "a..=b", + "..=b", +] diff --git a/data/1.26/i128_type.md b/data/1.26/i128_type.md deleted file mode 100644 index 057d401..0000000 --- a/data/1.26/i128_type.md +++ /dev/null @@ -1,10 +0,0 @@ -+++ -title = "128 bit integer types" -flag = "i128_type" -tracking_issue_id = 35118 -edition_guide_path = "rust-2018/data-types/128-bit-integers.html" -items = [ - "i128", - "u128", -] -+++ diff --git a/data/1.26/i128_type.toml b/data/1.26/i128_type.toml new file mode 100644 index 0000000..64c9456 --- /dev/null +++ b/data/1.26/i128_type.toml @@ -0,0 +1,8 @@ +title = "128 bit integer types" +flag = "i128_type" +tracking_issue_id = 35118 +edition_guide_path = "rust-2018/data-types/128-bit-integers.html" +items = [ + "i128", + "u128", +] diff --git a/data/1.26/inclusive_range_syntax.md b/data/1.26/inclusive_range_syntax.md deleted file mode 100644 index a0d5a7c..0000000 --- a/data/1.26/inclusive_range_syntax.md +++ /dev/null @@ -1,12 +0,0 @@ -+++ -title = "inclusive range syntax" -flag = "inclusive_range_syntax" -rfc_id = 1192 -tracking_issue_id = 28237 -stabilization_pr_id = 47813 -edition_guide_path = "rust-2018/data-types/inclusive-ranges.html" -items = [ - "a..=b", - "..=b", -] -+++ diff --git a/data/1.26/inclusive_range_syntax.toml b/data/1.26/inclusive_range_syntax.toml new file mode 100644 index 0000000..8141d8e --- /dev/null +++ b/data/1.26/inclusive_range_syntax.toml @@ -0,0 +1,10 @@ +title = "inclusive range syntax" +flag = "inclusive_range_syntax" +rfc_id = 1192 +tracking_issue_id = 28237 +stabilization_pr_id = 47813 +edition_guide_path = "rust-2018/data-types/inclusive-ranges.html" +items = [ + "a..=b", + "..=b", +] diff --git a/data/1.26/match_default_bindings.md b/data/1.26/match_default_bindings.md deleted file mode 100644 index 13c20b8..0000000 --- a/data/1.26/match_default_bindings.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "default match binding modes" -flag = "match_default_bindings" -rfc_id = 2005 -stabilization_pr_id = 42640 -edition_guide_path = "rust-2018/ownership-and-lifetimes/default-match-bindings.html" -+++ diff --git a/data/1.26/match_default_bindings.toml b/data/1.26/match_default_bindings.toml new file mode 100644 index 0000000..059953e --- /dev/null +++ b/data/1.26/match_default_bindings.toml @@ -0,0 +1,5 @@ +title = "default match binding modes" +flag = "match_default_bindings" +rfc_id = 2005 +stabilization_pr_id = 42640 +edition_guide_path = "rust-2018/ownership-and-lifetimes/default-match-bindings.html" diff --git a/data/1.26/termination_trait.md b/data/1.26/termination_trait.md deleted file mode 100644 index 0b25885..0000000 --- a/data/1.26/termination_trait.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "types implementing `Termination` as the return type for `fn main()`" -flag = "termination_trait" -tracking_issue_id = 43301 -edition_guide_path = "rust-2018/error-handling-and-panics/question-mark-in-main-and-tests.html" -+++ diff --git a/data/1.26/termination_trait.toml b/data/1.26/termination_trait.toml new file mode 100644 index 0000000..037cf8a --- /dev/null +++ b/data/1.26/termination_trait.toml @@ -0,0 +1,4 @@ +title = "types implementing `Termination` as the return type for `fn main()`" +flag = "termination_trait" +tracking_issue_id = 43301 +edition_guide_path = "rust-2018/error-handling-and-panics/question-mark-in-main-and-tests.html" diff --git a/data/1.26/underscore_lifetimes.md b/data/1.26/underscore_lifetimes.md deleted file mode 100644 index a532068..0000000 --- a/data/1.26/underscore_lifetimes.md +++ /dev/null @@ -1,8 +0,0 @@ -+++ -title = "placeholder lifetimes (`'_`)" -flag = "underscore_lifetimes" -rfc_id = 2115 -tracking_issue_id = 48469 -stabilization_pr_id = 49458 -edition_guide_path = "rust-2018/ownership-and-lifetimes/the-anonymous-lifetime.html" -+++ diff --git a/data/1.26/underscore_lifetimes.toml b/data/1.26/underscore_lifetimes.toml new file mode 100644 index 0000000..93c964d --- /dev/null +++ b/data/1.26/underscore_lifetimes.toml @@ -0,0 +1,6 @@ +title = "placeholder lifetimes (`'_`)" +flag = "underscore_lifetimes" +rfc_id = 2115 +tracking_issue_id = 48469 +stabilization_pr_id = 49458 +edition_guide_path = "rust-2018/ownership-and-lifetimes/the-anonymous-lifetime.html" diff --git a/data/1.26/universal_impl_trait.md b/data/1.26/universal_impl_trait.md deleted file mode 100644 index 401022d..0000000 --- a/data/1.26/universal_impl_trait.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`impl Trait` in function arguments" -flag = "universal_impl_trait" -tracking_issue_id = 34511 -edition_guide_path = "rust-2018/trait-system/impl-trait-for-returning-complex-types-with-ease.html" -+++ diff --git a/data/1.26/universal_impl_trait.toml b/data/1.26/universal_impl_trait.toml new file mode 100644 index 0000000..1c31389 --- /dev/null +++ b/data/1.26/universal_impl_trait.toml @@ -0,0 +1,4 @@ +title = "`impl Trait` in function arguments" +flag = "universal_impl_trait" +tracking_issue_id = 34511 +edition_guide_path = "rust-2018/trait-system/impl-trait-for-returning-complex-types-with-ease.html" diff --git a/data/1.27/cfg_target_feature.md b/data/1.27/cfg_target_feature.md deleted file mode 100644 index 36bfeca..0000000 --- a/data/1.27/cfg_target_feature.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`#[cfg(target_feature = \"...\")]`" -flag = "cfg_target_feature" -tracking_issue_id = 29717 -+++ diff --git a/data/1.27/cfg_target_feature.toml b/data/1.27/cfg_target_feature.toml new file mode 100644 index 0000000..995b2df --- /dev/null +++ b/data/1.27/cfg_target_feature.toml @@ -0,0 +1,3 @@ +title = "`#[cfg(target_feature = \"...\")]`" +flag = "cfg_target_feature" +tracking_issue_id = 29717 diff --git a/data/1.27/dyn_trait.md b/data/1.27/dyn_trait.md deleted file mode 100644 index 65feea6..0000000 --- a/data/1.27/dyn_trait.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`dyn Trait` as a syntax for trait objects" -flag = "dyn_trait" -tracking_issue_id = 44662 -edition_guide_path = "rust-2018/trait-system/dyn-trait-for-trait-objects.html" -+++ diff --git a/data/1.27/dyn_trait.toml b/data/1.27/dyn_trait.toml new file mode 100644 index 0000000..1bc4151 --- /dev/null +++ b/data/1.27/dyn_trait.toml @@ -0,0 +1,4 @@ +title = "`dyn Trait` as a syntax for trait objects" +flag = "dyn_trait" +tracking_issue_id = 44662 +edition_guide_path = "rust-2018/trait-system/dyn-trait-for-trait-objects.html" diff --git a/data/1.27/fn_must_use.md b/data/1.27/fn_must_use.md deleted file mode 100644 index 4d25ae5..0000000 --- a/data/1.27/fn_must_use.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`#[must_use]` on functions" -flag = "fn_must_use" -rfc_id = 1940 -tracking_issue_id = 43302 -+++ diff --git a/data/1.27/fn_must_use.toml b/data/1.27/fn_must_use.toml new file mode 100644 index 0000000..a77e7ff --- /dev/null +++ b/data/1.27/fn_must_use.toml @@ -0,0 +1,4 @@ +title = "`#[must_use]` on functions" +flag = "fn_must_use" +rfc_id = 1940 +tracking_issue_id = 43302 diff --git a/data/1.27/generic_param_attrs.md b/data/1.27/generic_param_attrs.md deleted file mode 100644 index fb55cf0..0000000 --- a/data/1.27/generic_param_attrs.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "attributes on generic parameters" -flag = "generic_param_attrs" -rfc_id = 1327 -tracking_issue_id = 48848 -+++ diff --git a/data/1.27/generic_param_attrs.toml b/data/1.27/generic_param_attrs.toml new file mode 100644 index 0000000..d837663 --- /dev/null +++ b/data/1.27/generic_param_attrs.toml @@ -0,0 +1,4 @@ +title = "attributes on generic parameters" +flag = "generic_param_attrs" +rfc_id = 1327 +tracking_issue_id = 48848 diff --git a/data/1.27/macro_lifetime_matcher.md b/data/1.27/macro_lifetime_matcher.md deleted file mode 100644 index a3be6d7..0000000 --- a/data/1.27/macro_lifetime_matcher.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "the `lifetime` fragment specifier in `macro_rules!`" -flag = "macro_lifetime_matcher" -tracking_issue_id = 34303 -stabilization_pr_id = 50385 -+++ diff --git a/data/1.27/macro_lifetime_matcher.toml b/data/1.27/macro_lifetime_matcher.toml new file mode 100644 index 0000000..a0a2013 --- /dev/null +++ b/data/1.27/macro_lifetime_matcher.toml @@ -0,0 +1,4 @@ +title = "the `lifetime` fragment specifier in `macro_rules!`" +flag = "macro_lifetime_matcher" +tracking_issue_id = 34303 +stabilization_pr_id = 50385 diff --git a/data/1.27/proc_ident.md b/data/1.27/proc_ident.md deleted file mode 100644 index 3f1c924..0000000 --- a/data/1.27/proc_ident.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`proc` as an identifier" -impl_pr_id = 49699 -+++ diff --git a/data/1.27/proc_ident.toml b/data/1.27/proc_ident.toml new file mode 100644 index 0000000..f52b486 --- /dev/null +++ b/data/1.27/proc_ident.toml @@ -0,0 +1,2 @@ +title = "`proc` as an identifier" +impl_pr_id = 49699 diff --git a/data/1.27/target_feature.md b/data/1.27/target_feature.md deleted file mode 100644 index 5c00f6e..0000000 --- a/data/1.27/target_feature.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`#[target_feature(...)]`" -+++ diff --git a/data/1.27/target_feature.toml b/data/1.27/target_feature.toml new file mode 100644 index 0000000..55f9e22 --- /dev/null +++ b/data/1.27/target_feature.toml @@ -0,0 +1 @@ +title = "`#[target_feature(...)]`" diff --git a/data/1.27/termination_trait_test.md b/data/1.27/termination_trait_test.md deleted file mode 100644 index 9ad97b6..0000000 --- a/data/1.27/termination_trait_test.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "types implementing `Termination` as the return type for `#[test]`s" -flag = "termination_trait_test" -tracking_issue_id = 48854 -+++ diff --git a/data/1.27/termination_trait_test.toml b/data/1.27/termination_trait_test.toml new file mode 100644 index 0000000..bbc28a1 --- /dev/null +++ b/data/1.27/termination_trait_test.toml @@ -0,0 +1,3 @@ +title = "types implementing `Termination` as the return type for `#[test]`s" +flag = "termination_trait_test" +tracking_issue_id = 48854 diff --git a/data/1.28/alignof_ident.md b/data/1.28/alignof_ident.md deleted file mode 100644 index f03615f..0000000 --- a/data/1.28/alignof_ident.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`alignof` as an identifier" -rfc_id = 2421 -impl_pr_id = 51196 -+++ diff --git a/data/1.28/alignof_ident.toml b/data/1.28/alignof_ident.toml new file mode 100644 index 0000000..325c380 --- /dev/null +++ b/data/1.28/alignof_ident.toml @@ -0,0 +1,3 @@ +title = "`alignof` as an identifier" +rfc_id = 2421 +impl_pr_id = 51196 diff --git a/data/1.28/global_allocator.md b/data/1.28/global_allocator.md deleted file mode 100644 index 1d59791..0000000 --- a/data/1.28/global_allocator.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`#[global_allocator]`" -flag = "global_allocator" -tracking_issue_id = 27389 -edition_guide_path = "rust-2018/platform-and-target-support/global-allocators.html" -+++ diff --git a/data/1.28/global_allocator.toml b/data/1.28/global_allocator.toml new file mode 100644 index 0000000..9ad0f9b --- /dev/null +++ b/data/1.28/global_allocator.toml @@ -0,0 +1,4 @@ +title = "`#[global_allocator]`" +flag = "global_allocator" +tracking_issue_id = 27389 +edition_guide_path = "rust-2018/platform-and-target-support/global-allocators.html" diff --git a/data/1.28/offsetof_ident.md b/data/1.28/offsetof_ident.md deleted file mode 100644 index 3d166b1..0000000 --- a/data/1.28/offsetof_ident.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`offsetof` as an identifier" -rfc_id = 2421 -impl_pr_id = 51196 -+++ diff --git a/data/1.28/offsetof_ident.toml b/data/1.28/offsetof_ident.toml new file mode 100644 index 0000000..a5acce9 --- /dev/null +++ b/data/1.28/offsetof_ident.toml @@ -0,0 +1,3 @@ +title = "`offsetof` as an identifier" +rfc_id = 2421 +impl_pr_id = 51196 diff --git a/data/1.28/pure_ident.md b/data/1.28/pure_ident.md deleted file mode 100644 index ac3e743..0000000 --- a/data/1.28/pure_ident.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`pure` as an identifier" -rfc_id = 2421 -impl_pr_id = 51196 -+++ diff --git a/data/1.28/pure_ident.toml b/data/1.28/pure_ident.toml new file mode 100644 index 0000000..e5940d9 --- /dev/null +++ b/data/1.28/pure_ident.toml @@ -0,0 +1,3 @@ +title = "`pure` as an identifier" +rfc_id = 2421 +impl_pr_id = 51196 diff --git a/data/1.28/repr_transparent.md b/data/1.28/repr_transparent.md deleted file mode 100644 index 477e3c2..0000000 --- a/data/1.28/repr_transparent.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`#[repr(transparent)]` on newtype structs" -flag = "repr_transparent" -tracking_issue_id = 43036 -stabilization_pr_id = 51562 -+++ diff --git a/data/1.28/repr_transparent.toml b/data/1.28/repr_transparent.toml new file mode 100644 index 0000000..f9762d2 --- /dev/null +++ b/data/1.28/repr_transparent.toml @@ -0,0 +1,4 @@ +title = "`#[repr(transparent)]` on newtype structs" +flag = "repr_transparent" +tracking_issue_id = 43036 +stabilization_pr_id = 51562 diff --git a/data/1.28/sizeof_ident.md b/data/1.28/sizeof_ident.md deleted file mode 100644 index e3860be..0000000 --- a/data/1.28/sizeof_ident.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`sizeof` as an identifier" -rfc_id = 2421 -impl_pr_id = 51196 -+++ diff --git a/data/1.28/sizeof_ident.toml b/data/1.28/sizeof_ident.toml new file mode 100644 index 0000000..03b3d6d --- /dev/null +++ b/data/1.28/sizeof_ident.toml @@ -0,0 +1,3 @@ +title = "`sizeof` as an identifier" +rfc_id = 2421 +impl_pr_id = 51196 diff --git a/data/1.29/proc_macro.md b/data/1.29/proc_macro.md deleted file mode 100644 index a52fef5..0000000 --- a/data/1.29/proc_macro.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "procedural macros" -flag = "proc_macro" -tracking_issue_id = 38356 -stabilization_pr_id = 52081 -+++ diff --git a/data/1.29/proc_macro.toml b/data/1.29/proc_macro.toml new file mode 100644 index 0000000..79e34a8 --- /dev/null +++ b/data/1.29/proc_macro.toml @@ -0,0 +1,4 @@ +title = "procedural macros" +flag = "proc_macro" +tracking_issue_id = 38356 +stabilization_pr_id = 52081 diff --git a/data/1.3/duration.md b/data/1.3/duration.md deleted file mode 100644 index 359343a..0000000 --- a/data/1.3/duration.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`std::time::Duration`" -flag = "duration" -stabilization_pr_id = 26818 -+++ diff --git a/data/1.3/duration.toml b/data/1.3/duration.toml new file mode 100644 index 0000000..b3148de --- /dev/null +++ b/data/1.3/duration.toml @@ -0,0 +1,3 @@ +title = "`std::time::Duration`" +flag = "duration" +stabilization_pr_id = 26818 diff --git a/data/1.3/time.md b/data/1.3/time.md deleted file mode 100644 index ed6f7e0..0000000 --- a/data/1.3/time.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`std::time`" -flag = "time" -stabilization_pr_id = 26818 -+++ diff --git a/data/1.3/time.toml b/data/1.3/time.toml new file mode 100644 index 0000000..0c64c12 --- /dev/null +++ b/data/1.3/time.toml @@ -0,0 +1,3 @@ +title = "`std::time`" +flag = "time" +stabilization_pr_id = 26818 diff --git a/data/1.30/attr_literals.md b/data/1.30/attr_literals.md deleted file mode 100644 index e8f82e6..0000000 --- a/data/1.30/attr_literals.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "non-string literals in attribute lists and values of key-value pairs" -flag = "attr_literals" -tracking_issue_id = 34981 -+++ diff --git a/data/1.30/attr_literals.toml b/data/1.30/attr_literals.toml new file mode 100644 index 0000000..fb5e63b --- /dev/null +++ b/data/1.30/attr_literals.toml @@ -0,0 +1,3 @@ +title = "non-string literals in attribute lists and values of key-value pairs" +flag = "attr_literals" +tracking_issue_id = 34981 diff --git a/data/1.30/crate_in_paths.md b/data/1.30/crate_in_paths.md deleted file mode 100644 index b182811..0000000 --- a/data/1.30/crate_in_paths.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`crate` in paths" -flag = "crate_in_paths" -tracking_issue_id = 45477 -+++ diff --git a/data/1.30/crate_in_paths.toml b/data/1.30/crate_in_paths.toml new file mode 100644 index 0000000..581b2fd --- /dev/null +++ b/data/1.30/crate_in_paths.toml @@ -0,0 +1,3 @@ +title = "`crate` in paths" +flag = "crate_in_paths" +tracking_issue_id = 45477 diff --git a/data/1.30/extern_absolute_paths.md b/data/1.30/extern_absolute_paths.md deleted file mode 100644 index bbb2386..0000000 --- a/data/1.30/extern_absolute_paths.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "absolute paths as paths from other crates" -flag = "extern_absolute_paths" -tracking_issue_id = 44660 -+++ diff --git a/data/1.30/extern_absolute_paths.toml b/data/1.30/extern_absolute_paths.toml new file mode 100644 index 0000000..de7a2fa --- /dev/null +++ b/data/1.30/extern_absolute_paths.toml @@ -0,0 +1,3 @@ +title = "absolute paths as paths from other crates" +flag = "extern_absolute_paths" +tracking_issue_id = 44660 diff --git a/data/1.30/infer_outlives_requirements.md b/data/1.30/infer_outlives_requirements.md deleted file mode 100644 index fb61c78..0000000 --- a/data/1.30/infer_outlives_requirements.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "outlives requirement inference" -flag = "infer_outlives_requirements" -rfc_id = 2093 -tracking_issue_id = 44493 -+++ diff --git a/data/1.30/infer_outlives_requirements.toml b/data/1.30/infer_outlives_requirements.toml new file mode 100644 index 0000000..c21bf7c --- /dev/null +++ b/data/1.30/infer_outlives_requirements.toml @@ -0,0 +1,4 @@ +title = "outlives requirement inference" +flag = "infer_outlives_requirements" +rfc_id = 2093 +tracking_issue_id = 44493 diff --git a/data/1.30/macro_vis_matcher.md b/data/1.30/macro_vis_matcher.md deleted file mode 100644 index 3d494da..0000000 --- a/data/1.30/macro_vis_matcher.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "the `vis` fragment specifier in `macro_rules!`" -flag = "macro_vis_matcher" -tracking_issue_id = 41022 -+++ diff --git a/data/1.30/macro_vis_matcher.toml b/data/1.30/macro_vis_matcher.toml new file mode 100644 index 0000000..64066ea --- /dev/null +++ b/data/1.30/macro_vis_matcher.toml @@ -0,0 +1,3 @@ +title = "the `vis` fragment specifier in `macro_rules!`" +flag = "macro_vis_matcher" +tracking_issue_id = 41022 diff --git a/data/1.30/non_modrs_mods.md b/data/1.30/non_modrs_mods.md deleted file mode 100644 index 84b1574..0000000 --- a/data/1.30/non_modrs_mods.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`foo.rs` as an alternative to `foo/mod.rs`" -flag = "non_modrs_mods" -tracking_issue_id = 44660 -+++ diff --git a/data/1.30/non_modrs_mods.toml b/data/1.30/non_modrs_mods.toml new file mode 100644 index 0000000..2bb214d --- /dev/null +++ b/data/1.30/non_modrs_mods.toml @@ -0,0 +1,3 @@ +title = "`foo.rs` as an alternative to `foo/mod.rs`" +flag = "non_modrs_mods" +tracking_issue_id = 44660 diff --git a/data/1.30/panic_handler.md b/data/1.30/panic_handler.md deleted file mode 100644 index ac77177..0000000 --- a/data/1.30/panic_handler.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`#[panic_handler]`" -flag = "panic_handler" -tracking_issue_id = 44489 -+++ diff --git a/data/1.30/panic_handler.toml b/data/1.30/panic_handler.toml new file mode 100644 index 0000000..2603fd2 --- /dev/null +++ b/data/1.30/panic_handler.toml @@ -0,0 +1,3 @@ +title = "`#[panic_handler]`" +flag = "panic_handler" +tracking_issue_id = 44489 diff --git a/data/1.30/proc_macro_path_invoc.md b/data/1.30/proc_macro_path_invoc.md deleted file mode 100644 index 6c5cd83..0000000 --- a/data/1.30/proc_macro_path_invoc.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "multi-segment paths in attributes and derives" -flag = "proc_macro_path_invoc" -tracking_issue_id = 38356 -+++ diff --git a/data/1.30/proc_macro_path_invoc.toml b/data/1.30/proc_macro_path_invoc.toml new file mode 100644 index 0000000..cc8921b --- /dev/null +++ b/data/1.30/proc_macro_path_invoc.toml @@ -0,0 +1,3 @@ +title = "multi-segment paths in attributes and derives" +flag = "proc_macro_path_invoc" +tracking_issue_id = 38356 diff --git a/data/1.30/raw_identifiers.md b/data/1.30/raw_identifiers.md deleted file mode 100644 index b0a0cf7..0000000 --- a/data/1.30/raw_identifiers.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "raw identifiers (`r#keyword`)" -flag = "raw_identifiers" -tracking_issue_id = 48589 -edition_guide_path = "rust-2018/module-system/raw-identifiers.html" -+++ diff --git a/data/1.30/raw_identifiers.toml b/data/1.30/raw_identifiers.toml new file mode 100644 index 0000000..926f0a7 --- /dev/null +++ b/data/1.30/raw_identifiers.toml @@ -0,0 +1,4 @@ +title = "raw identifiers (`r#keyword`)" +flag = "raw_identifiers" +tracking_issue_id = 48589 +edition_guide_path = "rust-2018/module-system/raw-identifiers.html" diff --git a/data/1.30/tool_attributes.md b/data/1.30/tool_attributes.md deleted file mode 100644 index 3e33462..0000000 --- a/data/1.30/tool_attributes.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "tool-scoped attributes" -flag = "tool_attributes" -tracking_issue_id = 44690 -+++ diff --git a/data/1.30/tool_attributes.toml b/data/1.30/tool_attributes.toml new file mode 100644 index 0000000..a8cb1a7 --- /dev/null +++ b/data/1.30/tool_attributes.toml @@ -0,0 +1,3 @@ +title = "tool-scoped attributes" +flag = "tool_attributes" +tracking_issue_id = 44690 diff --git a/data/1.30/use_extern_macro.md b/data/1.30/use_extern_macro.md deleted file mode 100644 index 4403796..0000000 --- a/data/1.30/use_extern_macro.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "macro imports and reexports via the module system" -flag = "use_extern_macro" -tracking_issue_id = 35896 -+++ diff --git a/data/1.30/use_extern_macro.toml b/data/1.30/use_extern_macro.toml new file mode 100644 index 0000000..246ded3 --- /dev/null +++ b/data/1.30/use_extern_macro.toml @@ -0,0 +1,3 @@ +title = "macro imports and reexports via the module system" +flag = "use_extern_macro" +tracking_issue_id = 35896 diff --git a/data/1.30/used.md b/data/1.30/used.md deleted file mode 100644 index 2bfe2f6..0000000 --- a/data/1.30/used.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`#[used]`" -flag = "used" -tracking_issue_id = 40289 -+++ diff --git a/data/1.30/used.toml b/data/1.30/used.toml new file mode 100644 index 0000000..9e9bc75 --- /dev/null +++ b/data/1.30/used.toml @@ -0,0 +1,3 @@ +title = "`#[used]`" +flag = "used" +tracking_issue_id = 40289 diff --git a/data/1.31/edition_2018.md b/data/1.31/edition_2018.md deleted file mode 100644 index e87c6e8..0000000 --- a/data/1.31/edition_2018.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "the 2018 edition" -stabilization_pr_id = 54057 -+++ diff --git a/data/1.31/edition_2018.toml b/data/1.31/edition_2018.toml new file mode 100644 index 0000000..9baf83a --- /dev/null +++ b/data/1.31/edition_2018.toml @@ -0,0 +1,2 @@ +title = "the 2018 edition" +stabilization_pr_id = 54057 diff --git a/data/1.31/extern_crate_item_prelude.md b/data/1.31/extern_crate_item_prelude.md deleted file mode 100644 index b68be63..0000000 --- a/data/1.31/extern_crate_item_prelude.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`extern crate foo as bar;`" -flag = "extern_crate_item_prelude" -tracking_issue_id = 55599 -+++ diff --git a/data/1.31/extern_crate_item_prelude.toml b/data/1.31/extern_crate_item_prelude.toml new file mode 100644 index 0000000..c7e2cff --- /dev/null +++ b/data/1.31/extern_crate_item_prelude.toml @@ -0,0 +1,3 @@ +title = "`extern crate foo as bar;`" +flag = "extern_crate_item_prelude" +tracking_issue_id = 55599 diff --git a/data/1.31/impl_header_lifetime_elision.md b/data/1.31/impl_header_lifetime_elision.md deleted file mode 100644 index d55a998..0000000 --- a/data/1.31/impl_header_lifetime_elision.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "lifetime elision in `impl` headers" -flag = "impl_header_lifetime_elision" -tracking_issue_id = 15872 -stabilization_pr_id = 54778 -edition_guide_path = "rust-2018/ownership-and-lifetimes/lifetime-elision-in-impl.html" -+++ diff --git a/data/1.31/impl_header_lifetime_elision.toml b/data/1.31/impl_header_lifetime_elision.toml new file mode 100644 index 0000000..792c811 --- /dev/null +++ b/data/1.31/impl_header_lifetime_elision.toml @@ -0,0 +1,5 @@ +title = "lifetime elision in `impl` headers" +flag = "impl_header_lifetime_elision" +tracking_issue_id = 15872 +stabilization_pr_id = 54778 +edition_guide_path = "rust-2018/ownership-and-lifetimes/lifetime-elision-in-impl.html" diff --git a/data/1.31/min_const_fn.md b/data/1.31/min_const_fn.md deleted file mode 100644 index ebc6963..0000000 --- a/data/1.31/min_const_fn.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`const fn`" -flag = "min_const_fn" -rfc_id = 911 -tracking_issue_id = 53555 -stabilization_pr_id = 54835 -+++ diff --git a/data/1.31/min_const_fn.toml b/data/1.31/min_const_fn.toml new file mode 100644 index 0000000..926f6f2 --- /dev/null +++ b/data/1.31/min_const_fn.toml @@ -0,0 +1,5 @@ +title = "`const fn`" +flag = "min_const_fn" +rfc_id = 911 +tracking_issue_id = 53555 +stabilization_pr_id = 54835 diff --git a/data/1.31/pattern_parentheses.md b/data/1.31/pattern_parentheses.md deleted file mode 100644 index 94a68f9..0000000 --- a/data/1.31/pattern_parentheses.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "parentheses in patterns" -flag = "pattern_parentheses" -tracking_issue_id = 51087 -+++ diff --git a/data/1.31/pattern_parentheses.toml b/data/1.31/pattern_parentheses.toml new file mode 100644 index 0000000..3dd3ecc --- /dev/null +++ b/data/1.31/pattern_parentheses.toml @@ -0,0 +1,3 @@ +title = "parentheses in patterns" +flag = "pattern_parentheses" +tracking_issue_id = 51087 diff --git a/data/1.31/tool_lints.md b/data/1.31/tool_lints.md deleted file mode 100644 index 2fbf8b8..0000000 --- a/data/1.31/tool_lints.md +++ /dev/null @@ -1,12 +0,0 @@ -+++ -title = "scoped lints" -flag = "tool_lints" -tracking_issue_id = 44690 -stabilization_pr_id = 54870 -items = [ - "#[allow(tool::lint)]", - "#[warn(tool::lint)]", - "#[deny(tool::lint)]", - "#[forbid(tool::lint)]", -] -+++ diff --git a/data/1.31/tool_lints.toml b/data/1.31/tool_lints.toml new file mode 100644 index 0000000..4a4ec79 --- /dev/null +++ b/data/1.31/tool_lints.toml @@ -0,0 +1,10 @@ +title = "scoped lints" +flag = "tool_lints" +tracking_issue_id = 44690 +stabilization_pr_id = 54870 +items = [ + "#[allow(tool::lint)]", + "#[warn(tool::lint)]", + "#[deny(tool::lint)]", + "#[forbid(tool::lint)]", +] diff --git a/data/1.32/boxed_slice_from_iter.md b/data/1.32/boxed_slice_from_iter.md deleted file mode 100644 index a60ad6f..0000000 --- a/data/1.32/boxed_slice_from_iter.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`FromIterator` implementation for `Box<[T]>`" -flag = "boxed_slice_from_iter" -impl_pr_id = 55843 -+++ diff --git a/data/1.32/boxed_slice_from_iter.toml b/data/1.32/boxed_slice_from_iter.toml new file mode 100644 index 0000000..92a5c2d --- /dev/null +++ b/data/1.32/boxed_slice_from_iter.toml @@ -0,0 +1,3 @@ +title = "`FromIterator` implementation for `Box<[T]>`" +flag = "boxed_slice_from_iter" +impl_pr_id = 55843 diff --git a/data/1.32/const_cell_as_ptr.md b/data/1.32/const_cell_as_ptr.md deleted file mode 100644 index e93dc6a..0000000 --- a/data/1.32/const_cell_as_ptr.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`Cell::as_ptr` as `const fn`" -+++ diff --git a/data/1.32/const_cell_as_ptr.toml b/data/1.32/const_cell_as_ptr.toml new file mode 100644 index 0000000..274adb2 --- /dev/null +++ b/data/1.32/const_cell_as_ptr.toml @@ -0,0 +1 @@ +title = "`Cell::as_ptr` as `const fn`" diff --git a/data/1.32/const_char_is_ascii.md b/data/1.32/const_char_is_ascii.md deleted file mode 100644 index ab98e75..0000000 --- a/data/1.32/const_char_is_ascii.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`char::is_ascii` as `const fn`" -+++ diff --git a/data/1.32/const_char_is_ascii.toml b/data/1.32/const_char_is_ascii.toml new file mode 100644 index 0000000..e4207bb --- /dev/null +++ b/data/1.32/const_char_is_ascii.toml @@ -0,0 +1 @@ +title = "`char::is_ascii` as `const fn`" diff --git a/data/1.32/const_cstr_as_ptr.md b/data/1.32/const_cstr_as_ptr.md deleted file mode 100644 index 583e277..0000000 --- a/data/1.32/const_cstr_as_ptr.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`CStr::as_ptr` as `const fn`" -+++ diff --git a/data/1.32/const_cstr_as_ptr.toml b/data/1.32/const_cstr_as_ptr.toml new file mode 100644 index 0000000..349b868 --- /dev/null +++ b/data/1.32/const_cstr_as_ptr.toml @@ -0,0 +1 @@ +title = "`CStr::as_ptr` as `const fn`" diff --git a/data/1.32/const_duration_as_secs.md b/data/1.32/const_duration_as_secs.md deleted file mode 100644 index a30a971..0000000 --- a/data/1.32/const_duration_as_secs.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`Duration::as_secs` as `const fn`" -+++ diff --git a/data/1.32/const_duration_as_secs.toml b/data/1.32/const_duration_as_secs.toml new file mode 100644 index 0000000..b9bb905 --- /dev/null +++ b/data/1.32/const_duration_as_secs.toml @@ -0,0 +1 @@ +title = "`Duration::as_secs` as `const fn`" diff --git a/data/1.32/const_duration_subsec_micros.md b/data/1.32/const_duration_subsec_micros.md deleted file mode 100644 index 2316820..0000000 --- a/data/1.32/const_duration_subsec_micros.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`Duration::subsec_micros` as `const fn`" -+++ diff --git a/data/1.32/const_duration_subsec_micros.toml b/data/1.32/const_duration_subsec_micros.toml new file mode 100644 index 0000000..08655ec --- /dev/null +++ b/data/1.32/const_duration_subsec_micros.toml @@ -0,0 +1 @@ +title = "`Duration::subsec_micros` as `const fn`" diff --git a/data/1.32/const_duration_subsec_millis.md b/data/1.32/const_duration_subsec_millis.md deleted file mode 100644 index 65143ad..0000000 --- a/data/1.32/const_duration_subsec_millis.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`Duration::subsec_millis` as `const fn`" -+++ diff --git a/data/1.32/const_duration_subsec_millis.toml b/data/1.32/const_duration_subsec_millis.toml new file mode 100644 index 0000000..4bc5f07 --- /dev/null +++ b/data/1.32/const_duration_subsec_millis.toml @@ -0,0 +1 @@ +title = "`Duration::subsec_millis` as `const fn`" diff --git a/data/1.32/const_duration_subsec_nanos.md b/data/1.32/const_duration_subsec_nanos.md deleted file mode 100644 index d2010ff..0000000 --- a/data/1.32/const_duration_subsec_nanos.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`Duration::subsec_nanos` as `const fn`" -+++ diff --git a/data/1.32/const_duration_subsec_nanos.toml b/data/1.32/const_duration_subsec_nanos.toml new file mode 100644 index 0000000..e154111 --- /dev/null +++ b/data/1.32/const_duration_subsec_nanos.toml @@ -0,0 +1 @@ +title = "`Duration::subsec_nanos` as `const fn`" diff --git a/data/1.32/const_ipv4addr_is_unspecified.md b/data/1.32/const_ipv4addr_is_unspecified.md deleted file mode 100644 index 98ee29b..0000000 --- a/data/1.32/const_ipv4addr_is_unspecified.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`Ipv4Addr::is_unspecified` as `const fn`" -+++ diff --git a/data/1.32/const_ipv4addr_is_unspecified.toml b/data/1.32/const_ipv4addr_is_unspecified.toml new file mode 100644 index 0000000..6c51996 --- /dev/null +++ b/data/1.32/const_ipv4addr_is_unspecified.toml @@ -0,0 +1 @@ +title = "`Ipv4Addr::is_unspecified` as `const fn`" diff --git a/data/1.32/const_ipv6addr_new.md b/data/1.32/const_ipv6addr_new.md deleted file mode 100644 index f314d85..0000000 --- a/data/1.32/const_ipv6addr_new.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`Ipv6Addr::new` as `const fn`" -+++ diff --git a/data/1.32/const_ipv6addr_new.toml b/data/1.32/const_ipv6addr_new.toml new file mode 100644 index 0000000..8f41d32 --- /dev/null +++ b/data/1.32/const_ipv6addr_new.toml @@ -0,0 +1 @@ +title = "`Ipv6Addr::new` as `const fn`" diff --git a/data/1.32/const_ipv6addr_octets.md b/data/1.32/const_ipv6addr_octets.md deleted file mode 100644 index 03cd02a..0000000 --- a/data/1.32/const_ipv6addr_octets.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`Ipv6Addr::octets` as `const fn`" -+++ diff --git a/data/1.32/const_ipv6addr_octets.toml b/data/1.32/const_ipv6addr_octets.toml new file mode 100644 index 0000000..9340812 --- /dev/null +++ b/data/1.32/const_ipv6addr_octets.toml @@ -0,0 +1 @@ +title = "`Ipv6Addr::octets` as `const fn`" diff --git a/data/1.32/const_iter_empty.md b/data/1.32/const_iter_empty.md deleted file mode 100644 index e0bc79e..0000000 --- a/data/1.32/const_iter_empty.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`iter::empty` as `const fn`" -+++ diff --git a/data/1.32/const_iter_empty.toml b/data/1.32/const_iter_empty.toml new file mode 100644 index 0000000..2c0efc7 --- /dev/null +++ b/data/1.32/const_iter_empty.toml @@ -0,0 +1 @@ +title = "`iter::empty` as `const fn`" diff --git a/data/1.32/const_manually_drop_into_inner.md b/data/1.32/const_manually_drop_into_inner.md deleted file mode 100644 index a76d8eb..0000000 --- a/data/1.32/const_manually_drop_into_inner.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`ManuallyDrop::into_inner` as `const fn`" -+++ diff --git a/data/1.32/const_manually_drop_into_inner.toml b/data/1.32/const_manually_drop_into_inner.toml new file mode 100644 index 0000000..d3c1ca2 --- /dev/null +++ b/data/1.32/const_manually_drop_into_inner.toml @@ -0,0 +1 @@ +title = "`ManuallyDrop::into_inner` as `const fn`" diff --git a/data/1.32/const_manually_drop_new.md b/data/1.32/const_manually_drop_new.md deleted file mode 100644 index 16ca6df..0000000 --- a/data/1.32/const_manually_drop_new.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`ManuallyDrop::new` as `const fn`" -+++ diff --git a/data/1.32/const_manually_drop_new.toml b/data/1.32/const_manually_drop_new.toml new file mode 100644 index 0000000..36d4d3c --- /dev/null +++ b/data/1.32/const_manually_drop_new.toml @@ -0,0 +1 @@ +title = "`ManuallyDrop::new` as `const fn`" diff --git a/data/1.32/const_non_null_as_ptr.md b/data/1.32/const_non_null_as_ptr.md deleted file mode 100644 index 01cc556..0000000 --- a/data/1.32/const_non_null_as_ptr.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`NonNull::as_ptr` as `const fn`" -+++ diff --git a/data/1.32/const_non_null_as_ptr.toml b/data/1.32/const_non_null_as_ptr.toml new file mode 100644 index 0000000..1868650 --- /dev/null +++ b/data/1.32/const_non_null_as_ptr.toml @@ -0,0 +1 @@ +title = "`NonNull::as_ptr` as `const fn`" diff --git a/data/1.32/const_range_inclusive_end.md b/data/1.32/const_range_inclusive_end.md deleted file mode 100644 index 445b902..0000000 --- a/data/1.32/const_range_inclusive_end.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`RangeInclusive::end` as `const fn`" -+++ diff --git a/data/1.32/const_range_inclusive_end.toml b/data/1.32/const_range_inclusive_end.toml new file mode 100644 index 0000000..74cae42 --- /dev/null +++ b/data/1.32/const_range_inclusive_end.toml @@ -0,0 +1 @@ +title = "`RangeInclusive::end` as `const fn`" diff --git a/data/1.32/const_range_inclusive_start.md b/data/1.32/const_range_inclusive_start.md deleted file mode 100644 index 11305ee..0000000 --- a/data/1.32/const_range_inclusive_start.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`RangeInclusive::start` as `const fn`" -+++ diff --git a/data/1.32/const_range_inclusive_start.toml b/data/1.32/const_range_inclusive_start.toml new file mode 100644 index 0000000..70b6fce --- /dev/null +++ b/data/1.32/const_range_inclusive_start.toml @@ -0,0 +1 @@ +title = "`RangeInclusive::start` as `const fn`" diff --git a/data/1.32/const_slice_as_ptr.md b/data/1.32/const_slice_as_ptr.md deleted file mode 100644 index a1c6648..0000000 --- a/data/1.32/const_slice_as_ptr.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`slice::as_ptr` as `const fn`" -+++ diff --git a/data/1.32/const_slice_as_ptr.toml b/data/1.32/const_slice_as_ptr.toml new file mode 100644 index 0000000..96d6f3a --- /dev/null +++ b/data/1.32/const_slice_as_ptr.toml @@ -0,0 +1 @@ +title = "`slice::as_ptr` as `const fn`" diff --git a/data/1.32/const_str_as_ptr.md b/data/1.32/const_str_as_ptr.md deleted file mode 100644 index 43fb61c..0000000 --- a/data/1.32/const_str_as_ptr.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`str::as_ptr` as `const fn`" -+++ diff --git a/data/1.32/const_str_as_ptr.toml b/data/1.32/const_str_as_ptr.toml new file mode 100644 index 0000000..4d2a330 --- /dev/null +++ b/data/1.32/const_str_as_ptr.toml @@ -0,0 +1 @@ +title = "`str::as_ptr` as `const fn`" diff --git a/data/1.32/const_unsafe_cell_get.md b/data/1.32/const_unsafe_cell_get.md deleted file mode 100644 index 788b518..0000000 --- a/data/1.32/const_unsafe_cell_get.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`UnsafeCell::get` as `const fn`" -+++ diff --git a/data/1.32/const_unsafe_cell_get.toml b/data/1.32/const_unsafe_cell_get.toml new file mode 100644 index 0000000..8062ee6 --- /dev/null +++ b/data/1.32/const_unsafe_cell_get.toml @@ -0,0 +1 @@ +title = "`UnsafeCell::get` as `const fn`" diff --git a/data/1.32/dbg_macro.md b/data/1.32/dbg_macro.md deleted file mode 100644 index 728c6fa..0000000 --- a/data/1.32/dbg_macro.md +++ /dev/null @@ -1,8 +0,0 @@ -+++ -title = "`dbg!`" -flag = "dbg_macro" -rfc_id = 2361 -impl_pr_id = 54317 -tracking_issue_id = 54306 -stabilization_pr_id = 56395 -+++ diff --git a/data/1.32/dbg_macro.toml b/data/1.32/dbg_macro.toml new file mode 100644 index 0000000..9af362a --- /dev/null +++ b/data/1.32/dbg_macro.toml @@ -0,0 +1,6 @@ +title = "`dbg!`" +flag = "dbg_macro" +rfc_id = 2361 +impl_pr_id = 54317 +tracking_issue_id = 54306 +stabilization_pr_id = 56395 diff --git a/data/1.32/int_to_from_bytes.md b/data/1.32/int_to_from_bytes.md deleted file mode 100644 index 6157d5b..0000000 --- a/data/1.32/int_to_from_bytes.md +++ /dev/null @@ -1,41 +0,0 @@ -+++ -title = "integer ↔ bytes conversion functions" -flag = "int_to_from_bytes" -items = [ - "i8::to_ne_bytes", "i8::to_le_bytes", "i8::to_be_bytes", - "i8::from_ne_bytes", "i8::from_le_bytes", "i8::from_be_bytes", - - "i16::to_ne_bytes", "i16::to_le_bytes", "i16::to_be_bytes", - "i16::from_ne_bytes", "i16::from_le_bytes", "i16::from_be_bytes", - - "i32::to_ne_bytes", "i32::to_le_bytes", "i32::to_be_bytes", - "i32::from_ne_bytes", "i32::from_le_bytes", "i32::from_be_bytes", - - "i64::to_ne_bytes", "i64::to_le_bytes", "i64::to_be_bytes", - "i64::from_ne_bytes", "i64::from_le_bytes", "i64::from_be_bytes", - - "i128::to_ne_bytes", "i128::to_le_bytes", "i128::to_be_bytes", - "i128::from_ne_bytes", "i128::from_le_bytes", "i128::from_be_bytes", - - "isize::to_ne_bytes", "isize::to_le_bytes", "isize::to_be_bytes", - "isize::from_ne_bytes", "isize::from_le_bytes", "isize::from_be_bytes", - - "u8::to_ne_bytes", "u8::to_le_bytes", "u8::to_be_bytes", - "u8::from_ne_bytes", "u8::from_le_bytes", "u8::from_be_bytes", - - "u16::to_ne_bytes", "u16::to_le_bytes", "u16::to_be_bytes", - "u16::from_ne_bytes", "u16::from_le_bytes", "u16::from_be_bytes", - - "u32::to_ne_bytes", "u32::to_le_bytes", "u32::to_be_bytes", - "u32::from_ne_bytes", "u32::from_le_bytes", "u32::from_be_bytes", - - "u64::to_ne_bytes", "u64::to_le_bytes", "u64::to_be_bytes", - "u64::from_ne_bytes", "u64::from_le_bytes", "u64::from_be_bytes", - - "u128::to_ne_bytes", "u128::to_le_bytes", "u128::to_be_bytes", - "u128::from_ne_bytes", "u128::from_le_bytes", "u128::from_be_bytes", - - "usize::to_ne_bytes", "usize::to_le_bytes", "usize::to_be_bytes", - "usize::from_ne_bytes", "usize::from_le_bytes", "usize::from_be_bytes", -] -+++ diff --git a/data/1.32/int_to_from_bytes.toml b/data/1.32/int_to_from_bytes.toml new file mode 100644 index 0000000..c0b76ff --- /dev/null +++ b/data/1.32/int_to_from_bytes.toml @@ -0,0 +1,39 @@ +title = "integer ↔ bytes conversion functions" +flag = "int_to_from_bytes" +items = [ + "i8::to_ne_bytes", "i8::to_le_bytes", "i8::to_be_bytes", + "i8::from_ne_bytes", "i8::from_le_bytes", "i8::from_be_bytes", + + "i16::to_ne_bytes", "i16::to_le_bytes", "i16::to_be_bytes", + "i16::from_ne_bytes", "i16::from_le_bytes", "i16::from_be_bytes", + + "i32::to_ne_bytes", "i32::to_le_bytes", "i32::to_be_bytes", + "i32::from_ne_bytes", "i32::from_le_bytes", "i32::from_be_bytes", + + "i64::to_ne_bytes", "i64::to_le_bytes", "i64::to_be_bytes", + "i64::from_ne_bytes", "i64::from_le_bytes", "i64::from_be_bytes", + + "i128::to_ne_bytes", "i128::to_le_bytes", "i128::to_be_bytes", + "i128::from_ne_bytes", "i128::from_le_bytes", "i128::from_be_bytes", + + "isize::to_ne_bytes", "isize::to_le_bytes", "isize::to_be_bytes", + "isize::from_ne_bytes", "isize::from_le_bytes", "isize::from_be_bytes", + + "u8::to_ne_bytes", "u8::to_le_bytes", "u8::to_be_bytes", + "u8::from_ne_bytes", "u8::from_le_bytes", "u8::from_be_bytes", + + "u16::to_ne_bytes", "u16::to_le_bytes", "u16::to_be_bytes", + "u16::from_ne_bytes", "u16::from_le_bytes", "u16::from_be_bytes", + + "u32::to_ne_bytes", "u32::to_le_bytes", "u32::to_be_bytes", + "u32::from_ne_bytes", "u32::from_le_bytes", "u32::from_be_bytes", + + "u64::to_ne_bytes", "u64::to_le_bytes", "u64::to_be_bytes", + "u64::from_ne_bytes", "u64::from_le_bytes", "u64::from_be_bytes", + + "u128::to_ne_bytes", "u128::to_le_bytes", "u128::to_be_bytes", + "u128::from_ne_bytes", "u128::from_le_bytes", "u128::from_be_bytes", + + "usize::to_ne_bytes", "usize::to_le_bytes", "usize::to_be_bytes", + "usize::from_ne_bytes", "usize::from_le_bytes", "usize::from_be_bytes", +] diff --git a/data/1.32/macro_at_most_once_rep.md b/data/1.32/macro_at_most_once_rep.md deleted file mode 100644 index 9ce94eb..0000000 --- a/data/1.32/macro_at_most_once_rep.md +++ /dev/null @@ -1,8 +0,0 @@ -+++ -title = "`?` as the Kleene \"at most one\" operator in `macro_rules!` in the 2018 edition" -flag = "macro_at_most_once_rep" -rfc_id = 2298 -tracking_issue_id = 48075 -stabilization_pr_id = 56245 -edition_guide_path = "rust-2018/macros/at-most-once.html" -+++ diff --git a/data/1.32/macro_at_most_once_rep.toml b/data/1.32/macro_at_most_once_rep.toml new file mode 100644 index 0000000..08f86c5 --- /dev/null +++ b/data/1.32/macro_at_most_once_rep.toml @@ -0,0 +1,6 @@ +title = "`?` as the Kleene \"at most one\" operator in `macro_rules!` in the 2018 edition" +flag = "macro_at_most_once_rep" +rfc_id = 2298 +tracking_issue_id = 48075 +stabilization_pr_id = 56245 +edition_guide_path = "rust-2018/macros/at-most-once.html" diff --git a/data/1.32/macro_literal_matcher.md b/data/1.32/macro_literal_matcher.md deleted file mode 100644 index 61cbed9..0000000 --- a/data/1.32/macro_literal_matcher.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "the `literal` fragment specifier in `macro_rules!`" -flag = "macro_literal_matcher" -rfc_id = 1576 -tracking_issue_id = 35625 -stabilization_pr_id = 56072 -+++ diff --git a/data/1.32/macro_literal_matcher.toml b/data/1.32/macro_literal_matcher.toml new file mode 100644 index 0000000..383d357 --- /dev/null +++ b/data/1.32/macro_literal_matcher.toml @@ -0,0 +1,5 @@ +title = "the `literal` fragment specifier in `macro_rules!`" +flag = "macro_literal_matcher" +rfc_id = 1576 +tracking_issue_id = 35625 +stabilization_pr_id = 56072 diff --git a/data/1.32/must_use_traits.md b/data/1.32/must_use_traits.md deleted file mode 100644 index d708138..0000000 --- a/data/1.32/must_use_traits.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`#[must_use]` on traits" -impl_pr_id = 55663 -+++ diff --git a/data/1.32/must_use_traits.toml b/data/1.32/must_use_traits.toml new file mode 100644 index 0000000..864dac8 --- /dev/null +++ b/data/1.32/must_use_traits.toml @@ -0,0 +1,2 @@ +title = "`#[must_use]` on traits" +impl_pr_id = 55663 diff --git a/data/1.32/path_from_str.md b/data/1.32/path_from_str.md deleted file mode 100644 index 3932778..0000000 --- a/data/1.32/path_from_str.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`FromStr` implementation for `PathBuf`" -flag = "path_from_str" -impl_pr_id = 55148 -+++ diff --git a/data/1.32/path_from_str.toml b/data/1.32/path_from_str.toml new file mode 100644 index 0000000..0b93393 --- /dev/null +++ b/data/1.32/path_from_str.toml @@ -0,0 +1,3 @@ +title = "`FromStr` implementation for `PathBuf`" +flag = "path_from_str" +impl_pr_id = 55148 diff --git a/data/1.32/self_in_typedefs.md b/data/1.32/self_in_typedefs.md deleted file mode 100644 index dadee2b..0000000 --- a/data/1.32/self_in_typedefs.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`Self` in type definitions" -flag = "self_in_typedefs" -rfc_id = 2300 -tracking_issue_id = 49303 -stabilization_pr_id = 56366 -+++ diff --git a/data/1.32/self_in_typedefs.toml b/data/1.32/self_in_typedefs.toml new file mode 100644 index 0000000..1e397b4 --- /dev/null +++ b/data/1.32/self_in_typedefs.toml @@ -0,0 +1,5 @@ +title = "`Self` in type definitions" +flag = "self_in_typedefs" +rfc_id = 2300 +tracking_issue_id = 49303 +stabilization_pr_id = 56366 diff --git a/data/1.32/self_struct_ctor.md b/data/1.32/self_struct_ctor.md deleted file mode 100644 index f3cfd90..0000000 --- a/data/1.32/self_struct_ctor.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`Self` as a constructor and pattern for unit and tuple structs" -flag = "self_struct_ctor" -rfc_id = 2302 -tracking_issue_id = 51994 -stabilization_pr_id = 56365 -+++ diff --git a/data/1.32/self_struct_ctor.toml b/data/1.32/self_struct_ctor.toml new file mode 100644 index 0000000..f033da3 --- /dev/null +++ b/data/1.32/self_struct_ctor.toml @@ -0,0 +1,5 @@ +title = "`Self` as a constructor and pattern for unit and tuple structs" +flag = "self_struct_ctor" +rfc_id = 2302 +tracking_issue_id = 51994 +stabilization_pr_id = 56365 diff --git a/data/1.32/uniform_paths.md b/data/1.32/uniform_paths.md deleted file mode 100644 index 9e6bf91..0000000 --- a/data/1.32/uniform_paths.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "uniform paths (`use x::y;` as `use self::x::y;`) in the 2018 edition" -flag = "uniform_paths" -tracking_issue_id = 53130 -stabilization_pr_id = 56759 -+++ diff --git a/data/1.32/uniform_paths.toml b/data/1.32/uniform_paths.toml new file mode 100644 index 0000000..01421ab --- /dev/null +++ b/data/1.32/uniform_paths.toml @@ -0,0 +1,4 @@ +title = "uniform paths (`use x::y;` as `use self::x::y;`) in the 2018 edition" +flag = "uniform_paths" +tracking_issue_id = 53130 +stabilization_pr_id = 56759 diff --git a/data/1.33/cfg_attr_multi.md b/data/1.33/cfg_attr_multi.md deleted file mode 100644 index 45a1acf..0000000 --- a/data/1.33/cfg_attr_multi.md +++ /dev/null @@ -1,8 +0,0 @@ -+++ -title = "`#[cfg_attr(cfg, attr1, attr2, attr3)]`" -flag = "cfg_attr_multi" -rfc_id = 2539 -impl_pr_id = 54862 -tracking_issue_id = 54881 -stabilization_pr_id = 57332 -+++ diff --git a/data/1.33/cfg_attr_multi.toml b/data/1.33/cfg_attr_multi.toml new file mode 100644 index 0000000..19089b6 --- /dev/null +++ b/data/1.33/cfg_attr_multi.toml @@ -0,0 +1,6 @@ +title = "`#[cfg_attr(cfg, attr1, attr2, attr3)]`" +flag = "cfg_attr_multi" +rfc_id = 2539 +impl_pr_id = 54862 +tracking_issue_id = 54881 +stabilization_pr_id = 57332 diff --git a/data/1.33/cfg_target_vendor.md b/data/1.33/cfg_target_vendor.md deleted file mode 100644 index cb1e46e..0000000 --- a/data/1.33/cfg_target_vendor.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`cfg(target_vendor)`" -flag = "cfg_target_vendor" -impl_pr_id = 28612 -tracking_issue_id = 29718 -stabilization_pr_id = 57465 -+++ diff --git a/data/1.33/cfg_target_vendor.toml b/data/1.33/cfg_target_vendor.toml new file mode 100644 index 0000000..81beb84 --- /dev/null +++ b/data/1.33/cfg_target_vendor.toml @@ -0,0 +1,5 @@ +title = "`cfg(target_vendor)`" +flag = "cfg_target_vendor" +impl_pr_id = 28612 +tracking_issue_id = 29718 +stabilization_pr_id = 57465 diff --git a/data/1.33/const_ip.md b/data/1.33/const_ip.md deleted file mode 100644 index 2ce3898..0000000 --- a/data/1.33/const_ip.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`Ipv4Addr::new` as `const fn`" -flag = "const_ip" -stabilization_pr_id = 57234 -+++ diff --git a/data/1.33/const_ip.toml b/data/1.33/const_ip.toml new file mode 100644 index 0000000..3e84f3c --- /dev/null +++ b/data/1.33/const_ip.toml @@ -0,0 +1,3 @@ +title = "`Ipv4Addr::new` as `const fn`" +flag = "const_ip" +stabilization_pr_id = 57234 diff --git a/data/1.33/const_let.md b/data/1.33/const_let.md deleted file mode 100644 index a6c96a2..0000000 --- a/data/1.33/const_let.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "let bindings, assignments and destructuring in `const fn`" -flag = "const_let" -rfc_id = 2341 -tracking_issue_id = 48821 -stabilization_pr_id = 57175 -+++ diff --git a/data/1.33/const_let.toml b/data/1.33/const_let.toml new file mode 100644 index 0000000..5582a31 --- /dev/null +++ b/data/1.33/const_let.toml @@ -0,0 +1,5 @@ +title = "let bindings, assignments and destructuring in `const fn`" +flag = "const_let" +rfc_id = 2341 +tracking_issue_id = 48821 +stabilization_pr_id = 57175 diff --git a/data/1.33/exhaustive_integer_patterns.md b/data/1.33/exhaustive_integer_patterns.md deleted file mode 100644 index 4390c7f..0000000 --- a/data/1.33/exhaustive_integer_patterns.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "integer match exhaustiveness checking" -flag = "exhaustive_integer_patterns" -rfc_id = 2591 -tracking_issue_id = 50907 -+++ diff --git a/data/1.33/exhaustive_integer_patterns.toml b/data/1.33/exhaustive_integer_patterns.toml new file mode 100644 index 0000000..e13042d --- /dev/null +++ b/data/1.33/exhaustive_integer_patterns.toml @@ -0,0 +1,4 @@ +title = "integer match exhaustiveness checking" +flag = "exhaustive_integer_patterns" +rfc_id = 2591 +tracking_issue_id = 50907 diff --git a/data/1.33/if_while_or_patterns.md b/data/1.33/if_while_or_patterns.md deleted file mode 100644 index 51f643c..0000000 --- a/data/1.33/if_while_or_patterns.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "or-patterns in `if let` and `while let`" -flag = "if_while_or_patterns" -rfc_id = 2175 -tracking_issue_id = 48215 -stabilization_pr_id = 57532 -+++ diff --git a/data/1.33/if_while_or_patterns.toml b/data/1.33/if_while_or_patterns.toml new file mode 100644 index 0000000..0558924 --- /dev/null +++ b/data/1.33/if_while_or_patterns.toml @@ -0,0 +1,5 @@ +title = "or-patterns in `if let` and `while let`" +flag = "if_while_or_patterns" +rfc_id = 2175 +tracking_issue_id = 48215 +stabilization_pr_id = 57532 diff --git a/data/1.33/irrefutable_let_patterns.md b/data/1.33/irrefutable_let_patterns.md deleted file mode 100644 index cff8da2..0000000 --- a/data/1.33/irrefutable_let_patterns.md +++ /dev/null @@ -1,8 +0,0 @@ -+++ -title = "irrefutable patterns in `if let` and `while let`" -flag = "irrefutable_let_patterns" -rfc_id = 2086 -impl_pr_id = 49469 -tracking_issue_id = 44495 -stabilization_pr_id = 57535 -+++ diff --git a/data/1.33/irrefutable_let_patterns.toml b/data/1.33/irrefutable_let_patterns.toml new file mode 100644 index 0000000..d975ed0 --- /dev/null +++ b/data/1.33/irrefutable_let_patterns.toml @@ -0,0 +1,6 @@ +title = "irrefutable patterns in `if let` and `while let`" +flag = "irrefutable_let_patterns" +rfc_id = 2086 +impl_pr_id = 49469 +tracking_issue_id = 44495 +stabilization_pr_id = 57535 diff --git a/data/1.33/min_const_unsafe_fn.md b/data/1.33/min_const_unsafe_fn.md deleted file mode 100644 index 5384de1..0000000 --- a/data/1.33/min_const_unsafe_fn.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`const unsafe fn`s inside `unsafe` blocks in `const fn`" -flag = "min_const_unsafe_fn" -tracking_issue_id = 55607 -stabilization_pr_id = 57067 -+++ diff --git a/data/1.33/min_const_unsafe_fn.toml b/data/1.33/min_const_unsafe_fn.toml new file mode 100644 index 0000000..e4fafde --- /dev/null +++ b/data/1.33/min_const_unsafe_fn.toml @@ -0,0 +1,4 @@ +title = "`const unsafe fn`s inside `unsafe` blocks in `const fn`" +flag = "min_const_unsafe_fn" +tracking_issue_id = 55607 +stabilization_pr_id = 57067 diff --git a/data/1.33/phantom_unpinned.md b/data/1.33/phantom_unpinned.md deleted file mode 100644 index b091a1b..0000000 --- a/data/1.33/phantom_unpinned.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`marker::PhantomUnpinned`" -flag = "pin" -+++ diff --git a/data/1.33/phantom_unpinned.toml b/data/1.33/phantom_unpinned.toml new file mode 100644 index 0000000..e2d1679 --- /dev/null +++ b/data/1.33/phantom_unpinned.toml @@ -0,0 +1,2 @@ +title = "`marker::PhantomUnpinned`" +flag = "pin" diff --git a/data/1.33/pin.md b/data/1.33/pin.md deleted file mode 100644 index 6d80380..0000000 --- a/data/1.33/pin.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`pin::Pin`" -flag = "pin" -+++ diff --git a/data/1.33/pin.toml b/data/1.33/pin.toml new file mode 100644 index 0000000..83b7fe9 --- /dev/null +++ b/data/1.33/pin.toml @@ -0,0 +1,2 @@ +title = "`pin::Pin`" +flag = "pin" diff --git a/data/1.33/rc_arc_pin_method_receiver.md b/data/1.33/rc_arc_pin_method_receiver.md deleted file mode 100644 index 69a55bc..0000000 --- a/data/1.33/rc_arc_pin_method_receiver.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`Rc`, `Arc` or `Pin` as a method receiver" -stabilization_pr_id = 56805 -+++ diff --git a/data/1.33/rc_arc_pin_method_receiver.toml b/data/1.33/rc_arc_pin_method_receiver.toml new file mode 100644 index 0000000..98df314 --- /dev/null +++ b/data/1.33/rc_arc_pin_method_receiver.toml @@ -0,0 +1,2 @@ +title = "`Rc`, `Arc` or `Pin` as a method receiver" +stabilization_pr_id = 56805 diff --git a/data/1.33/repr_packed.md b/data/1.33/repr_packed.md deleted file mode 100644 index 05ce2fd..0000000 --- a/data/1.33/repr_packed.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`#[repr(packed(N))]` on structs" -flag = "repr_packed" -rfc_id = 1399 -tracking_issue_id = 33158 -stabilization_pr_id = 57049 -+++ diff --git a/data/1.33/repr_packed.toml b/data/1.33/repr_packed.toml new file mode 100644 index 0000000..159e490 --- /dev/null +++ b/data/1.33/repr_packed.toml @@ -0,0 +1,5 @@ +title = "`#[repr(packed(N))]` on structs" +flag = "repr_packed" +rfc_id = 1399 +tracking_issue_id = 33158 +stabilization_pr_id = 57049 diff --git a/data/1.33/underscore_imports.md b/data/1.33/underscore_imports.md deleted file mode 100644 index 57a5798..0000000 --- a/data/1.33/underscore_imports.md +++ /dev/null @@ -1,11 +0,0 @@ -+++ -title = "underscore imports (impl-only trait imports)" -flag = "underscore_imports" -rfc_id = 2166 -tracking_issue_id = 48216 -stabilization_pr_id = 56303 -items = [ - "extern crate c as _;", - "use path as _;", -] -+++ diff --git a/data/1.33/underscore_imports.toml b/data/1.33/underscore_imports.toml new file mode 100644 index 0000000..d9ff40d --- /dev/null +++ b/data/1.33/underscore_imports.toml @@ -0,0 +1,9 @@ +title = "underscore imports (impl-only trait imports)" +flag = "underscore_imports" +rfc_id = 2166 +tracking_issue_id = 48216 +stabilization_pr_id = 56303 +items = [ + "extern crate c as _;", + "use path as _;", +] diff --git a/data/1.33/unpin.md b/data/1.33/unpin.md deleted file mode 100644 index e40d901..0000000 --- a/data/1.33/unpin.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`marker::Unpin`" -flag = "pin" -+++ diff --git a/data/1.33/unpin.toml b/data/1.33/unpin.toml new file mode 100644 index 0000000..270cee1 --- /dev/null +++ b/data/1.33/unpin.toml @@ -0,0 +1,2 @@ +title = "`marker::Unpin`" +flag = "pin" diff --git a/data/1.34/alternative_registries.md b/data/1.34/alternative_registries.md deleted file mode 100644 index f901175..0000000 --- a/data/1.34/alternative_registries.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "alternative registries to crates.io in cargo" -+++ diff --git a/data/1.34/alternative_registries.toml b/data/1.34/alternative_registries.toml new file mode 100644 index 0000000..23168a0 --- /dev/null +++ b/data/1.34/alternative_registries.toml @@ -0,0 +1 @@ +title = "alternative registries to crates.io in cargo" diff --git a/data/1.34/const_overflowing_neg.md b/data/1.34/const_overflowing_neg.md deleted file mode 100644 index 0b33a8b..0000000 --- a/data/1.34/const_overflowing_neg.md +++ /dev/null @@ -1,18 +0,0 @@ -+++ -title = "`overflowing_neg` as `const fn`" -impl_pr_id = 58044 -items = [ - "i8::overflowing_neg", - "i16::overflowing_neg", - "i32::overflowing_neg", - "i64::overflowing_neg", - "i128::overflowing_neg", - "isize::overflowing_neg", - "u8::overflowing_neg", - "u16::overflowing_neg", - "u32::overflowing_neg", - "u64::overflowing_neg", - "u128::overflowing_neg", - "usize::overflowing_neg", -] -+++ diff --git a/data/1.34/const_overflowing_neg.toml b/data/1.34/const_overflowing_neg.toml new file mode 100644 index 0000000..ac26686 --- /dev/null +++ b/data/1.34/const_overflowing_neg.toml @@ -0,0 +1,16 @@ +title = "`overflowing_neg` as `const fn`" +impl_pr_id = 58044 +items = [ + "i8::overflowing_neg", + "i16::overflowing_neg", + "i32::overflowing_neg", + "i64::overflowing_neg", + "i128::overflowing_neg", + "isize::overflowing_neg", + "u8::overflowing_neg", + "u16::overflowing_neg", + "u32::overflowing_neg", + "u64::overflowing_neg", + "u128::overflowing_neg", + "usize::overflowing_neg", +] diff --git a/data/1.34/const_wrapping_neg.md b/data/1.34/const_wrapping_neg.md deleted file mode 100644 index 720063b..0000000 --- a/data/1.34/const_wrapping_neg.md +++ /dev/null @@ -1,18 +0,0 @@ -+++ -title = "`wrapping_neg` as `const fn`" -impl_pr_id = 58044 -items = [ - "i8::wrapping_neg", - "i16::wrapping_neg", - "i32::wrapping_neg", - "i64::wrapping_neg", - "i128::wrapping_neg", - "isize::wrapping_neg", - "u8::wrapping_neg", - "u16::wrapping_neg", - "u32::wrapping_neg", - "u64::wrapping_neg", - "u128::wrapping_neg", - "usize::wrapping_neg", -] -+++ diff --git a/data/1.34/const_wrapping_neg.toml b/data/1.34/const_wrapping_neg.toml new file mode 100644 index 0000000..c67b9a1 --- /dev/null +++ b/data/1.34/const_wrapping_neg.toml @@ -0,0 +1,16 @@ +title = "`wrapping_neg` as `const fn`" +impl_pr_id = 58044 +items = [ + "i8::wrapping_neg", + "i16::wrapping_neg", + "i32::wrapping_neg", + "i64::wrapping_neg", + "i128::wrapping_neg", + "isize::wrapping_neg", + "u8::wrapping_neg", + "u16::wrapping_neg", + "u32::wrapping_neg", + "u64::wrapping_neg", + "u128::wrapping_neg", + "usize::wrapping_neg", +] diff --git a/data/1.34/deprecated_equals_reason.md b/data/1.34/deprecated_equals_reason.md deleted file mode 100644 index 9e71355..0000000 --- a/data/1.34/deprecated_equals_reason.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`#[deprecated = \"reason\"]` as a shorthand for `#[deprecated(note = \"reason\")]`" -+++ diff --git a/data/1.34/deprecated_equals_reason.toml b/data/1.34/deprecated_equals_reason.toml new file mode 100644 index 0000000..57431d4 --- /dev/null +++ b/data/1.34/deprecated_equals_reason.toml @@ -0,0 +1 @@ +title = "`#[deprecated = \"reason\"]` as a shorthand for `#[deprecated(note = \"reason\")]`" diff --git a/data/1.34/extern_crate_self.md b/data/1.34/extern_crate_self.md deleted file mode 100644 index 4c9adfb..0000000 --- a/data/1.34/extern_crate_self.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`extern crate self as foo;`" -flag = "extern_crate_self" -tracking_issue_id = 56409 -stabilization_pr_id = 57407 -+++ diff --git a/data/1.34/extern_crate_self.toml b/data/1.34/extern_crate_self.toml new file mode 100644 index 0000000..a13a8ec --- /dev/null +++ b/data/1.34/extern_crate_self.toml @@ -0,0 +1,4 @@ +title = "`extern crate self as foo;`" +flag = "extern_crate_self" +tracking_issue_id = 56409 +stabilization_pr_id = 57407 diff --git a/data/1.34/unrestricted_attribute_tokens.md b/data/1.34/unrestricted_attribute_tokens.md deleted file mode 100644 index 5958643..0000000 --- a/data/1.34/unrestricted_attribute_tokens.md +++ /dev/null @@ -1,10 +0,0 @@ -+++ -title = "arbitrary token streams in procedural attribute macros" -flag = "unrestricted_attribute_tokens" -tracking_issue_id = 55208 -items = [ - "#[attr{...}]", - "#[attr[...]]", - "#[attr(...)]", -] -+++ diff --git a/data/1.34/unrestricted_attribute_tokens.toml b/data/1.34/unrestricted_attribute_tokens.toml new file mode 100644 index 0000000..a5cf68f --- /dev/null +++ b/data/1.34/unrestricted_attribute_tokens.toml @@ -0,0 +1,8 @@ +title = "arbitrary token streams in procedural attribute macros" +flag = "unrestricted_attribute_tokens" +tracking_issue_id = 55208 +items = [ + "#[attr{...}]", + "#[attr[...]]", + "#[attr(...)]", +] diff --git a/data/1.35/alloc_system_default.md b/data/1.35/alloc_system_default.md deleted file mode 100644 index e0c8c2b..0000000 --- a/data/1.35/alloc_system_default.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`Default` implementation for `alloc::System`" -impl_pr_id = 59451 -+++ diff --git a/data/1.35/alloc_system_default.toml b/data/1.35/alloc_system_default.toml new file mode 100644 index 0000000..e2ba0d5 --- /dev/null +++ b/data/1.35/alloc_system_default.toml @@ -0,0 +1,2 @@ +title = "`Default` implementation for `alloc::System`" +impl_pr_id = 59451 diff --git a/data/1.35/asraw_stdio_locks.md b/data/1.35/asraw_stdio_locks.md deleted file mode 100644 index 8d0bdfa..0000000 --- a/data/1.35/asraw_stdio_locks.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`AsRawFd` implementation for `StdinLock`, `StdoutLock` and `StderrLock`" -flag = "asraw_stdio_locks" -impl_pr_id = 59512 -+++ diff --git a/data/1.35/asraw_stdio_locks.toml b/data/1.35/asraw_stdio_locks.toml new file mode 100644 index 0000000..3e94ba4 --- /dev/null +++ b/data/1.35/asraw_stdio_locks.toml @@ -0,0 +1,3 @@ +title = "`AsRawFd` implementation for `StdinLock`, `StdoutLock` and `StderrLock`" +flag = "asraw_stdio_locks" +impl_pr_id = 59512 diff --git a/data/1.35/boxed_closure_impls.md b/data/1.35/boxed_closure_impls.md deleted file mode 100644 index 8818ca8..0000000 --- a/data/1.35/boxed_closure_impls.md +++ /dev/null @@ -1,10 +0,0 @@ -+++ -title = "boxed closure `Fn*` trait implementations" -flag = "boxed_closure_impls" -impl_pr_id = 59500 -items = [ - "impl FnOnce for Box where F: FnOnce + ?Sized", - "impl FnMut for Box where F: FnMut + ?Sized", - "impl Fn for Box where F: Fn + ?Sized", -] -+++ diff --git a/data/1.35/boxed_closure_impls.toml b/data/1.35/boxed_closure_impls.toml new file mode 100644 index 0000000..857c276 --- /dev/null +++ b/data/1.35/boxed_closure_impls.toml @@ -0,0 +1,8 @@ +title = "boxed closure `Fn*` trait implementations" +flag = "boxed_closure_impls" +impl_pr_id = 59500 +items = [ + "impl FnOnce for Box where F: FnOnce + ?Sized", + "impl FnMut for Box where F: FnMut + ?Sized", + "impl Fn for Box where F: Fn + ?Sized", +] diff --git a/data/1.35/coerce_closure_to_unsafe_fn_ptr.md b/data/1.35/coerce_closure_to_unsafe_fn_ptr.md deleted file mode 100644 index b637b98..0000000 --- a/data/1.35/coerce_closure_to_unsafe_fn_ptr.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "closure to unsafe function pointer coercions" -impl_pr_id = 59580 -+++ diff --git a/data/1.35/coerce_closure_to_unsafe_fn_ptr.toml b/data/1.35/coerce_closure_to_unsafe_fn_ptr.toml new file mode 100644 index 0000000..0829f34 --- /dev/null +++ b/data/1.35/coerce_closure_to_unsafe_fn_ptr.toml @@ -0,0 +1,2 @@ +title = "closure to unsafe function pointer coercions" +impl_pr_id = 59580 diff --git a/data/1.35/dbg_no_args.md b/data/1.35/dbg_no_args.md deleted file mode 100644 index 535901b..0000000 --- a/data/1.35/dbg_no_args.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`dbg!` without arguments" -impl_pr_id = 57847 -+++ diff --git a/data/1.35/dbg_no_args.toml b/data/1.35/dbg_no_args.toml new file mode 100644 index 0000000..de3a7c7 --- /dev/null +++ b/data/1.35/dbg_no_args.toml @@ -0,0 +1,2 @@ +title = "`dbg!` without arguments" +impl_pr_id = 57847 diff --git a/data/1.35/exact_size_case_mapping_iter.md b/data/1.35/exact_size_case_mapping_iter.md deleted file mode 100644 index f6d28ec..0000000 --- a/data/1.35/exact_size_case_mapping_iter.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`ExactSizeIterator` implementation for `ToLowercase` and `ToUppercase`" -flag = "exact_size_case_mapping_iter" -impl_pr_id = 58778 -+++ diff --git a/data/1.35/exact_size_case_mapping_iter.toml b/data/1.35/exact_size_case_mapping_iter.toml new file mode 100644 index 0000000..695cd69 --- /dev/null +++ b/data/1.35/exact_size_case_mapping_iter.toml @@ -0,0 +1,3 @@ +title = "`ExactSizeIterator` implementation for `ToLowercase` and `ToUppercase`" +flag = "exact_size_case_mapping_iter" +impl_pr_id = 58778 diff --git a/data/1.36/alloc.md b/data/1.36/alloc.md deleted file mode 100644 index b261c8b..0000000 --- a/data/1.36/alloc.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "the `alloc` crate" -flag = "alloc" -stabilization_pr_id = 59675 -+++ diff --git a/data/1.36/alloc.toml b/data/1.36/alloc.toml new file mode 100644 index 0000000..3e0f5d9 --- /dev/null +++ b/data/1.36/alloc.toml @@ -0,0 +1,3 @@ +title = "the `alloc` crate" +flag = "alloc" +stabilization_pr_id = 59675 diff --git a/data/1.36/const_layout_from_size_align_unchecked.md b/data/1.36/const_layout_from_size_align_unchecked.md deleted file mode 100644 index f29181b..0000000 --- a/data/1.36/const_layout_from_size_align_unchecked.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`alloc::Layout::from_size_align_unchecked` as `const fn`" -impl_pr_id = 60370 -+++ diff --git a/data/1.36/const_layout_from_size_align_unchecked.toml b/data/1.36/const_layout_from_size_align_unchecked.toml new file mode 100644 index 0000000..3c4f049 --- /dev/null +++ b/data/1.36/const_layout_from_size_align_unchecked.toml @@ -0,0 +1,2 @@ +title = "`alloc::Layout::from_size_align_unchecked` as `const fn`" +impl_pr_id = 60370 diff --git a/data/1.36/const_needs_drop.md b/data/1.36/const_needs_drop.md deleted file mode 100644 index 8989db0..0000000 --- a/data/1.36/const_needs_drop.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`mem::needs_drop` as `const fn`" -flag = "const_needs_drop" -stabilization_pr_id = 60364 -+++ diff --git a/data/1.36/const_needs_drop.toml b/data/1.36/const_needs_drop.toml new file mode 100644 index 0000000..1bbb65b --- /dev/null +++ b/data/1.36/const_needs_drop.toml @@ -0,0 +1,3 @@ +title = "`mem::needs_drop` as `const fn`" +flag = "const_needs_drop" +stabilization_pr_id = 60364 diff --git a/data/1.36/const_nonnull_cast.md b/data/1.36/const_nonnull_cast.md deleted file mode 100644 index 7767774..0000000 --- a/data/1.36/const_nonnull_cast.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`NonNull::cast` as `const fn`" -impl_pr_id = 60244 -+++ diff --git a/data/1.36/const_nonnull_cast.toml b/data/1.36/const_nonnull_cast.toml new file mode 100644 index 0000000..6f3f1f1 --- /dev/null +++ b/data/1.36/const_nonnull_cast.toml @@ -0,0 +1,2 @@ +title = "`NonNull::cast` as `const fn`" +impl_pr_id = 60244 diff --git a/data/1.36/const_nonnull_dangling.md b/data/1.36/const_nonnull_dangling.md deleted file mode 100644 index 2be10a6..0000000 --- a/data/1.36/const_nonnull_dangling.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`NonNull::dangling` as `const fn`" -impl_pr_id = 60244 -+++ diff --git a/data/1.36/const_nonnull_dangling.toml b/data/1.36/const_nonnull_dangling.toml new file mode 100644 index 0000000..023607c --- /dev/null +++ b/data/1.36/const_nonnull_dangling.toml @@ -0,0 +1,2 @@ +title = "`NonNull::dangling` as `const fn`" +impl_pr_id = 60244 diff --git a/data/1.36/dbg_multiple_args.md b/data/1.36/dbg_multiple_args.md deleted file mode 100644 index 47fca37..0000000 --- a/data/1.36/dbg_multiple_args.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "multiple arguments in `dbg!` macro invocations" -impl_pr_id = 59826 -+++ diff --git a/data/1.36/dbg_multiple_args.toml b/data/1.36/dbg_multiple_args.toml new file mode 100644 index 0000000..86f4ee4 --- /dev/null +++ b/data/1.36/dbg_multiple_args.toml @@ -0,0 +1,2 @@ +title = "multiple arguments in `dbg!` macro invocations" +impl_pr_id = 59826 diff --git a/data/1.36/hashbrown.md b/data/1.36/hashbrown.md deleted file mode 100644 index 706c3e3..0000000 --- a/data/1.36/hashbrown.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`hashbrown::HashMap` as the implementation of `HashMap`" -impl_pr_id = 58623 -+++ diff --git a/data/1.36/hashbrown.toml b/data/1.36/hashbrown.toml new file mode 100644 index 0000000..bedc4d4 --- /dev/null +++ b/data/1.36/hashbrown.toml @@ -0,0 +1,2 @@ +title = "`hashbrown::HashMap` as the implementation of `HashMap`" +impl_pr_id = 58623 diff --git a/data/1.36/io_cursor_default.md b/data/1.36/io_cursor_default.md deleted file mode 100644 index fd11350..0000000 --- a/data/1.36/io_cursor_default.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`Default` implementation for `io::Cursor`" -impl_pr_id = 60234 -+++ diff --git a/data/1.36/io_cursor_default.toml b/data/1.36/io_cursor_default.toml new file mode 100644 index 0000000..5b4093f --- /dev/null +++ b/data/1.36/io_cursor_default.toml @@ -0,0 +1,2 @@ +title = "`Default` implementation for `io::Cursor`" +impl_pr_id = 60234 diff --git a/data/1.36/maybe_uninit.md b/data/1.36/maybe_uninit.md deleted file mode 100644 index 690d8db..0000000 --- a/data/1.36/maybe_uninit.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`mem::MaybeUninit`" -rfc_id = 1892 -impl_pr_id = 53508 -tracking_issue_id = 53491 -stabilization_pr_id = 60445 -+++ diff --git a/data/1.36/maybe_uninit.toml b/data/1.36/maybe_uninit.toml new file mode 100644 index 0000000..9d3b129 --- /dev/null +++ b/data/1.36/maybe_uninit.toml @@ -0,0 +1,5 @@ +title = "`mem::MaybeUninit`" +rfc_id = 1892 +impl_pr_id = 53508 +tracking_issue_id = 53491 +stabilization_pr_id = 60445 diff --git a/data/1.36/nll_2015.md b/data/1.36/nll_2015.md deleted file mode 100644 index 2193063..0000000 --- a/data/1.36/nll_2015.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "Non-Lexical Lifetimes (NLL) on the 2015 edition" -impl_pr_id = 59114 -+++ diff --git a/data/1.36/nll_2015.toml b/data/1.36/nll_2015.toml new file mode 100644 index 0000000..e84d287 --- /dev/null +++ b/data/1.36/nll_2015.toml @@ -0,0 +1,2 @@ +title = "Non-Lexical Lifetimes (NLL) on the 2015 edition" +impl_pr_id = 59114 diff --git a/data/1.36/string_borrow_mut_str.md b/data/1.36/string_borrow_mut_str.md deleted file mode 100644 index df4c7fa..0000000 --- a/data/1.36/string_borrow_mut_str.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`BorrowMut` implementation for `String`" -impl_pr_id = 60404 -+++ diff --git a/data/1.36/string_borrow_mut_str.toml b/data/1.36/string_borrow_mut_str.toml new file mode 100644 index 0000000..134f2e1 --- /dev/null +++ b/data/1.36/string_borrow_mut_str.toml @@ -0,0 +1,2 @@ +title = "`BorrowMut` implementation for `String`" +impl_pr_id = 60404 diff --git a/data/1.36/string_from_string_ref.md b/data/1.36/string_from_string_ref.md deleted file mode 100644 index 4f6e8a1..0000000 --- a/data/1.36/string_from_string_ref.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`From<&String>` implementation for `String`" -impl_pr_id = 59825 -+++ diff --git a/data/1.36/string_from_string_ref.toml b/data/1.36/string_from_string_ref.toml new file mode 100644 index 0000000..7d6f39c --- /dev/null +++ b/data/1.36/string_from_string_ref.toml @@ -0,0 +1,2 @@ +title = "`From<&String>` implementation for `String`" +impl_pr_id = 59825 diff --git a/data/1.37/copy_within.md b/data/1.37/copy_within.md deleted file mode 100644 index 9ecea34..0000000 --- a/data/1.37/copy_within.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`[T]::copy_within`" -flag = "copy_within" -impl_pr_id = 53652 -tracking_issue_id = 54236 -stabilization_pr_id = 61398 -+++ diff --git a/data/1.37/copy_within.toml b/data/1.37/copy_within.toml new file mode 100644 index 0000000..3645c0b --- /dev/null +++ b/data/1.37/copy_within.toml @@ -0,0 +1,5 @@ +title = "`[T]::copy_within`" +flag = "copy_within" +impl_pr_id = 53652 +tracking_issue_id = 54236 +stabilization_pr_id = 61398 diff --git a/data/1.37/generic_param_cfg_attrs.md b/data/1.37/generic_param_cfg_attrs.md deleted file mode 100644 index ffdf2ea..0000000 --- a/data/1.37/generic_param_cfg_attrs.md +++ /dev/null @@ -1,8 +0,0 @@ -+++ -title = "conditional compilation of generic parameters" -impl_pr_id = 61547 -items = [ - "#[cfg(...)]", - "#[cfg_attr(...)]", -] -+++ diff --git a/data/1.37/generic_param_cfg_attrs.toml b/data/1.37/generic_param_cfg_attrs.toml new file mode 100644 index 0000000..6c595c9 --- /dev/null +++ b/data/1.37/generic_param_cfg_attrs.toml @@ -0,0 +1,6 @@ +title = "conditional compilation of generic parameters" +impl_pr_id = 61547 +items = [ + "#[cfg(...)]", + "#[cfg_attr(...)]", +] diff --git a/data/1.37/kleene_op_2015.md b/data/1.37/kleene_op_2015.md deleted file mode 100644 index 51474cc..0000000 --- a/data/1.37/kleene_op_2015.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "the `?` Kleene macro operator in the 2015 edition" -impl_pr_id = 60932 -edition_guide_path = "rust-2018/macros/at-most-once.html" -+++ diff --git a/data/1.37/kleene_op_2015.toml b/data/1.37/kleene_op_2015.toml new file mode 100644 index 0000000..d4b8109 --- /dev/null +++ b/data/1.37/kleene_op_2015.toml @@ -0,0 +1,3 @@ +title = "the `?` Kleene macro operator in the 2015 edition" +impl_pr_id = 60932 +edition_guide_path = "rust-2018/macros/at-most-once.html" diff --git a/data/1.37/option_xor.md b/data/1.37/option_xor.md deleted file mode 100644 index 75185ef..0000000 --- a/data/1.37/option_xor.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`Option::xor`" -+++ diff --git a/data/1.37/option_xor.toml b/data/1.37/option_xor.toml new file mode 100644 index 0000000..bde6bc1 --- /dev/null +++ b/data/1.37/option_xor.toml @@ -0,0 +1 @@ +title = "`Option::xor`" diff --git a/data/1.37/repr_align_enum.md b/data/1.37/repr_align_enum.md deleted file mode 100644 index 6214dcb..0000000 --- a/data/1.37/repr_align_enum.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`#[repr(align(N)]` on enums" -flag = "repr_align_enum" -tracking_issue_id = 57996 -stabilization_pr_id = 61229 -edition_guide_path = "rust-2018/data-types/choosing-alignment-with-the-repr-attribute.html" -+++ diff --git a/data/1.37/repr_align_enum.toml b/data/1.37/repr_align_enum.toml new file mode 100644 index 0000000..65c7d78 --- /dev/null +++ b/data/1.37/repr_align_enum.toml @@ -0,0 +1,5 @@ +title = "`#[repr(align(N)]` on enums" +flag = "repr_align_enum" +tracking_issue_id = 57996 +stabilization_pr_id = 61229 +edition_guide_path = "rust-2018/data-types/choosing-alignment-with-the-repr-attribute.html" diff --git a/data/1.37/reverse_bits.md b/data/1.37/reverse_bits.md deleted file mode 100644 index b5c9bbf..0000000 --- a/data/1.37/reverse_bits.md +++ /dev/null @@ -1,22 +0,0 @@ -+++ -title = "`reverse_bits` integer methods" -flag = "reverse_bits" -items = [ - "i8::reverse_bits", - "i16::reverse_bits", - "i32::reverse_bits", - "i64::reverse_bits", - "i128::reverse_bits", - "isize::reverse_bits", - "u8::reverse_bits", - "u16::reverse_bits", - "u32::reverse_bits", - "u64::reverse_bits", - "u128::reverse_bits", - "usize::reverse_bits", - "Wrapping::reverse_bits", -] -impl_pr_id = 48573 -tracking_issue_id = 48763 -stabilization_pr_id = 61364 -+++ diff --git a/data/1.37/reverse_bits.toml b/data/1.37/reverse_bits.toml new file mode 100644 index 0000000..87ae002 --- /dev/null +++ b/data/1.37/reverse_bits.toml @@ -0,0 +1,20 @@ +title = "`reverse_bits` integer methods" +flag = "reverse_bits" +items = [ + "i8::reverse_bits", + "i16::reverse_bits", + "i32::reverse_bits", + "i64::reverse_bits", + "i128::reverse_bits", + "isize::reverse_bits", + "u8::reverse_bits", + "u16::reverse_bits", + "u32::reverse_bits", + "u64::reverse_bits", + "u128::reverse_bits", + "usize::reverse_bits", + "Wrapping::reverse_bits", +] +impl_pr_id = 48573 +tracking_issue_id = 48763 +stabilization_pr_id = 61364 diff --git a/data/1.37/type_alias_enum_variants.md b/data/1.37/type_alias_enum_variants.md deleted file mode 100644 index 4861895..0000000 --- a/data/1.37/type_alias_enum_variants.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "enum variants through a type alias" -tracking_issue_id = 49683 -stabilization_pr_id = 61682 -+++ diff --git a/data/1.37/type_alias_enum_variants.toml b/data/1.37/type_alias_enum_variants.toml new file mode 100644 index 0000000..3361079 --- /dev/null +++ b/data/1.37/type_alias_enum_variants.toml @@ -0,0 +1,3 @@ +title = "enum variants through a type alias" +tracking_issue_id = 49683 +stabilization_pr_id = 61682 diff --git a/data/1.37/underscore_const_names.md b/data/1.37/underscore_const_names.md deleted file mode 100644 index 7bb79a2..0000000 --- a/data/1.37/underscore_const_names.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`_` as an identifier for constants" -flag = "underscore_const_names" -tracking_issue_id = 54912 -+++ diff --git a/data/1.37/underscore_const_names.toml b/data/1.37/underscore_const_names.toml new file mode 100644 index 0000000..873ae90 --- /dev/null +++ b/data/1.37/underscore_const_names.toml @@ -0,0 +1,3 @@ +title = "`_` as an identifier for constants" +flag = "underscore_const_names" +tracking_issue_id = 54912 diff --git a/data/1.38/any_type_name.md b/data/1.38/any_type_name.md deleted file mode 100644 index 340cbda..0000000 --- a/data/1.38/any_type_name.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`any::type_name`" -+++ diff --git a/data/1.38/any_type_name.toml b/data/1.38/any_type_name.toml new file mode 100644 index 0000000..fe94c97 --- /dev/null +++ b/data/1.38/any_type_name.toml @@ -0,0 +1 @@ +title = "`any::type_name`" diff --git a/data/1.38/ascii_escapedefault_clone.md b/data/1.38/ascii_escapedefault_clone.md deleted file mode 100644 index 47c509f..0000000 --- a/data/1.38/ascii_escapedefault_clone.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`Clone` implementation for `ascii::EscapeDefault`" -impl_pr_id = 63421 -+++ diff --git a/data/1.38/ascii_escapedefault_clone.toml b/data/1.38/ascii_escapedefault_clone.toml new file mode 100644 index 0000000..9b5f64d --- /dev/null +++ b/data/1.38/ascii_escapedefault_clone.toml @@ -0,0 +1,2 @@ +title = "`Clone` implementation for `ascii::EscapeDefault`" +impl_pr_id = 63421 diff --git a/data/1.38/ascii_escapedefault_display.md b/data/1.38/ascii_escapedefault_display.md deleted file mode 100644 index 35bb00e..0000000 --- a/data/1.38/ascii_escapedefault_display.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`Display` implementation for `ascii::EscapeDefault`" -impl_pr_id = 63421 -+++ diff --git a/data/1.38/ascii_escapedefault_display.toml b/data/1.38/ascii_escapedefault_display.toml new file mode 100644 index 0000000..d27da4e --- /dev/null +++ b/data/1.38/ascii_escapedefault_display.toml @@ -0,0 +1,2 @@ +title = "`Display` implementation for `ascii::EscapeDefault`" +impl_pr_id = 63421 diff --git a/data/1.38/deprecated_macros.md b/data/1.38/deprecated_macros.md deleted file mode 100644 index 3103b14..0000000 --- a/data/1.38/deprecated_macros.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`#[deprecated]` on macros" -impl_pr_id = 62042 -+++ diff --git a/data/1.38/deprecated_macros.toml b/data/1.38/deprecated_macros.toml new file mode 100644 index 0000000..1dc5a96 --- /dev/null +++ b/data/1.38/deprecated_macros.toml @@ -0,0 +1,2 @@ +title = "`#[deprecated]` on macros" +impl_pr_id = 62042 diff --git a/data/1.38/duration_as_secs_f32.md b/data/1.38/duration_as_secs_f32.md deleted file mode 100644 index 7ccf12b..0000000 --- a/data/1.38/duration_as_secs_f32.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`Duration::as_secs_f32`" -+++ diff --git a/data/1.38/duration_as_secs_f32.toml b/data/1.38/duration_as_secs_f32.toml new file mode 100644 index 0000000..c55b1de --- /dev/null +++ b/data/1.38/duration_as_secs_f32.toml @@ -0,0 +1 @@ +title = "`Duration::as_secs_f32`" diff --git a/data/1.38/duration_as_secs_f64.md b/data/1.38/duration_as_secs_f64.md deleted file mode 100644 index c16f533..0000000 --- a/data/1.38/duration_as_secs_f64.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`Duration::as_secs_f64`" -+++ diff --git a/data/1.38/duration_as_secs_f64.toml b/data/1.38/duration_as_secs_f64.toml new file mode 100644 index 0000000..55bfd98 --- /dev/null +++ b/data/1.38/duration_as_secs_f64.toml @@ -0,0 +1 @@ +title = "`Duration::as_secs_f64`" diff --git a/data/1.38/duration_div_f32.md b/data/1.38/duration_div_f32.md deleted file mode 100644 index 116f738..0000000 --- a/data/1.38/duration_div_f32.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`Duration::div_f32`" -+++ diff --git a/data/1.38/duration_div_f32.toml b/data/1.38/duration_div_f32.toml new file mode 100644 index 0000000..70283a6 --- /dev/null +++ b/data/1.38/duration_div_f32.toml @@ -0,0 +1 @@ +title = "`Duration::div_f32`" diff --git a/data/1.38/duration_div_f64.md b/data/1.38/duration_div_f64.md deleted file mode 100644 index 4c58ccf..0000000 --- a/data/1.38/duration_div_f64.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`Duration::div_f64`" -+++ diff --git a/data/1.38/duration_div_f64.toml b/data/1.38/duration_div_f64.toml new file mode 100644 index 0000000..dfb7aa9 --- /dev/null +++ b/data/1.38/duration_div_f64.toml @@ -0,0 +1 @@ +title = "`Duration::div_f64`" diff --git a/data/1.38/duration_from_secs_f32.md b/data/1.38/duration_from_secs_f32.md deleted file mode 100644 index 2d62a0d..0000000 --- a/data/1.38/duration_from_secs_f32.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`Duration::from_secs_f32`" -+++ diff --git a/data/1.38/duration_from_secs_f32.toml b/data/1.38/duration_from_secs_f32.toml new file mode 100644 index 0000000..f43022b --- /dev/null +++ b/data/1.38/duration_from_secs_f32.toml @@ -0,0 +1 @@ +title = "`Duration::from_secs_f32`" diff --git a/data/1.38/duration_from_secs_f64.md b/data/1.38/duration_from_secs_f64.md deleted file mode 100644 index 26cdc23..0000000 --- a/data/1.38/duration_from_secs_f64.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`Duration::from_secs_f64`" -+++ diff --git a/data/1.38/duration_from_secs_f64.toml b/data/1.38/duration_from_secs_f64.toml new file mode 100644 index 0000000..1c1fc63 --- /dev/null +++ b/data/1.38/duration_from_secs_f64.toml @@ -0,0 +1 @@ +title = "`Duration::from_secs_f64`" diff --git a/data/1.38/duration_mul_f32.md b/data/1.38/duration_mul_f32.md deleted file mode 100644 index 0d17be8..0000000 --- a/data/1.38/duration_mul_f32.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`Duration::mul_f32`" -+++ diff --git a/data/1.38/duration_mul_f32.toml b/data/1.38/duration_mul_f32.toml new file mode 100644 index 0000000..6307193 --- /dev/null +++ b/data/1.38/duration_mul_f32.toml @@ -0,0 +1 @@ +title = "`Duration::mul_f32`" diff --git a/data/1.38/duration_mul_f64.md b/data/1.38/duration_mul_f64.md deleted file mode 100644 index 63f0a66..0000000 --- a/data/1.38/duration_mul_f64.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`Duration::mul_f64`" -+++ diff --git a/data/1.38/duration_mul_f64.toml b/data/1.38/duration_mul_f64.toml new file mode 100644 index 0000000..49670e4 --- /dev/null +++ b/data/1.38/duration_mul_f64.toml @@ -0,0 +1 @@ +title = "`Duration::mul_f64`" diff --git a/data/1.38/euclidean_division.md b/data/1.38/euclidean_division.md deleted file mode 100644 index 40d046d..0000000 --- a/data/1.38/euclidean_division.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "euclidean division & modulo" -flag = "euclidean_division" -stabilization_pr_id = 61884 -+++ diff --git a/data/1.38/euclidean_division.toml b/data/1.38/euclidean_division.toml new file mode 100644 index 0000000..ed6424e --- /dev/null +++ b/data/1.38/euclidean_division.toml @@ -0,0 +1,3 @@ +title = "euclidean division & modulo" +flag = "euclidean_division" +stabilization_pr_id = 61884 diff --git a/data/1.38/global_allocator_in_submodules.md b/data/1.38/global_allocator_in_submodules.md deleted file mode 100644 index dda7e41..0000000 --- a/data/1.38/global_allocator_in_submodules.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`#[global_allocator]` inside submodules" -impl_pr_id = 62735 -+++ diff --git a/data/1.38/global_allocator_in_submodules.toml b/data/1.38/global_allocator_in_submodules.toml new file mode 100644 index 0000000..c61e0dd --- /dev/null +++ b/data/1.38/global_allocator_in_submodules.toml @@ -0,0 +1,2 @@ +title = "`#[global_allocator]` inside submodules" +impl_pr_id = 62735 diff --git a/data/1.38/iter_peekable_double_ended.md b/data/1.38/iter_peekable_double_ended.md deleted file mode 100644 index fd03827..0000000 --- a/data/1.38/iter_peekable_double_ended.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`DoubleEndedIterator` implementation for `iter::Peekable`" -impl_pr_id = 61457 -+++ diff --git a/data/1.38/iter_peekable_double_ended.toml b/data/1.38/iter_peekable_double_ended.toml new file mode 100644 index 0000000..d4eedfe --- /dev/null +++ b/data/1.38/iter_peekable_double_ended.toml @@ -0,0 +1,2 @@ +title = "`DoubleEndedIterator` implementation for `iter::Peekable`" +impl_pr_id = 61457 diff --git a/data/1.38/iter_step_by_double_ended.md b/data/1.38/iter_step_by_double_ended.md deleted file mode 100644 index def7dbd..0000000 --- a/data/1.38/iter_step_by_double_ended.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`DoubleEndedIterator` implementation for `iter::StepBy`" -impl_pr_id = 61457 -+++ diff --git a/data/1.38/iter_step_by_double_ended.toml b/data/1.38/iter_step_by_double_ended.toml new file mode 100644 index 0000000..46d1a95 --- /dev/null +++ b/data/1.38/iter_step_by_double_ended.toml @@ -0,0 +1,2 @@ +title = "`DoubleEndedIterator` implementation for `iter::StepBy`" +impl_pr_id = 61457 diff --git a/data/1.38/iter_take_double_ended.md b/data/1.38/iter_take_double_ended.md deleted file mode 100644 index 889a57c..0000000 --- a/data/1.38/iter_take_double_ended.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`DoubleEndedIterator` implementation for `iter::Take`" -impl_pr_id = 61457 -+++ diff --git a/data/1.38/iter_take_double_ended.toml b/data/1.38/iter_take_double_ended.toml new file mode 100644 index 0000000..52675c4 --- /dev/null +++ b/data/1.38/iter_take_double_ended.toml @@ -0,0 +1,2 @@ +title = "`DoubleEndedIterator` implementation for `iter::Take`" +impl_pr_id = 61457 diff --git a/data/1.38/ptr_cast.md b/data/1.38/ptr_cast.md deleted file mode 100644 index 6e7d9ba..0000000 --- a/data/1.38/ptr_cast.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`cast` method on pointers" -items = ["<*const T>::cast", "<*mut T>::cast"] -+++ diff --git a/data/1.38/ptr_cast.toml b/data/1.38/ptr_cast.toml new file mode 100644 index 0000000..5a3f4f3 --- /dev/null +++ b/data/1.38/ptr_cast.toml @@ -0,0 +1,2 @@ +title = "`cast` method on pointers" +items = ["<*const T>::cast", "<*mut T>::cast"] diff --git a/data/1.38/shared_from_iter.md b/data/1.38/shared_from_iter.md deleted file mode 100644 index d159b56..0000000 --- a/data/1.38/shared_from_iter.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`FromIterator` implementation for `Rc` and `Arc`" -flag = "shared_from_iter" -impl_pr_id = 61953 -+++ diff --git a/data/1.38/shared_from_iter.toml b/data/1.38/shared_from_iter.toml new file mode 100644 index 0000000..3464aca --- /dev/null +++ b/data/1.38/shared_from_iter.toml @@ -0,0 +1,3 @@ +title = "`FromIterator` implementation for `Rc` and `Arc`" +flag = "shared_from_iter" +impl_pr_id = 61953 diff --git a/data/1.38/str_chars_debug.md b/data/1.38/str_chars_debug.md deleted file mode 100644 index 4cc163d..0000000 --- a/data/1.38/str_chars_debug.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`Debug` implementation for `std::str::Chars`" -impl_pr_id = 63000 -+++ diff --git a/data/1.38/str_chars_debug.toml b/data/1.38/str_chars_debug.toml new file mode 100644 index 0000000..dbef43a --- /dev/null +++ b/data/1.38/str_chars_debug.toml @@ -0,0 +1,2 @@ +title = "`Debug` implementation for `std::str::Chars`" +impl_pr_id = 63000 diff --git a/data/1.38/thread_accesserror_clone.md b/data/1.38/thread_accesserror_clone.md deleted file mode 100644 index bb7830f..0000000 --- a/data/1.38/thread_accesserror_clone.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`Clone` implementation for `thread::AccessError`" -impl_pr_id = 61491 -+++ diff --git a/data/1.38/thread_accesserror_clone.toml b/data/1.38/thread_accesserror_clone.toml new file mode 100644 index 0000000..16f747b --- /dev/null +++ b/data/1.38/thread_accesserror_clone.toml @@ -0,0 +1,2 @@ +title = "`Clone` implementation for `thread::AccessError`" +impl_pr_id = 61491 diff --git a/data/1.38/thread_accesserror_copy.md b/data/1.38/thread_accesserror_copy.md deleted file mode 100644 index 4c36c4c..0000000 --- a/data/1.38/thread_accesserror_copy.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`Copy` implementation for `thread::AccessError`" -impl_pr_id = 61491 -+++ diff --git a/data/1.38/thread_accesserror_copy.toml b/data/1.38/thread_accesserror_copy.toml new file mode 100644 index 0000000..cdb2b66 --- /dev/null +++ b/data/1.38/thread_accesserror_copy.toml @@ -0,0 +1,2 @@ +title = "`Copy` implementation for `thread::AccessError`" +impl_pr_id = 61491 diff --git a/data/1.38/thread_accesserror_eq.md b/data/1.38/thread_accesserror_eq.md deleted file mode 100644 index 04225c2..0000000 --- a/data/1.38/thread_accesserror_eq.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`Eq` implementation for `thread::AccessError`" -impl_pr_id = 61491 -+++ diff --git a/data/1.38/thread_accesserror_eq.toml b/data/1.38/thread_accesserror_eq.toml new file mode 100644 index 0000000..bd1124e --- /dev/null +++ b/data/1.38/thread_accesserror_eq.toml @@ -0,0 +1,2 @@ +title = "`Eq` implementation for `thread::AccessError`" +impl_pr_id = 61491 diff --git a/data/1.38/thread_accesserror_error.md b/data/1.38/thread_accesserror_error.md deleted file mode 100644 index 7e830f9..0000000 --- a/data/1.38/thread_accesserror_error.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`Error` implementation for `thread::AccessError`" -impl_pr_id = 61491 -+++ diff --git a/data/1.38/thread_accesserror_error.toml b/data/1.38/thread_accesserror_error.toml new file mode 100644 index 0000000..a135e49 --- /dev/null +++ b/data/1.38/thread_accesserror_error.toml @@ -0,0 +1,2 @@ +title = "`Error` implementation for `thread::AccessError`" +impl_pr_id = 61491 diff --git a/data/1.38/thread_accesserror_partialeq.md b/data/1.38/thread_accesserror_partialeq.md deleted file mode 100644 index fa43727..0000000 --- a/data/1.38/thread_accesserror_partialeq.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`PartialEq` implementation for `thread::AccessError`" -impl_pr_id = 61491 -+++ diff --git a/data/1.38/thread_accesserror_partialeq.toml b/data/1.38/thread_accesserror_partialeq.toml new file mode 100644 index 0000000..4d9d0fc --- /dev/null +++ b/data/1.38/thread_accesserror_partialeq.toml @@ -0,0 +1,2 @@ +title = "`PartialEq` implementation for `thread::AccessError`" +impl_pr_id = 61491 diff --git a/data/1.38/unpin_ptr.md b/data/1.38/unpin_ptr.md deleted file mode 100644 index c623129..0000000 --- a/data/1.38/unpin_ptr.md +++ /dev/null @@ -1,8 +0,0 @@ -+++ -title = "`Unpin` implementations for pointers" -impl_pr_id = 62583 -items = [ - "impl Unpin for *const T", - "impl Unpin for *mut T", -] -+++ diff --git a/data/1.38/unpin_ptr.toml b/data/1.38/unpin_ptr.toml new file mode 100644 index 0000000..6cbabc2 --- /dev/null +++ b/data/1.38/unpin_ptr.toml @@ -0,0 +1,6 @@ +title = "`Unpin` implementations for pointers" +impl_pr_id = 62583 +items = [ + "impl Unpin for *const T", + "impl Unpin for *mut T", +] diff --git a/data/1.39/async.md b/data/1.39/async.md deleted file mode 100644 index 187d8fa..0000000 --- a/data/1.39/async.md +++ /dev/null @@ -1,10 +0,0 @@ -+++ -title = "`async`" -flag = "async_await" -tracking_issue_id = 50547 -doc_path = "std/keyword.async.html" -items = [ - "async fn", - "async move { ... }", -] -+++ diff --git a/data/1.39/async.toml b/data/1.39/async.toml new file mode 100644 index 0000000..5d3b166 --- /dev/null +++ b/data/1.39/async.toml @@ -0,0 +1,8 @@ +title = "`async`" +flag = "async_await" +tracking_issue_id = 50547 +doc_path = "std/keyword.async.html" +items = [ + "async fn", + "async move { ... }", +] diff --git a/data/1.39/await.md b/data/1.39/await.md deleted file mode 100644 index 0e1ec39..0000000 --- a/data/1.39/await.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`.await`" -flag = "async_await" -tracking_issue_id = 50547 -doc_path = "std/keyword.await.html" -+++ diff --git a/data/1.39/await.toml b/data/1.39/await.toml new file mode 100644 index 0000000..4277d32 --- /dev/null +++ b/data/1.39/await.toml @@ -0,0 +1,4 @@ +title = "`.await`" +flag = "async_await" +tracking_issue_id = 50547 +doc_path = "std/keyword.await.html" diff --git a/data/1.39/bind_by_move_pattern_guards.md b/data/1.39/bind_by_move_pattern_guards.md deleted file mode 100644 index 9a4aa90..0000000 --- a/data/1.39/bind_by_move_pattern_guards.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "shared references to bind-by-move patterns in `match` arms' guards" -flag = "bind_by_move_pattern_guards" -tracking_issue_id = 15287 -stabilization_pr_id = 63118 -+++ diff --git a/data/1.39/bind_by_move_pattern_guards.toml b/data/1.39/bind_by_move_pattern_guards.toml new file mode 100644 index 0000000..4d3b7e1 --- /dev/null +++ b/data/1.39/bind_by_move_pattern_guards.toml @@ -0,0 +1,4 @@ +title = "shared references to bind-by-move patterns in `match` arms' guards" +flag = "bind_by_move_pattern_guards" +tracking_issue_id = 15287 +stabilization_pr_id = 63118 diff --git a/data/1.39/const_linkedlist_new.md b/data/1.39/const_linkedlist_new.md deleted file mode 100644 index a386459..0000000 --- a/data/1.39/const_linkedlist_new.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`LinkedList::new` as `const fn`" -+++ diff --git a/data/1.39/const_linkedlist_new.toml b/data/1.39/const_linkedlist_new.toml new file mode 100644 index 0000000..a40e99b --- /dev/null +++ b/data/1.39/const_linkedlist_new.toml @@ -0,0 +1 @@ +title = "`LinkedList::new` as `const fn`" diff --git a/data/1.39/const_slice_len.md b/data/1.39/const_slice_len.md deleted file mode 100644 index a4023f4..0000000 --- a/data/1.39/const_slice_len.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`[T]::len` as `const fn`" -+++ diff --git a/data/1.39/const_slice_len.toml b/data/1.39/const_slice_len.toml new file mode 100644 index 0000000..d521eaa --- /dev/null +++ b/data/1.39/const_slice_len.toml @@ -0,0 +1 @@ +title = "`[T]::len` as `const fn`" diff --git a/data/1.39/const_str_as_bytes.md b/data/1.39/const_str_as_bytes.md deleted file mode 100644 index ac352df..0000000 --- a/data/1.39/const_str_as_bytes.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`str::as_bytes` as `const fn`" -+++ diff --git a/data/1.39/const_str_as_bytes.toml b/data/1.39/const_str_as_bytes.toml new file mode 100644 index 0000000..2f7cd2d --- /dev/null +++ b/data/1.39/const_str_as_bytes.toml @@ -0,0 +1 @@ +title = "`str::as_bytes` as `const fn`" diff --git a/data/1.39/const_str_len.md b/data/1.39/const_str_len.md deleted file mode 100644 index 1a6f83b..0000000 --- a/data/1.39/const_str_len.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`str::len` as `const fn`" -+++ diff --git a/data/1.39/const_str_len.toml b/data/1.39/const_str_len.toml new file mode 100644 index 0000000..cd68c78 --- /dev/null +++ b/data/1.39/const_str_len.toml @@ -0,0 +1 @@ +title = "`str::len` as `const fn`" diff --git a/data/1.39/const_string_new.md b/data/1.39/const_string_new.md deleted file mode 100644 index 64207c2..0000000 --- a/data/1.39/const_string_new.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`String::new` as `const fn`" -+++ diff --git a/data/1.39/const_string_new.toml b/data/1.39/const_string_new.toml new file mode 100644 index 0000000..9baed2d --- /dev/null +++ b/data/1.39/const_string_new.toml @@ -0,0 +1 @@ +title = "`String::new` as `const fn`" diff --git a/data/1.39/const_vec_new.md b/data/1.39/const_vec_new.md deleted file mode 100644 index 284b739..0000000 --- a/data/1.39/const_vec_new.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`Vec::new` as `const fn`" -+++ diff --git a/data/1.39/const_vec_new.toml b/data/1.39/const_vec_new.toml new file mode 100644 index 0000000..726a027 --- /dev/null +++ b/data/1.39/const_vec_new.toml @@ -0,0 +1 @@ +title = "`Vec::new` as `const fn`" diff --git a/data/1.39/instant_checked_duration_since.md b/data/1.39/instant_checked_duration_since.md deleted file mode 100644 index 7796475..0000000 --- a/data/1.39/instant_checked_duration_since.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`Instant::checked_duration_since`" -+++ diff --git a/data/1.39/instant_checked_duration_since.toml b/data/1.39/instant_checked_duration_since.toml new file mode 100644 index 0000000..cb60be9 --- /dev/null +++ b/data/1.39/instant_checked_duration_since.toml @@ -0,0 +1 @@ +title = "`Instant::checked_duration_since`" diff --git a/data/1.39/instant_saturating_duration_since.md b/data/1.39/instant_saturating_duration_since.md deleted file mode 100644 index 072fcba..0000000 --- a/data/1.39/instant_saturating_duration_since.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`Instant::saturating_duration_since`" -+++ diff --git a/data/1.39/instant_saturating_duration_since.toml b/data/1.39/instant_saturating_duration_since.toml new file mode 100644 index 0000000..2804830 --- /dev/null +++ b/data/1.39/instant_saturating_duration_since.toml @@ -0,0 +1 @@ +title = "`Instant::saturating_duration_since`" diff --git a/data/1.39/param_attrs.md b/data/1.39/param_attrs.md deleted file mode 100644 index d7aeaba..0000000 --- a/data/1.39/param_attrs.md +++ /dev/null @@ -1,14 +0,0 @@ -+++ -title = "attributes on function parameters" -flag = "param_attrs" -tracking_issue_id = 60406 -stabilization_pr_id = 64010 -items = [ - "#[cfg(...)]", - "#[cfg_attr(...)]", - "#[allow(...)]", - "#[warn(...)]", - "#[deny(...)]", - "#[forbid(...)]", -] -+++ diff --git a/data/1.39/param_attrs.toml b/data/1.39/param_attrs.toml new file mode 100644 index 0000000..3130353 --- /dev/null +++ b/data/1.39/param_attrs.toml @@ -0,0 +1,12 @@ +title = "attributes on function parameters" +flag = "param_attrs" +tracking_issue_id = 60406 +stabilization_pr_id = 64010 +items = [ + "#[cfg(...)]", + "#[cfg_attr(...)]", + "#[allow(...)]", + "#[warn(...)]", + "#[deny(...)]", + "#[forbid(...)]", +] diff --git a/data/1.39/pin_into_inner.md b/data/1.39/pin_into_inner.md deleted file mode 100644 index 9c02dff..0000000 --- a/data/1.39/pin_into_inner.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`Pin::into_inner`" -+++ diff --git a/data/1.39/pin_into_inner.toml b/data/1.39/pin_into_inner.toml new file mode 100644 index 0000000..a801700 --- /dev/null +++ b/data/1.39/pin_into_inner.toml @@ -0,0 +1 @@ +title = "`Pin::into_inner`" diff --git a/data/1.4/use_group_renaming.md b/data/1.4/use_group_renaming.md deleted file mode 100644 index f053460..0000000 --- a/data/1.4/use_group_renaming.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "item renamings in import groups" -+++ diff --git a/data/1.4/use_group_renaming.toml b/data/1.4/use_group_renaming.toml new file mode 100644 index 0000000..f49e270 --- /dev/null +++ b/data/1.4/use_group_renaming.toml @@ -0,0 +1 @@ +title = "item renamings in import groups" diff --git a/data/1.40/cfg_doctest.md b/data/1.40/cfg_doctest.md deleted file mode 100644 index 3228ef0..0000000 --- a/data/1.40/cfg_doctest.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`#[cfg(doctest)]`" -flag = "cfg_doctest" -tracking_issue_id = 62210 -stabilization_pr_id = 63803 -+++ diff --git a/data/1.40/cfg_doctest.toml b/data/1.40/cfg_doctest.toml new file mode 100644 index 0000000..af6f7ab --- /dev/null +++ b/data/1.40/cfg_doctest.toml @@ -0,0 +1,4 @@ +title = "`#[cfg(doctest)]`" +flag = "cfg_doctest" +tracking_issue_id = 62210 +stabilization_pr_id = 63803 diff --git a/data/1.40/const_constructor.md b/data/1.40/const_constructor.md deleted file mode 100644 index 3180b4f..0000000 --- a/data/1.40/const_constructor.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "tuple struct and tuple variant constructors in `const fn`" -flag = "const_constructor" -tracking_issue_id = 61456 -stabilization_pr_id = 65188 -+++ diff --git a/data/1.40/const_constructor.toml b/data/1.40/const_constructor.toml new file mode 100644 index 0000000..a421db0 --- /dev/null +++ b/data/1.40/const_constructor.toml @@ -0,0 +1,4 @@ +title = "tuple struct and tuple variant constructors in `const fn`" +flag = "const_constructor" +tracking_issue_id = 61456 +stabilization_pr_id = 65188 diff --git a/data/1.40/const_is_power_of_two.md b/data/1.40/const_is_power_of_two.md deleted file mode 100644 index b93cb1f..0000000 --- a/data/1.40/const_is_power_of_two.md +++ /dev/null @@ -1,12 +0,0 @@ -+++ -title = "`is_power_of_two` as `const fn`" -impl_pr_id = 65092 -items = [ - "u8::is_power_of_two", - "u16::is_power_of_two", - "u32::is_power_of_two", - "u64::is_power_of_two", - "u128::is_power_of_two", - "usize::is_power_of_two", -] -+++ diff --git a/data/1.40/const_is_power_of_two.toml b/data/1.40/const_is_power_of_two.toml new file mode 100644 index 0000000..0c66220 --- /dev/null +++ b/data/1.40/const_is_power_of_two.toml @@ -0,0 +1,10 @@ +title = "`is_power_of_two` as `const fn`" +impl_pr_id = 65092 +items = [ + "u8::is_power_of_two", + "u16::is_power_of_two", + "u32::is_power_of_two", + "u64::is_power_of_two", + "u128::is_power_of_two", + "usize::is_power_of_two", +] diff --git a/data/1.40/float_to_from_bytes.md b/data/1.40/float_to_from_bytes.md deleted file mode 100644 index 253ccf9..0000000 --- a/data/1.40/float_to_from_bytes.md +++ /dev/null @@ -1,19 +0,0 @@ -+++ -title = "float ↔ bytes conversion functions" -flag = "float_to_from_bytes" -items = [ - "f32::to_ne_bytes", - "f32::to_le_bytes", - "f32::to_be_bytes", - "f32::from_ne_bytes", - "f32::from_le_bytes", - "f32::from_be_bytes", - - "f64::to_ne_bytes", - "f64::to_le_bytes", - "f64::to_be_bytes", - "f64::from_ne_bytes", - "f64::from_le_bytes", - "f64::from_be_bytes", -] -+++ diff --git a/data/1.40/float_to_from_bytes.toml b/data/1.40/float_to_from_bytes.toml new file mode 100644 index 0000000..2427a73 --- /dev/null +++ b/data/1.40/float_to_from_bytes.toml @@ -0,0 +1,17 @@ +title = "float ↔ bytes conversion functions" +flag = "float_to_from_bytes" +items = [ + "f32::to_ne_bytes", + "f32::to_le_bytes", + "f32::to_be_bytes", + "f32::from_ne_bytes", + "f32::from_le_bytes", + "f32::from_be_bytes", + + "f64::to_ne_bytes", + "f64::to_le_bytes", + "f64::to_be_bytes", + "f64::from_ne_bytes", + "f64::from_le_bytes", + "f64::from_be_bytes", +] diff --git a/data/1.40/macros_in_extern.md b/data/1.40/macros_in_extern.md deleted file mode 100644 index 668d7bc..0000000 --- a/data/1.40/macros_in_extern.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "macro invocations in `extern {}` blocks" -flag = "macros_in_extern" -impl_pr_id = 49350 -tracking_issue_id = 49476 -stabilization_pr_id = 63931 -+++ diff --git a/data/1.40/macros_in_extern.toml b/data/1.40/macros_in_extern.toml new file mode 100644 index 0000000..6d2ce6e --- /dev/null +++ b/data/1.40/macros_in_extern.toml @@ -0,0 +1,5 @@ +title = "macro invocations in `extern {}` blocks" +flag = "macros_in_extern" +impl_pr_id = 49350 +tracking_issue_id = 49476 +stabilization_pr_id = 63931 diff --git a/data/1.40/map_get_key_value.md b/data/1.40/map_get_key_value.md deleted file mode 100644 index af00a4d..0000000 --- a/data/1.40/map_get_key_value.md +++ /dev/null @@ -1,11 +0,0 @@ -+++ -title = "`get_key_value` on `HashMap` and `BTreeMap`" -flag = "map_get_key_value" -impl_pr_id = 49346 -tracking_issue_id = 49347 -stabilization_pr_id = 64836 -items = [ - "HashMap::get_key_value", - "BTreeMap::get_key_value", -] -+++ diff --git a/data/1.40/map_get_key_value.toml b/data/1.40/map_get_key_value.toml new file mode 100644 index 0000000..61db97d --- /dev/null +++ b/data/1.40/map_get_key_value.toml @@ -0,0 +1,9 @@ +title = "`get_key_value` on `HashMap` and `BTreeMap`" +flag = "map_get_key_value" +impl_pr_id = 49346 +tracking_issue_id = 49347 +stabilization_pr_id = 64836 +items = [ + "HashMap::get_key_value", + "BTreeMap::get_key_value", +] diff --git a/data/1.40/mem_take.md b/data/1.40/mem_take.md deleted file mode 100644 index a2dc7b9..0000000 --- a/data/1.40/mem_take.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`mem::take`" -+++ diff --git a/data/1.40/mem_take.toml b/data/1.40/mem_take.toml new file mode 100644 index 0000000..1af619f --- /dev/null +++ b/data/1.40/mem_take.toml @@ -0,0 +1 @@ +title = "`mem::take`" diff --git a/data/1.40/modern_meta_macro_pattern.md b/data/1.40/modern_meta_macro_pattern.md deleted file mode 100644 index 2d39327..0000000 --- a/data/1.40/modern_meta_macro_pattern.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "the `meta` fragment specifier in `macro_rules!` for modern attribute syntax" -impl_pr_id = 63674 -+++ diff --git a/data/1.40/modern_meta_macro_pattern.toml b/data/1.40/modern_meta_macro_pattern.toml new file mode 100644 index 0000000..a8002ea --- /dev/null +++ b/data/1.40/modern_meta_macro_pattern.toml @@ -0,0 +1,2 @@ +title = "the `meta` fragment specifier in `macro_rules!` for modern attribute syntax" +impl_pr_id = 63674 diff --git a/data/1.40/non_exhaustive.md b/data/1.40/non_exhaustive.md deleted file mode 100644 index f30c680..0000000 --- a/data/1.40/non_exhaustive.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`#![non_exhaustive]`" -flag = "non_exhaustive" -rfc_id = 2008 -tracking_issue_id = 44109 -stabilization_pr_id = 64639 -+++ diff --git a/data/1.40/non_exhaustive.toml b/data/1.40/non_exhaustive.toml new file mode 100644 index 0000000..2723702 --- /dev/null +++ b/data/1.40/non_exhaustive.toml @@ -0,0 +1,5 @@ +title = "`#![non_exhaustive]`" +flag = "non_exhaustive" +rfc_id = 2008 +tracking_issue_id = 44109 +stabilization_pr_id = 64639 diff --git a/data/1.40/option_deref.md b/data/1.40/option_deref.md deleted file mode 100644 index 9ac7d91..0000000 --- a/data/1.40/option_deref.md +++ /dev/null @@ -1,10 +0,0 @@ -+++ -title = "`as_deref` and `as_deref_mut` on `Option`" -flag = "option_deref" -tracking_issue_id = 50264 -stabilization_pr_id = 64708 -items = [ - "Option::as_deref", - "Option::as_deref_mut", -] -+++ diff --git a/data/1.40/option_deref.toml b/data/1.40/option_deref.toml new file mode 100644 index 0000000..b9d1afc --- /dev/null +++ b/data/1.40/option_deref.toml @@ -0,0 +1,8 @@ +title = "`as_deref` and `as_deref_mut` on `Option`" +flag = "option_deref" +tracking_issue_id = 50264 +stabilization_pr_id = 64708 +items = [ + "Option::as_deref", + "Option::as_deref_mut", +] diff --git a/data/1.40/option_flattening.md b/data/1.40/option_flattening.md deleted file mode 100644 index 33f94f8..0000000 --- a/data/1.40/option_flattening.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`Option::flatten`" -flag = "option_flattening" -impl_pr_id = 60256 -tracking_issue_id = 60258 -stabilization_pr_id = 64747 -+++ diff --git a/data/1.40/option_flattening.toml b/data/1.40/option_flattening.toml new file mode 100644 index 0000000..43564a9 --- /dev/null +++ b/data/1.40/option_flattening.toml @@ -0,0 +1,5 @@ +title = "`Option::flatten`" +flag = "option_flattening" +impl_pr_id = 60256 +tracking_issue_id = 60258 +stabilization_pr_id = 64747 diff --git a/data/1.40/proc_macro_generated_macro_rules.md b/data/1.40/proc_macro_generated_macro_rules.md deleted file mode 100644 index a4f3446..0000000 --- a/data/1.40/proc_macro_generated_macro_rules.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "proc-macros that generate `macro_rules!` macros" -stabilization_pr_id = 64035 -+++ diff --git a/data/1.40/proc_macro_generated_macro_rules.toml b/data/1.40/proc_macro_generated_macro_rules.toml new file mode 100644 index 0000000..8966bf3 --- /dev/null +++ b/data/1.40/proc_macro_generated_macro_rules.toml @@ -0,0 +1,2 @@ +title = "proc-macros that generate `macro_rules!` macros" +stabilization_pr_id = 64035 diff --git a/data/1.40/slice_repeat.md b/data/1.40/slice_repeat.md deleted file mode 100644 index 1c46c97..0000000 --- a/data/1.40/slice_repeat.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`slice::repeat`" -+++ diff --git a/data/1.40/slice_repeat.toml b/data/1.40/slice_repeat.toml new file mode 100644 index 0000000..7cb4952 --- /dev/null +++ b/data/1.40/slice_repeat.toml @@ -0,0 +1 @@ +title = "`slice::repeat`" diff --git a/data/1.40/todo_macro.md b/data/1.40/todo_macro.md deleted file mode 100644 index 204a0f0..0000000 --- a/data/1.40/todo_macro.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`todo!`" -impl_pr_id = 56348 -tracking_issue_id = 59277 -stabilization_pr_id = 61879 -doc_path = "std/macro.todo.html" -+++ diff --git a/data/1.40/todo_macro.toml b/data/1.40/todo_macro.toml new file mode 100644 index 0000000..e1d2829 --- /dev/null +++ b/data/1.40/todo_macro.toml @@ -0,0 +1,5 @@ +title = "`todo!`" +impl_pr_id = 56348 +tracking_issue_id = 59277 +stabilization_pr_id = 61879 +doc_path = "std/macro.todo.html" diff --git a/data/1.40/type_proc_macros.md b/data/1.40/type_proc_macros.md deleted file mode 100644 index 43fa1eb..0000000 --- a/data/1.40/type_proc_macros.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "function-like procedural macros in type position" -impl_pr_id = 49350 -tracking_issue_id = 49476 -stabilization_pr_id = 63931 -+++ diff --git a/data/1.40/type_proc_macros.toml b/data/1.40/type_proc_macros.toml new file mode 100644 index 0000000..231a426 --- /dev/null +++ b/data/1.40/type_proc_macros.toml @@ -0,0 +1,4 @@ +title = "function-like procedural macros in type position" +impl_pr_id = 49350 +tracking_issue_id = 49476 +stabilization_pr_id = 63931 diff --git a/data/1.40/udpsocker_peer_addr.md b/data/1.40/udpsocker_peer_addr.md deleted file mode 100644 index 733944e..0000000 --- a/data/1.40/udpsocker_peer_addr.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "`UdpSocket::peer_addr`" -+++ diff --git a/data/1.40/udpsocker_peer_addr.toml b/data/1.40/udpsocker_peer_addr.toml new file mode 100644 index 0000000..5ec6ec9 --- /dev/null +++ b/data/1.40/udpsocker_peer_addr.toml @@ -0,0 +1 @@ +title = "`UdpSocket::peer_addr`" diff --git a/data/1.41/cfg_doc.md b/data/1.41/cfg_doc.md deleted file mode 100644 index e27317a..0000000 --- a/data/1.41/cfg_doc.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`#[cfg(doc)]`" -flag = "doc_cfg" -impl_pr_id = 53076 -stabilization_pr_id = 61351 -+++ diff --git a/data/1.41/cfg_doc.toml b/data/1.41/cfg_doc.toml new file mode 100644 index 0000000..6e377e8 --- /dev/null +++ b/data/1.41/cfg_doc.toml @@ -0,0 +1,4 @@ +title = "`#[cfg(doc)]`" +flag = "doc_cfg" +impl_pr_id = 53076 +stabilization_pr_id = 61351 diff --git a/data/1.41/core_panic_info.md b/data/1.41/core_panic_info.md deleted file mode 100644 index eb0b388..0000000 --- a/data/1.41/core_panic_info.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "the `core::panic` module" -flag = "core_panic_info" -stabilization_pr_id = 66771 -+++ diff --git a/data/1.41/core_panic_info.toml b/data/1.41/core_panic_info.toml new file mode 100644 index 0000000..02f3890 --- /dev/null +++ b/data/1.41/core_panic_info.toml @@ -0,0 +1,3 @@ +title = "the `core::panic` module" +flag = "core_panic_info" +stabilization_pr_id = 66771 diff --git a/data/1.41/maybe_uninit_debug.md b/data/1.41/maybe_uninit_debug.md deleted file mode 100644 index 4156eda..0000000 --- a/data/1.41/maybe_uninit_debug.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`Debug` implementation for `MaybeUninit`" -flag = "maybe_uninit_debug" -impl_pr_id = 65013 -+++ diff --git a/data/1.41/maybe_uninit_debug.toml b/data/1.41/maybe_uninit_debug.toml new file mode 100644 index 0000000..a4c86ce --- /dev/null +++ b/data/1.41/maybe_uninit_debug.toml @@ -0,0 +1,3 @@ +title = "`Debug` implementation for `MaybeUninit`" +flag = "maybe_uninit_debug" +impl_pr_id = 65013 diff --git a/data/1.41/re_rebalance_coherence.md b/data/1.41/re_rebalance_coherence.md deleted file mode 100644 index 5750583..0000000 --- a/data/1.41/re_rebalance_coherence.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "relaxed coherence rules" -flag = "re_rebalance_coherence" -tracking_issue_id = 55437 -+++ diff --git a/data/1.41/re_rebalance_coherence.toml b/data/1.41/re_rebalance_coherence.toml new file mode 100644 index 0000000..d6533e9 --- /dev/null +++ b/data/1.41/re_rebalance_coherence.toml @@ -0,0 +1,3 @@ +title = "relaxed coherence rules" +flag = "re_rebalance_coherence" +tracking_issue_id = 55437 diff --git a/data/1.41/result_map_or.md b/data/1.41/result_map_or.md deleted file mode 100644 index eeed9dc..0000000 --- a/data/1.41/result_map_or.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`Result::map_or`" -flag = "result_map_or" -impl_pr_id = 66292 -tracking_issue_id = 66293 -stabilization_pr_id = 66570 -+++ diff --git a/data/1.41/result_map_or.toml b/data/1.41/result_map_or.toml new file mode 100644 index 0000000..1f1d56a --- /dev/null +++ b/data/1.41/result_map_or.toml @@ -0,0 +1,5 @@ +title = "`Result::map_or`" +flag = "result_map_or" +impl_pr_id = 66292 +tracking_issue_id = 66293 +stabilization_pr_id = 66570 diff --git a/data/1.41/result_map_or_else.md b/data/1.41/result_map_or_else.md deleted file mode 100644 index a511b23..0000000 --- a/data/1.41/result_map_or_else.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`Result::map_or_else`" -flag = "result_map_or_else" -impl_pr_id = 53777 -tracking_issue_id = 53268 -stabilization_pr_id = 66322 -+++ diff --git a/data/1.41/result_map_or_else.toml b/data/1.41/result_map_or_else.toml new file mode 100644 index 0000000..2d91f4d --- /dev/null +++ b/data/1.41/result_map_or_else.toml @@ -0,0 +1,5 @@ +title = "`Result::map_or_else`" +flag = "result_map_or_else" +impl_pr_id = 53777 +tracking_issue_id = 53268 +stabilization_pr_id = 66322 diff --git a/data/1.41/weak_counts.md b/data/1.41/weak_counts.md deleted file mode 100644 index 6608a4d..0000000 --- a/data/1.41/weak_counts.md +++ /dev/null @@ -1,13 +0,0 @@ -+++ -title = "`Weak` count methods" -flag = "weak_counts" -impl_pr_id = 56696 -tracking_issue_id = 57977 -stabilization_pr_id = 65778 -items = [ - "rc::Weak::weak_count", - "rc::Weak::strong_count", - "sync::Weak::weak_count", - "sync::Weak::strong_count", -] -+++ diff --git a/data/1.41/weak_counts.toml b/data/1.41/weak_counts.toml new file mode 100644 index 0000000..13d1e8a --- /dev/null +++ b/data/1.41/weak_counts.toml @@ -0,0 +1,11 @@ +title = "`Weak` count methods" +flag = "weak_counts" +impl_pr_id = 56696 +tracking_issue_id = 57977 +stabilization_pr_id = 65778 +items = [ + "rc::Weak::weak_count", + "rc::Weak::strong_count", + "sync::Weak::weak_count", + "sync::Weak::strong_count", +] diff --git a/data/1.42/alloc_layout_const_new.md b/data/1.42/alloc_layout_const_new.md deleted file mode 100644 index 6e997a1..0000000 --- a/data/1.42/alloc_layout_const_new.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`alloc::Layout::new` as `const fn`" -flag = "alloc_layout_const_new" -impl_pr_id = 66254 -+++ diff --git a/data/1.42/alloc_layout_const_new.toml b/data/1.42/alloc_layout_const_new.toml new file mode 100644 index 0000000..5acad14 --- /dev/null +++ b/data/1.42/alloc_layout_const_new.toml @@ -0,0 +1,3 @@ +title = "`alloc::Layout::new` as `const fn`" +flag = "alloc_layout_const_new" +impl_pr_id = 66254 diff --git a/data/1.42/attr_on_inline_mod.md b/data/1.42/attr_on_inline_mod.md deleted file mode 100644 index 3379ea1..0000000 --- a/data/1.42/attr_on_inline_mod.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "attribute macros on inline modules" -stabilization_pr_id = 64273 -+++ diff --git a/data/1.42/attr_on_inline_mod.toml b/data/1.42/attr_on_inline_mod.toml new file mode 100644 index 0000000..e31910f --- /dev/null +++ b/data/1.42/attr_on_inline_mod.toml @@ -0,0 +1,2 @@ +title = "attribute macros on inline modules" +stabilization_pr_id = 64273 diff --git a/data/1.42/debug_map_key_value.md b/data/1.42/debug_map_key_value.md deleted file mode 100644 index 47eac95..0000000 --- a/data/1.42/debug_map_key_value.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`DebugMap::value`" -flag = "debug_map_key_value" -tracking_issue_id = 62482 -stabilization_pr_id = 68200 -+++ diff --git a/data/1.42/debug_map_key_value.toml b/data/1.42/debug_map_key_value.toml new file mode 100644 index 0000000..4cc80e5 --- /dev/null +++ b/data/1.42/debug_map_key_value.toml @@ -0,0 +1,4 @@ +title = "`DebugMap::value`" +flag = "debug_map_key_value" +tracking_issue_id = 62482 +stabilization_pr_id = 68200 diff --git a/data/1.42/eq_cursor.md b/data/1.42/eq_cursor.md deleted file mode 100644 index 539a7d5..0000000 --- a/data/1.42/eq_cursor.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`PartialEq` and `Eq` implementations for `io::Cursor`" -impl_pr_id = 67233 -+++ diff --git a/data/1.42/eq_cursor.toml b/data/1.42/eq_cursor.toml new file mode 100644 index 0000000..b706d6e --- /dev/null +++ b/data/1.42/eq_cursor.toml @@ -0,0 +1,2 @@ +title = "`PartialEq` and `Eq` implementations for `io::Cursor`" +impl_pr_id = 67233 diff --git a/data/1.42/iter_empty_send_sync.md b/data/1.42/iter_empty_send_sync.md deleted file mode 100644 index aff5366..0000000 --- a/data/1.42/iter_empty_send_sync.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "unconditional `Send` and `Sync` implementations for `iter::Empty`" -flag = "iter_empty_send_sync" -impl_pr_id = 68348 -items = [ - "unsafe impl Send for Empty {}", - "unsafe impl Sync for Empty {}", -] -+++ diff --git a/data/1.42/iter_empty_send_sync.toml b/data/1.42/iter_empty_send_sync.toml new file mode 100644 index 0000000..7897733 --- /dev/null +++ b/data/1.42/iter_empty_send_sync.toml @@ -0,0 +1,7 @@ +title = "unconditional `Send` and `Sync` implementations for `iter::Empty`" +flag = "iter_empty_send_sync" +impl_pr_id = 68348 +items = [ + "unsafe impl Send for Empty {}", + "unsafe impl Sync for Empty {}", +] diff --git a/data/1.42/manually_drop_take.md b/data/1.42/manually_drop_take.md deleted file mode 100644 index 68467aa..0000000 --- a/data/1.42/manually_drop_take.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`ManuallyDrop::take`" -flag = "manually_drop_take" -impl_pr_id = 55421 -tracking_issue_id = 55422 -stabilization_pr_id = 68066 -+++ diff --git a/data/1.42/manually_drop_take.toml b/data/1.42/manually_drop_take.toml new file mode 100644 index 0000000..667737a --- /dev/null +++ b/data/1.42/manually_drop_take.toml @@ -0,0 +1,5 @@ +title = "`ManuallyDrop::take`" +flag = "manually_drop_take" +impl_pr_id = 55421 +tracking_issue_id = 55422 +stabilization_pr_id = 68066 diff --git a/data/1.42/matches_macro.md b/data/1.42/matches_macro.md deleted file mode 100644 index a576cf9..0000000 --- a/data/1.42/matches_macro.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`matches!`" -flag = "matches_macro" -tracking_issue_id = 65721 -stabilization_pr_id = 67659 -+++ diff --git a/data/1.42/matches_macro.toml b/data/1.42/matches_macro.toml new file mode 100644 index 0000000..4517688 --- /dev/null +++ b/data/1.42/matches_macro.toml @@ -0,0 +1,4 @@ +title = "`matches!`" +flag = "matches_macro" +tracking_issue_id = 65721 +stabilization_pr_id = 67659 diff --git a/data/1.42/proc_macro_extern_prelude.md b/data/1.42/proc_macro_extern_prelude.md deleted file mode 100644 index 60d5291..0000000 --- a/data/1.42/proc_macro_extern_prelude.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -title = "the `proc_macro` crate without `extern crate` in procedural macro crates" -+++ diff --git a/data/1.42/proc_macro_extern_prelude.toml b/data/1.42/proc_macro_extern_prelude.toml new file mode 100644 index 0000000..6625103 --- /dev/null +++ b/data/1.42/proc_macro_extern_prelude.toml @@ -0,0 +1 @@ +title = "the `proc_macro` crate without `extern crate` in procedural macro crates" diff --git a/data/1.42/slice_from_raw_parts.md b/data/1.42/slice_from_raw_parts.md deleted file mode 100644 index a60b278..0000000 --- a/data/1.42/slice_from_raw_parts.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`ptr::slice_from_raw_parts_mut`" -flag = "slice_from_raw_parts" -impl_pr_id = 60667 -tracking_issue_id = 36925 -stabilization_pr_id = 68234 -+++ diff --git a/data/1.42/slice_from_raw_parts.toml b/data/1.42/slice_from_raw_parts.toml new file mode 100644 index 0000000..412519d --- /dev/null +++ b/data/1.42/slice_from_raw_parts.toml @@ -0,0 +1,5 @@ +title = "`ptr::slice_from_raw_parts_mut`" +flag = "slice_from_raw_parts" +impl_pr_id = 60667 +tracking_issue_id = 36925 +stabilization_pr_id = 68234 diff --git a/data/1.42/slice_patterns.md b/data/1.42/slice_patterns.md deleted file mode 100644 index 584709a..0000000 --- a/data/1.42/slice_patterns.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "subslice patterns (`[a, .., b]` and `[a, xs @ .., b]`)" -flag = "slice_patterns" -tracking_issue_id = 62254 -+++ diff --git a/data/1.42/slice_patterns.toml b/data/1.42/slice_patterns.toml new file mode 100644 index 0000000..621b9b0 --- /dev/null +++ b/data/1.42/slice_patterns.toml @@ -0,0 +1,3 @@ +title = "subslice patterns (`[a, .., b]` and `[a, xs @ .., b]`)" +flag = "slice_patterns" +tracking_issue_id = 62254 diff --git a/data/1.42/transparent_enums.md b/data/1.42/transparent_enums.md deleted file mode 100644 index 15fd305..0000000 --- a/data/1.42/transparent_enums.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`#[repr(transparent)]` on single-variant enums" -flag = "transparent_enums" -tracking_issue_id = 60405 -stabilization_pr_id = 68122 -+++ diff --git a/data/1.42/transparent_enums.toml b/data/1.42/transparent_enums.toml new file mode 100644 index 0000000..4d91aaf --- /dev/null +++ b/data/1.42/transparent_enums.toml @@ -0,0 +1,4 @@ +title = "`#[repr(transparent)]` on single-variant enums" +flag = "transparent_enums" +tracking_issue_id = 60405 +stabilization_pr_id = 68122 diff --git a/data/1.42/wait_timeout_until.md b/data/1.42/wait_timeout_until.md deleted file mode 100644 index 39facde..0000000 --- a/data/1.42/wait_timeout_until.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`Condvar::wait_timeout_while`" -flag = "wait_timeout_until" -tracking_issue_id = 47960 -stabilization_pr_id = 67076 -+++ diff --git a/data/1.42/wait_timeout_until.toml b/data/1.42/wait_timeout_until.toml new file mode 100644 index 0000000..e2d7105 --- /dev/null +++ b/data/1.42/wait_timeout_until.toml @@ -0,0 +1,4 @@ +title = "`Condvar::wait_timeout_while`" +flag = "wait_timeout_until" +tracking_issue_id = 47960 +stabilization_pr_id = 67076 diff --git a/data/1.42/wait_until.md b/data/1.42/wait_until.md deleted file mode 100644 index ff506b4..0000000 --- a/data/1.42/wait_until.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`Condvar::wait_while`" -flag = "wait_until" -tracking_issue_id = 47960 -stabilization_pr_id = 67076 -+++ diff --git a/data/1.42/wait_until.toml b/data/1.42/wait_until.toml new file mode 100644 index 0000000..ec6b2a8 --- /dev/null +++ b/data/1.42/wait_until.toml @@ -0,0 +1,4 @@ +title = "`Condvar::wait_while`" +flag = "wait_until" +tracking_issue_id = 47960 +stabilization_pr_id = 67076 diff --git a/data/1.43/assoc_int_consts.md b/data/1.43/assoc_int_consts.md deleted file mode 100644 index d0bd212..0000000 --- a/data/1.43/assoc_int_consts.md +++ /dev/null @@ -1,52 +0,0 @@ -+++ -title = "numeric constants as associated constants" -flag = "assoc_int_consts" -impl_pr_id = 68325 -tracking_issue_id = 68490 -stabilization_pr_id = 68952 -items = [ - "f32::RADIX", - "f32::MANTISSA_DIGITS", - "f32::DIGITS", - "f32::EPSILON", - "f32::MIN", - "f32::MIN_POSITIVE", - "f32::MAX", - "f32::MIN_EXP", - "f32::MAX_EXP", - "f32::MIN_10_EXP", - "f32::MAX_10_EXP", - "f32::NAN", - "f32::INFINITY", - "f32::NEG_INFINITY", - - "f64::RADIX", - "f64::MANTISSA_DIGITS", - "f64::DIGITS", - "f64::EPSILON", - "f64::MIN", - "f64::MIN_POSITIVE", - "f64::MAX", - "f64::MIN_EXP", - "f64::MAX_EXP", - "f64::MIN_10_EXP", - "f64::MAX_10_EXP", - "f64::NAN", - "f64::INFINITY", - "f64::NEG_INFINITY", - - "i8::MIN", "i8::MAX", - "i16::MIN", "i16::MAX", - "i32::MIN", "i32::MAX", - "i64::MIN", "i64::MAX", - "i128::MIN", "i128::MAX", - "isize::MIN", "isize::MAX", - - "u8::MIN", "u8::MAX", - "u16::MIN", "u16::MAX", - "u32::MIN", "u32::MAX", - "u64::MIN", "u64::MAX", - "u128::MIN", "u128::MAX", - "usize::MIN", "usize::MAX", -] -+++ diff --git a/data/1.43/assoc_int_consts.toml b/data/1.43/assoc_int_consts.toml new file mode 100644 index 0000000..1039e75 --- /dev/null +++ b/data/1.43/assoc_int_consts.toml @@ -0,0 +1,50 @@ +title = "numeric constants as associated constants" +flag = "assoc_int_consts" +impl_pr_id = 68325 +tracking_issue_id = 68490 +stabilization_pr_id = 68952 +items = [ + "f32::RADIX", + "f32::MANTISSA_DIGITS", + "f32::DIGITS", + "f32::EPSILON", + "f32::MIN", + "f32::MIN_POSITIVE", + "f32::MAX", + "f32::MIN_EXP", + "f32::MAX_EXP", + "f32::MIN_10_EXP", + "f32::MAX_10_EXP", + "f32::NAN", + "f32::INFINITY", + "f32::NEG_INFINITY", + + "f64::RADIX", + "f64::MANTISSA_DIGITS", + "f64::DIGITS", + "f64::EPSILON", + "f64::MIN", + "f64::MIN_POSITIVE", + "f64::MAX", + "f64::MIN_EXP", + "f64::MAX_EXP", + "f64::MIN_10_EXP", + "f64::MAX_10_EXP", + "f64::NAN", + "f64::INFINITY", + "f64::NEG_INFINITY", + + "i8::MIN", "i8::MAX", + "i16::MIN", "i16::MAX", + "i32::MIN", "i32::MAX", + "i64::MIN", "i64::MAX", + "i128::MIN", "i128::MAX", + "isize::MIN", "isize::MAX", + + "u8::MIN", "u8::MAX", + "u16::MIN", "u16::MAX", + "u32::MIN", "u32::MAX", + "u64::MIN", "u64::MAX", + "u128::MIN", "u128::MAX", + "usize::MIN", "usize::MAX", +] diff --git a/data/1.43/boxed_slice_try_from.md b/data/1.43/boxed_slice_try_from.md deleted file mode 100644 index 08cc564..0000000 --- a/data/1.43/boxed_slice_try_from.md +++ /dev/null @@ -1,11 +0,0 @@ -+++ -title = "`TryFrom` implementations from boxed slices to boxed arrays" -flag = "boxed_slice_try_from" -tracking_issue_id = 69202 -stabilization_pr_id = 69538 -items = [ - "impl TryFrom> for Box<[T; N]>", - "impl TryFrom> for Rc<[T; N]>", - "impl TryFrom> for Arc<[T; N]>", -] -+++ diff --git a/data/1.43/boxed_slice_try_from.toml b/data/1.43/boxed_slice_try_from.toml new file mode 100644 index 0000000..fd8250d --- /dev/null +++ b/data/1.43/boxed_slice_try_from.toml @@ -0,0 +1,9 @@ +title = "`TryFrom` implementations from boxed slices to boxed arrays" +flag = "boxed_slice_try_from" +tracking_issue_id = 69202 +stabilization_pr_id = 69538 +items = [ + "impl TryFrom> for Box<[T; N]>", + "impl TryFrom> for Rc<[T; N]>", + "impl TryFrom> for Arc<[T; N]>", +] diff --git a/data/1.43/const_ascii_methods_on_intrinsics.md b/data/1.43/const_ascii_methods_on_intrinsics.md deleted file mode 100644 index 109c04d..0000000 --- a/data/1.43/const_ascii_methods_on_intrinsics.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`u8::is_ascii` as `const fn`" -flag = "const_ascii_methods_on_intrinsics" -impl_pr_id = 68984 -+++ diff --git a/data/1.43/const_ascii_methods_on_intrinsics.toml b/data/1.43/const_ascii_methods_on_intrinsics.toml new file mode 100644 index 0000000..086a2d2 --- /dev/null +++ b/data/1.43/const_ascii_methods_on_intrinsics.toml @@ -0,0 +1,3 @@ +title = "`u8::is_ascii` as `const fn`" +flag = "const_ascii_methods_on_intrinsics" +impl_pr_id = 68984 diff --git a/data/1.43/core_primitive.md b/data/1.43/core_primitive.md deleted file mode 100644 index de6579f..0000000 --- a/data/1.43/core_primitive.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`core::primitive`" -flag = "core_primitive" -impl_pr_id = 67637 -+++ diff --git a/data/1.43/core_primitive.toml b/data/1.43/core_primitive.toml new file mode 100644 index 0000000..fd05be1 --- /dev/null +++ b/data/1.43/core_primitive.toml @@ -0,0 +1,3 @@ +title = "`core::primitive`" +flag = "core_primitive" +impl_pr_id = 67637 diff --git a/data/1.43/cstring_from_vec_of_nonzerou8.md b/data/1.43/cstring_from_vec_of_nonzerou8.md deleted file mode 100644 index 3e2db27..0000000 --- a/data/1.43/cstring_from_vec_of_nonzerou8.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`From>` implementation for `CString`" -flag = "cstring_from_vec_of_nonzerou8" -impl_pr_id = 64069 -+++ diff --git a/data/1.43/cstring_from_vec_of_nonzerou8.toml b/data/1.43/cstring_from_vec_of_nonzerou8.toml new file mode 100644 index 0000000..f29a0a7 --- /dev/null +++ b/data/1.43/cstring_from_vec_of_nonzerou8.toml @@ -0,0 +1,3 @@ +title = "`From>` implementation for `CString`" +flag = "cstring_from_vec_of_nonzerou8" +impl_pr_id = 64069 diff --git a/data/1.43/extra_log_consts.md b/data/1.43/extra_log_consts.md deleted file mode 100644 index f6f87c1..0000000 --- a/data/1.43/extra_log_consts.md +++ /dev/null @@ -1,12 +0,0 @@ -+++ -title = "`{f32, f64}::{LOG2_10, LOG10_2}`" -flag = "extra_log_consts" -tracking_issue_id = 50540 -stabilization_pr_id = 69249 -items = [ - "f32::LOG2_10", - "f32::LOG10_2", - "f64::LOG2_10", - "f64::LOG10_2", -] -+++ diff --git a/data/1.43/extra_log_consts.toml b/data/1.43/extra_log_consts.toml new file mode 100644 index 0000000..e01c47b --- /dev/null +++ b/data/1.43/extra_log_consts.toml @@ -0,0 +1,10 @@ +title = "`{f32, f64}::{LOG2_10, LOG10_2}`" +flag = "extra_log_consts" +tracking_issue_id = 50540 +stabilization_pr_id = 69249 +items = [ + "f32::LOG2_10", + "f32::LOG10_2", + "f64::LOG2_10", + "f64::LOG10_2", +] diff --git a/data/1.43/from_utf8_error_clone.md b/data/1.43/from_utf8_error_clone.md deleted file mode 100644 index 5f9bb89..0000000 --- a/data/1.43/from_utf8_error_clone.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`Clone` implementation for `FromUtf8Error`" -impl_pr_id = 68738 -+++ diff --git a/data/1.43/from_utf8_error_clone.toml b/data/1.43/from_utf8_error_clone.toml new file mode 100644 index 0000000..4e0d71b --- /dev/null +++ b/data/1.43/from_utf8_error_clone.toml @@ -0,0 +1,2 @@ +title = "`Clone` implementation for `FromUtf8Error`" +impl_pr_id = 68738 diff --git a/data/1.43/from_utf8_error_eq.md b/data/1.43/from_utf8_error_eq.md deleted file mode 100644 index c529acc..0000000 --- a/data/1.43/from_utf8_error_eq.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`Eq` implementation for `FromUtf8Error`" -impl_pr_id = 68738 -+++ diff --git a/data/1.43/from_utf8_error_eq.toml b/data/1.43/from_utf8_error_eq.toml new file mode 100644 index 0000000..58de7ca --- /dev/null +++ b/data/1.43/from_utf8_error_eq.toml @@ -0,0 +1,2 @@ +title = "`Eq` implementation for `FromUtf8Error`" +impl_pr_id = 68738 diff --git a/data/1.43/from_utf8_error_partial_eq.md b/data/1.43/from_utf8_error_partial_eq.md deleted file mode 100644 index 9d3b059..0000000 --- a/data/1.43/from_utf8_error_partial_eq.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`PartialEq` implementation for `FromUtf8Error`" -impl_pr_id = 68738 -+++ diff --git a/data/1.43/from_utf8_error_partial_eq.toml b/data/1.43/from_utf8_error_partial_eq.toml new file mode 100644 index 0000000..032a83c --- /dev/null +++ b/data/1.43/from_utf8_error_partial_eq.toml @@ -0,0 +1,2 @@ +title = "`PartialEq` implementation for `FromUtf8Error`" +impl_pr_id = 68738 diff --git a/data/1.43/if_attr.md b/data/1.43/if_attr.md deleted file mode 100644 index 6588776..0000000 --- a/data/1.43/if_attr.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "attributes on `if` expressions" -impl_pr_id = 69201 -+++ diff --git a/data/1.43/if_attr.toml b/data/1.43/if_attr.toml new file mode 100644 index 0000000..093621b --- /dev/null +++ b/data/1.43/if_attr.toml @@ -0,0 +1,2 @@ +title = "attributes on `if` expressions" +impl_pr_id = 69201 diff --git a/data/1.43/iter_once_with.md b/data/1.43/iter_once_with.md deleted file mode 100644 index 54b1679..0000000 --- a/data/1.43/iter_once_with.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`iter::once_with`" -flag = "iter_once_with" -tracking_issue_id = 57581 -stabilization_pr_id = 68800 -+++ diff --git a/data/1.43/iter_once_with.toml b/data/1.43/iter_once_with.toml new file mode 100644 index 0000000..4185b5d --- /dev/null +++ b/data/1.43/iter_once_with.toml @@ -0,0 +1,4 @@ +title = "`iter::once_with`" +flag = "iter_once_with" +tracking_issue_id = 57581 +stabilization_pr_id = 68800 diff --git a/data/1.43/once_is_completed.md b/data/1.43/once_is_completed.md deleted file mode 100644 index f089b79..0000000 --- a/data/1.43/once_is_completed.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`sync::once::Once::is_completed`" -impl_pr_id = 53027 -tracking_issue_id = 54890 -stabilization_pr_id = 68945 -+++ diff --git a/data/1.43/once_is_completed.toml b/data/1.43/once_is_completed.toml new file mode 100644 index 0000000..e3a716d --- /dev/null +++ b/data/1.43/once_is_completed.toml @@ -0,0 +1,4 @@ +title = "`sync::once::Once::is_completed`" +impl_pr_id = 53027 +tracking_issue_id = 54890 +stabilization_pr_id = 68945 diff --git a/data/1.43/string_as_mut.md b/data/1.43/string_as_mut.md deleted file mode 100644 index 33bd3d1..0000000 --- a/data/1.43/string_as_mut.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`AsMut` implementation for `String`" -flag = "string_as_mut" -impl_pr_id = 68742 -+++ diff --git a/data/1.43/string_as_mut.toml b/data/1.43/string_as_mut.toml new file mode 100644 index 0000000..949d758 --- /dev/null +++ b/data/1.43/string_as_mut.toml @@ -0,0 +1,3 @@ +title = "`AsMut` implementation for `String`" +flag = "string_as_mut" +impl_pr_id = 68742 diff --git a/data/1.44/alloc_layout_align_to.md b/data/1.44/alloc_layout_align_to.md deleted file mode 100644 index 53cf2d3..0000000 --- a/data/1.44/alloc_layout_align_to.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`alloc::Layout::align_to`" -flag = "alloc_layout_extras" -tracking_issue_id = 55724 -stabilization_pr_id = 69362 -+++ diff --git a/data/1.44/alloc_layout_align_to.toml b/data/1.44/alloc_layout_align_to.toml new file mode 100644 index 0000000..34be761 --- /dev/null +++ b/data/1.44/alloc_layout_align_to.toml @@ -0,0 +1,4 @@ +title = "`alloc::Layout::align_to`" +flag = "alloc_layout_extras" +tracking_issue_id = 55724 +stabilization_pr_id = 69362 diff --git a/data/1.44/alloc_layout_array.md b/data/1.44/alloc_layout_array.md deleted file mode 100644 index 02a3fff..0000000 --- a/data/1.44/alloc_layout_array.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`alloc::Layout::array`" -flag = "alloc_layout_extras" -tracking_issue_id = 55724 -stabilization_pr_id = 69362 -+++ diff --git a/data/1.44/alloc_layout_array.toml b/data/1.44/alloc_layout_array.toml new file mode 100644 index 0000000..5d6f916 --- /dev/null +++ b/data/1.44/alloc_layout_array.toml @@ -0,0 +1,4 @@ +title = "`alloc::Layout::array`" +flag = "alloc_layout_extras" +tracking_issue_id = 55724 +stabilization_pr_id = 69362 diff --git a/data/1.44/alloc_layout_extend.md b/data/1.44/alloc_layout_extend.md deleted file mode 100644 index bcd539a..0000000 --- a/data/1.44/alloc_layout_extend.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`alloc::Layout::extend`" -flag = "alloc_layout_extras" -tracking_issue_id = 55724 -stabilization_pr_id = 69362 -+++ diff --git a/data/1.44/alloc_layout_extend.toml b/data/1.44/alloc_layout_extend.toml new file mode 100644 index 0000000..1e14e80 --- /dev/null +++ b/data/1.44/alloc_layout_extend.toml @@ -0,0 +1,4 @@ +title = "`alloc::Layout::extend`" +flag = "alloc_layout_extras" +tracking_issue_id = 55724 +stabilization_pr_id = 69362 diff --git a/data/1.44/alloc_layout_pad_to_align.md b/data/1.44/alloc_layout_pad_to_align.md deleted file mode 100644 index 370d3dc..0000000 --- a/data/1.44/alloc_layout_pad_to_align.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`alloc::Layout::pad_to_align`" -flag = "alloc_layout_extras" -tracking_issue_id = 55724 -stabilization_pr_id = 69362 -+++ diff --git a/data/1.44/alloc_layout_pad_to_align.toml b/data/1.44/alloc_layout_pad_to_align.toml new file mode 100644 index 0000000..fd195ea --- /dev/null +++ b/data/1.44/alloc_layout_pad_to_align.toml @@ -0,0 +1,4 @@ +title = "`alloc::Layout::pad_to_align`" +flag = "alloc_layout_extras" +tracking_issue_id = 55724 +stabilization_pr_id = 69362 diff --git a/data/1.44/const_int_to_from_bytes.md b/data/1.44/const_int_to_from_bytes.md deleted file mode 100644 index 36fc980..0000000 --- a/data/1.44/const_int_to_from_bytes.md +++ /dev/null @@ -1,40 +0,0 @@ -+++ -title = "integer ↔ bytes conversion functions as `const fn`" -items = [ - "i8::to_ne_bytes", "i8::to_le_bytes", "i8::to_be_bytes", - "i8::from_ne_bytes", "i8::from_le_bytes", "i8::from_be_bytes", - - "i16::to_ne_bytes", "i16::to_le_bytes", "i16::to_be_bytes", - "i16::from_ne_bytes", "i16::from_le_bytes", "i16::from_be_bytes", - - "i32::to_ne_bytes", "i32::to_le_bytes", "i32::to_be_bytes", - "i32::from_ne_bytes", "i32::from_le_bytes", "i32::from_be_bytes", - - "i64::to_ne_bytes", "i64::to_le_bytes", "i64::to_be_bytes", - "i64::from_ne_bytes", "i64::from_le_bytes", "i64::from_be_bytes", - - "i128::to_ne_bytes", "i128::to_le_bytes", "i128::to_be_bytes", - "i128::from_ne_bytes", "i128::from_le_bytes", "i128::from_be_bytes", - - "isize::to_ne_bytes", "isize::to_le_bytes", "isize::to_be_bytes", - "isize::from_ne_bytes", "isize::from_le_bytes", "isize::from_be_bytes", - - "u8::to_ne_bytes", "u8::to_le_bytes", "u8::to_be_bytes", - "u8::from_ne_bytes", "u8::from_le_bytes", "u8::from_be_bytes", - - "u16::to_ne_bytes", "u16::to_le_bytes", "u16::to_be_bytes", - "u16::from_ne_bytes", "u16::from_le_bytes", "u16::from_be_bytes", - - "u32::to_ne_bytes", "u32::to_le_bytes", "u32::to_be_bytes", - "u32::from_ne_bytes", "u32::from_le_bytes", "u32::from_be_bytes", - - "u64::to_ne_bytes", "u64::to_le_bytes", "u64::to_be_bytes", - "u64::from_ne_bytes", "u64::from_le_bytes", "u64::from_be_bytes", - - "u128::to_ne_bytes", "u128::to_le_bytes", "u128::to_be_bytes", - "u128::from_ne_bytes", "u128::from_le_bytes", "u128::from_be_bytes", - - "usize::to_ne_bytes", "usize::to_le_bytes", "usize::to_be_bytes", - "usize::from_ne_bytes", "usize::from_le_bytes", "usize::from_be_bytes", -] -+++ diff --git a/data/1.44/const_int_to_from_bytes.toml b/data/1.44/const_int_to_from_bytes.toml new file mode 100644 index 0000000..831b2a6 --- /dev/null +++ b/data/1.44/const_int_to_from_bytes.toml @@ -0,0 +1,38 @@ +title = "integer ↔ bytes conversion functions as `const fn`" +items = [ + "i8::to_ne_bytes", "i8::to_le_bytes", "i8::to_be_bytes", + "i8::from_ne_bytes", "i8::from_le_bytes", "i8::from_be_bytes", + + "i16::to_ne_bytes", "i16::to_le_bytes", "i16::to_be_bytes", + "i16::from_ne_bytes", "i16::from_le_bytes", "i16::from_be_bytes", + + "i32::to_ne_bytes", "i32::to_le_bytes", "i32::to_be_bytes", + "i32::from_ne_bytes", "i32::from_le_bytes", "i32::from_be_bytes", + + "i64::to_ne_bytes", "i64::to_le_bytes", "i64::to_be_bytes", + "i64::from_ne_bytes", "i64::from_le_bytes", "i64::from_be_bytes", + + "i128::to_ne_bytes", "i128::to_le_bytes", "i128::to_be_bytes", + "i128::from_ne_bytes", "i128::from_le_bytes", "i128::from_be_bytes", + + "isize::to_ne_bytes", "isize::to_le_bytes", "isize::to_be_bytes", + "isize::from_ne_bytes", "isize::from_le_bytes", "isize::from_be_bytes", + + "u8::to_ne_bytes", "u8::to_le_bytes", "u8::to_be_bytes", + "u8::from_ne_bytes", "u8::from_le_bytes", "u8::from_be_bytes", + + "u16::to_ne_bytes", "u16::to_le_bytes", "u16::to_be_bytes", + "u16::from_ne_bytes", "u16::from_le_bytes", "u16::from_be_bytes", + + "u32::to_ne_bytes", "u32::to_le_bytes", "u32::to_be_bytes", + "u32::from_ne_bytes", "u32::from_le_bytes", "u32::from_be_bytes", + + "u64::to_ne_bytes", "u64::to_le_bytes", "u64::to_be_bytes", + "u64::from_ne_bytes", "u64::from_le_bytes", "u64::from_be_bytes", + + "u128::to_ne_bytes", "u128::to_le_bytes", "u128::to_be_bytes", + "u128::from_ne_bytes", "u128::from_le_bytes", "u128::from_be_bytes", + + "usize::to_ne_bytes", "usize::to_le_bytes", "usize::to_be_bytes", + "usize::from_ne_bytes", "usize::from_le_bytes", "usize::from_be_bytes", +] diff --git a/data/1.44/convert_infallible_hash.md b/data/1.44/convert_infallible_hash.md deleted file mode 100644 index 5a78cf9..0000000 --- a/data/1.44/convert_infallible_hash.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`Hash` implementation for `convert::Infallible`" -flag = "convert_infallible_hash" -impl_pr_id = 70281 -+++ diff --git a/data/1.44/convert_infallible_hash.toml b/data/1.44/convert_infallible_hash.toml new file mode 100644 index 0000000..700a0dc --- /dev/null +++ b/data/1.44/convert_infallible_hash.toml @@ -0,0 +1,3 @@ +title = "`Hash` implementation for `convert::Infallible`" +flag = "convert_infallible_hash" +impl_pr_id = 70281 diff --git a/data/1.44/float_approx_unchecked_to.md b/data/1.44/float_approx_unchecked_to.md deleted file mode 100644 index eb34494..0000000 --- a/data/1.44/float_approx_unchecked_to.md +++ /dev/null @@ -1,8 +0,0 @@ -+++ -title = "unchecked float → int conversion" -flag = "float_approx_unchecked_to" -impl_pr_id = 66841 -tracking_issue_id = 67058 -stabilization_pr_id = 70487 -items = ["f32::to_int_unchecked", "f64::to_int_unchecked"] -+++ diff --git a/data/1.44/float_approx_unchecked_to.toml b/data/1.44/float_approx_unchecked_to.toml new file mode 100644 index 0000000..15480f7 --- /dev/null +++ b/data/1.44/float_approx_unchecked_to.toml @@ -0,0 +1,6 @@ +title = "unchecked float → int conversion" +flag = "float_approx_unchecked_to" +impl_pr_id = 66841 +tracking_issue_id = 67058 +stabilization_pr_id = 70487 +items = ["f32::to_int_unchecked", "f64::to_int_unchecked"] diff --git a/data/1.44/from_mut_str_for_string.md b/data/1.44/from_mut_str_for_string.md deleted file mode 100644 index 926c6a3..0000000 --- a/data/1.44/from_mut_str_for_string.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`From<&mut str>` implementation for `String`" -flag = "from_mut_str_for_string" -impl_pr_id = 69661 -+++ diff --git a/data/1.44/from_mut_str_for_string.toml b/data/1.44/from_mut_str_for_string.toml new file mode 100644 index 0000000..1268021 --- /dev/null +++ b/data/1.44/from_mut_str_for_string.toml @@ -0,0 +1,3 @@ +title = "`From<&mut str>` implementation for `String`" +flag = "from_mut_str_for_string" +impl_pr_id = 69661 diff --git a/data/1.44/ioslice_clone.md b/data/1.44/ioslice_clone.md deleted file mode 100644 index d26f272..0000000 --- a/data/1.44/ioslice_clone.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`Clone` implementation for `io::IoSlice`" -impl_pr_id = 69403 -+++ diff --git a/data/1.44/ioslice_clone.toml b/data/1.44/ioslice_clone.toml new file mode 100644 index 0000000..e16f68d --- /dev/null +++ b/data/1.44/ioslice_clone.toml @@ -0,0 +1,2 @@ +title = "`Clone` implementation for `io::IoSlice`" +impl_pr_id = 69403 diff --git a/data/1.44/ioslice_copy.md b/data/1.44/ioslice_copy.md deleted file mode 100644 index 6344b03..0000000 --- a/data/1.44/ioslice_copy.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`Copy` implementation for `io::IoSlice`" -impl_pr_id = 69403 -+++ diff --git a/data/1.44/ioslice_copy.toml b/data/1.44/ioslice_copy.toml new file mode 100644 index 0000000..75b6d60 --- /dev/null +++ b/data/1.44/ioslice_copy.toml @@ -0,0 +1,2 @@ +title = "`Copy` implementation for `io::IoSlice`" +impl_pr_id = 69403 diff --git a/data/1.44/lexerror_display.md b/data/1.44/lexerror_display.md deleted file mode 100644 index 8bc3353..0000000 --- a/data/1.44/lexerror_display.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`Display` implementation for `proc_macro::LexError`" -flag = "proc_macro_lexerror_impls" -impl_pr_id = 68899 -+++ diff --git a/data/1.44/lexerror_display.toml b/data/1.44/lexerror_display.toml new file mode 100644 index 0000000..9b77e66 --- /dev/null +++ b/data/1.44/lexerror_display.toml @@ -0,0 +1,3 @@ +title = "`Display` implementation for `proc_macro::LexError`" +flag = "proc_macro_lexerror_impls" +impl_pr_id = 68899 diff --git a/data/1.44/lexerror_error.md b/data/1.44/lexerror_error.md deleted file mode 100644 index a4c9cf1..0000000 --- a/data/1.44/lexerror_error.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`Error` implementation for `proc_macro::LexError`" -flag = "proc_macro_lexerror_impls" -impl_pr_id = 68899 -+++ diff --git a/data/1.44/lexerror_error.toml b/data/1.44/lexerror_error.toml new file mode 100644 index 0000000..3e00a9d --- /dev/null +++ b/data/1.44/lexerror_error.toml @@ -0,0 +1,3 @@ +title = "`Error` implementation for `proc_macro::LexError`" +flag = "proc_macro_lexerror_impls" +impl_pr_id = 68899 diff --git a/data/1.44/no_std_async_await.md b/data/1.44/no_std_async_await.md deleted file mode 100644 index 58c4440..0000000 --- a/data/1.44/no_std_async_await.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`async` / `.await` in `#[no_std]` crates" -impl_pr_id = 69033 -tracking_issue_id = 56974 -+++ diff --git a/data/1.44/no_std_async_await.toml b/data/1.44/no_std_async_await.toml new file mode 100644 index 0000000..30978d2 --- /dev/null +++ b/data/1.44/no_std_async_await.toml @@ -0,0 +1,3 @@ +title = "`async` / `.await` in `#[no_std]` crates" +impl_pr_id = 69033 +tracking_issue_id = 56974 diff --git a/data/1.44/osstring_deref_mut.md b/data/1.44/osstring_deref_mut.md deleted file mode 100644 index 5eb992a..0000000 --- a/data/1.44/osstring_deref_mut.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`DerefMut` implementation for `OsString`" -flag = "mut_osstr" -impl_pr_id = 70048 -+++ diff --git a/data/1.44/osstring_deref_mut.toml b/data/1.44/osstring_deref_mut.toml new file mode 100644 index 0000000..a0f8773 --- /dev/null +++ b/data/1.44/osstring_deref_mut.toml @@ -0,0 +1,3 @@ +title = "`DerefMut` implementation for `OsString`" +flag = "mut_osstr" +impl_pr_id = 70048 diff --git a/data/1.44/osstring_indexmut_rangefull.md b/data/1.44/osstring_indexmut_rangefull.md deleted file mode 100644 index 4fca58d..0000000 --- a/data/1.44/osstring_indexmut_rangefull.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`IndexMut` implementation for `OsString`" -flag = "mut_osstr" -impl_pr_id = 70048 -+++ diff --git a/data/1.44/osstring_indexmut_rangefull.toml b/data/1.44/osstring_indexmut_rangefull.toml new file mode 100644 index 0000000..b3bcd74 --- /dev/null +++ b/data/1.44/osstring_indexmut_rangefull.toml @@ -0,0 +1,3 @@ +title = "`IndexMut` implementation for `OsString`" +flag = "mut_osstr" +impl_pr_id = 70048 diff --git a/data/1.44/path_buf_capacity.md b/data/1.44/path_buf_capacity.md deleted file mode 100644 index a85ab97..0000000 --- a/data/1.44/path_buf_capacity.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`PathBuf::capacity`" -flag = "path_buf_capacity" -tracking_issue_id = 58234 -stabilization_pr_id = 71328 -+++ diff --git a/data/1.44/path_buf_capacity.toml b/data/1.44/path_buf_capacity.toml new file mode 100644 index 0000000..6052178 --- /dev/null +++ b/data/1.44/path_buf_capacity.toml @@ -0,0 +1,4 @@ +title = "`PathBuf::capacity`" +flag = "path_buf_capacity" +tracking_issue_id = 58234 +stabilization_pr_id = 71328 diff --git a/data/1.44/path_buf_clear.md b/data/1.44/path_buf_clear.md deleted file mode 100644 index 2506266..0000000 --- a/data/1.44/path_buf_clear.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`PathBuf::clear`" -flag = "path_buf_capacity" -tracking_issue_id = 58234 -stabilization_pr_id = 71328 -+++ diff --git a/data/1.44/path_buf_clear.toml b/data/1.44/path_buf_clear.toml new file mode 100644 index 0000000..ffc90b1 --- /dev/null +++ b/data/1.44/path_buf_clear.toml @@ -0,0 +1,4 @@ +title = "`PathBuf::clear`" +flag = "path_buf_capacity" +tracking_issue_id = 58234 +stabilization_pr_id = 71328 diff --git a/data/1.44/path_buf_reserve.md b/data/1.44/path_buf_reserve.md deleted file mode 100644 index df5e00d..0000000 --- a/data/1.44/path_buf_reserve.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`PathBuf::reserve`" -flag = "path_buf_capacity" -tracking_issue_id = 58234 -stabilization_pr_id = 71328 -+++ diff --git a/data/1.44/path_buf_reserve.toml b/data/1.44/path_buf_reserve.toml new file mode 100644 index 0000000..6eb2471 --- /dev/null +++ b/data/1.44/path_buf_reserve.toml @@ -0,0 +1,4 @@ +title = "`PathBuf::reserve`" +flag = "path_buf_capacity" +tracking_issue_id = 58234 +stabilization_pr_id = 71328 diff --git a/data/1.44/path_buf_reserve_exact.md b/data/1.44/path_buf_reserve_exact.md deleted file mode 100644 index f19126b..0000000 --- a/data/1.44/path_buf_reserve_exact.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`PathBuf::reserve_exact`" -flag = "path_buf_capacity" -tracking_issue_id = 58234 -stabilization_pr_id = 71328 -+++ diff --git a/data/1.44/path_buf_reserve_exact.toml b/data/1.44/path_buf_reserve_exact.toml new file mode 100644 index 0000000..f8c9b87 --- /dev/null +++ b/data/1.44/path_buf_reserve_exact.toml @@ -0,0 +1,4 @@ +title = "`PathBuf::reserve_exact`" +flag = "path_buf_capacity" +tracking_issue_id = 58234 +stabilization_pr_id = 71328 diff --git a/data/1.44/path_buf_shrink_to_fit.md b/data/1.44/path_buf_shrink_to_fit.md deleted file mode 100644 index 1579bed..0000000 --- a/data/1.44/path_buf_shrink_to_fit.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`PathBuf::shrink_to_fit`" -flag = "path_buf_capacity" -tracking_issue_id = 58234 -stabilization_pr_id = 71328 -+++ diff --git a/data/1.44/path_buf_shrink_to_fit.toml b/data/1.44/path_buf_shrink_to_fit.toml new file mode 100644 index 0000000..f1953e9 --- /dev/null +++ b/data/1.44/path_buf_shrink_to_fit.toml @@ -0,0 +1,4 @@ +title = "`PathBuf::shrink_to_fit`" +flag = "path_buf_capacity" +tracking_issue_id = 58234 +stabilization_pr_id = 71328 diff --git a/data/1.44/path_buf_with_capacity.md b/data/1.44/path_buf_with_capacity.md deleted file mode 100644 index e24cf8d..0000000 --- a/data/1.44/path_buf_with_capacity.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`PathBuf::with_capacity`" -flag = "path_buf_capacity" -tracking_issue_id = 58234 -stabilization_pr_id = 71328 -+++ diff --git a/data/1.44/path_buf_with_capacity.toml b/data/1.44/path_buf_with_capacity.toml new file mode 100644 index 0000000..b57407b --- /dev/null +++ b/data/1.44/path_buf_with_capacity.toml @@ -0,0 +1,4 @@ +title = "`PathBuf::with_capacity`" +flag = "path_buf_capacity" +tracking_issue_id = 58234 +stabilization_pr_id = 71328 diff --git a/data/1.44/vec_from_array.md b/data/1.44/vec_from_array.md deleted file mode 100644 index c6435e5..0000000 --- a/data/1.44/vec_from_array.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`From<[T; N]>` implementation for `Vec`" -flag = "vec_from_array" -impl_pr_id = 68692 -+++ diff --git a/data/1.44/vec_from_array.toml b/data/1.44/vec_from_array.toml new file mode 100644 index 0000000..bb78227 --- /dev/null +++ b/data/1.44/vec_from_array.toml @@ -0,0 +1,3 @@ +title = "`From<[T; N]>` implementation for `Vec`" +flag = "vec_from_array" +impl_pr_id = 68692 diff --git a/data/1.45/arc_from_cow.md b/data/1.45/arc_from_cow.md deleted file mode 100644 index f37088b..0000000 --- a/data/1.45/arc_from_cow.md +++ /dev/null @@ -1,11 +0,0 @@ -+++ -title = "`From>` implementation for `Arc`" -flag = "shared_from_cow" -impl_pr_id = 71447 -items = [""" -impl<'a, B> From> for Arc -where - B: ToOwned + ?Sized, - Arc: From<&'a B> + From, -"""] -+++ diff --git a/data/1.45/arc_from_cow.toml b/data/1.45/arc_from_cow.toml new file mode 100644 index 0000000..edd0f69 --- /dev/null +++ b/data/1.45/arc_from_cow.toml @@ -0,0 +1,9 @@ +title = "`From>` implementation for `Arc`" +flag = "shared_from_cow" +impl_pr_id = 71447 +items = [""" +impl<'a, B> From> for Arc +where + B: ToOwned + ?Sized, + Arc: From<&'a B> + From, +"""] diff --git a/data/1.45/atomic_fetch_update.md b/data/1.45/atomic_fetch_update.md deleted file mode 100644 index 1184d50..0000000 --- a/data/1.45/atomic_fetch_update.md +++ /dev/null @@ -1,20 +0,0 @@ -+++ -title = "`AtomicN::fetch_update`" -flag = "no_more_cas" -impl_pr_id = 48658 -tracking_issue_id = 48655 -stabilization_pr_id = 71843 -items = [ - "AtomicI8::fetch_update", - "AtomicI16::fetch_update", - "AtomicI32::fetch_update", - "AtomicI64::fetch_update", - "AtomicIsize::fetch_update", - - "AtomicU8::fetch_update", - "AtomicU16::fetch_update", - "AtomicU32::fetch_update", - "AtomicU64::fetch_update", - "AtomicUsize::fetch_update", -] -+++ diff --git a/data/1.45/atomic_fetch_update.toml b/data/1.45/atomic_fetch_update.toml new file mode 100644 index 0000000..1a99b2f --- /dev/null +++ b/data/1.45/atomic_fetch_update.toml @@ -0,0 +1,18 @@ +title = "`AtomicN::fetch_update`" +flag = "no_more_cas" +impl_pr_id = 48658 +tracking_issue_id = 48655 +stabilization_pr_id = 71843 +items = [ + "AtomicI8::fetch_update", + "AtomicI16::fetch_update", + "AtomicI32::fetch_update", + "AtomicI64::fetch_update", + "AtomicIsize::fetch_update", + + "AtomicU8::fetch_update", + "AtomicU16::fetch_update", + "AtomicU32::fetch_update", + "AtomicU64::fetch_update", + "AtomicUsize::fetch_update", +] diff --git a/data/1.45/atomic_min_max.md b/data/1.45/atomic_min_max.md deleted file mode 100644 index 517c4c7..0000000 --- a/data/1.45/atomic_min_max.md +++ /dev/null @@ -1,20 +0,0 @@ -+++ -title = "`AtomicN::{fetch_min, fetch_max}`" -flag = "atomic_min_max" -impl_pr_id = 48658 -tracking_issue_id = 48655 -stabilization_pr_id = 72324 -items = [ - "AtomicI8::fetch_min", "AtomicI8::fetch_max", - "AtomicI16::fetch_min", "AtomicI16::fetch_max", - "AtomicI32::fetch_min", "AtomicI32::fetch_max", - "AtomicI64::fetch_min", "AtomicI64::fetch_max", - "AtomicIsize::fetch_min", "AtomicIsize::fetch_max", - - "AtomicU8::fetch_min", "AtomicU8::fetch_max", - "AtomicU16::fetch_min", "AtomicU16::fetch_max", - "AtomicU32::fetch_min", "AtomicU32::fetch_max", - "AtomicU64::fetch_min", "AtomicU64::fetch_max", - "AtomicUsize::fetch_min", "AtomicUsize::fetch_max", -] -+++ diff --git a/data/1.45/atomic_min_max.toml b/data/1.45/atomic_min_max.toml new file mode 100644 index 0000000..f6fc6da --- /dev/null +++ b/data/1.45/atomic_min_max.toml @@ -0,0 +1,18 @@ +title = "`AtomicN::{fetch_min, fetch_max}`" +flag = "atomic_min_max" +impl_pr_id = 48658 +tracking_issue_id = 48655 +stabilization_pr_id = 72324 +items = [ + "AtomicI8::fetch_min", "AtomicI8::fetch_max", + "AtomicI16::fetch_min", "AtomicI16::fetch_max", + "AtomicI32::fetch_min", "AtomicI32::fetch_max", + "AtomicI64::fetch_min", "AtomicI64::fetch_max", + "AtomicIsize::fetch_min", "AtomicIsize::fetch_max", + + "AtomicU8::fetch_min", "AtomicU8::fetch_max", + "AtomicU16::fetch_min", "AtomicU16::fetch_max", + "AtomicU32::fetch_min", "AtomicU32::fetch_max", + "AtomicU64::fetch_min", "AtomicU64::fetch_max", + "AtomicUsize::fetch_min", "AtomicUsize::fetch_max", +] diff --git a/data/1.45/box_from_cow.md b/data/1.45/box_from_cow.md deleted file mode 100644 index cd0f08c..0000000 --- a/data/1.45/box_from_cow.md +++ /dev/null @@ -1,12 +0,0 @@ -+++ -title = "`From>` implementations for `Box`ed types" -flag = "box_from_cow" -impl_pr_id = 71447 -items = [ - "impl From> for Box", - "impl From> for Box", - "impl From> for Box", - "impl From> for Box", - "impl From> for Box<[T]>", -] -+++ diff --git a/data/1.45/box_from_cow.toml b/data/1.45/box_from_cow.toml new file mode 100644 index 0000000..c6c8f57 --- /dev/null +++ b/data/1.45/box_from_cow.toml @@ -0,0 +1,10 @@ +title = "`From>` implementations for `Box`ed types" +flag = "box_from_cow" +impl_pr_id = 71447 +items = [ + "impl From> for Box", + "impl From> for Box", + "impl From> for Box", + "impl From> for Box", + "impl From> for Box<[T]>", +] diff --git a/data/1.45/btreemap_remove_entry.md b/data/1.45/btreemap_remove_entry.md deleted file mode 100644 index 499ea79..0000000 --- a/data/1.45/btreemap_remove_entry.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`BTreeMap::remove_entry`" -flag = "btreemap_remove_entry" -impl_pr_id = 68378 -tracking_issue_id = 66714 -stabilization_pr_id = 70712 -+++ diff --git a/data/1.45/btreemap_remove_entry.toml b/data/1.45/btreemap_remove_entry.toml new file mode 100644 index 0000000..2bb402f --- /dev/null +++ b/data/1.45/btreemap_remove_entry.toml @@ -0,0 +1,5 @@ +title = "`BTreeMap::remove_entry`" +flag = "btreemap_remove_entry" +impl_pr_id = 68378 +tracking_issue_id = 66714 +stabilization_pr_id = 70712 diff --git a/data/1.45/expr_proc_macro.md b/data/1.45/expr_proc_macro.md deleted file mode 100644 index db9b253..0000000 --- a/data/1.45/expr_proc_macro.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "function-like procedural macros in expression, pattern and statement position" -flag = "proc_macro_hygiene" -tracking_issue_id = 54727 -stabilization_pr_id = 68717 -+++ diff --git a/data/1.45/expr_proc_macro.toml b/data/1.45/expr_proc_macro.toml new file mode 100644 index 0000000..929d2cf --- /dev/null +++ b/data/1.45/expr_proc_macro.toml @@ -0,0 +1,4 @@ +title = "function-like procedural macros in expression, pattern and statement position" +flag = "proc_macro_hygiene" +tracking_issue_id = 54727 +stabilization_pr_id = 68717 diff --git a/data/1.45/nonzero_bitor.md b/data/1.45/nonzero_bitor.md deleted file mode 100644 index 3797c85..0000000 --- a/data/1.45/nonzero_bitor.md +++ /dev/null @@ -1,42 +0,0 @@ -+++ -title = "`BitOr` implementations for `NonZero` integer types" -flag = "nonzero_bitor" -impl_pr_id = 69813 -items = [ - "impl BitOr for NonZeroI8", - "impl BitOr for NonZeroI16", - "impl BitOr for NonZeroI32", - "impl BitOr for NonZeroI64", - "impl BitOr for NonZeroI128", - - "impl BitOr for NonZeroI8", - "impl BitOr for NonZeroI16", - "impl BitOr for NonZeroI32", - "impl BitOr for NonZeroI64", - "impl BitOr for NonZeroI128", - - "impl BitOr for i8", - "impl BitOr for i16", - "impl BitOr for i32", - "impl BitOr for i64", - "impl BitOr for i128", - - "impl BitOr for NonZeroU8", - "impl BitOr for NonZeroU16", - "impl BitOr for NonZeroU32", - "impl BitOr for NonZeroU64", - "impl BitOr for NonZeroU128", - - "impl BitOr for NonZeroU8", - "impl BitOr for NonZeroU16", - "impl BitOr for NonZeroU32", - "impl BitOr for NonZeroU64", - "impl BitOr for NonZeroU128", - - "impl BitOr for u8", - "impl BitOr for u16", - "impl BitOr for u32", - "impl BitOr for u64", - "impl BitOr for u128", -] -+++ diff --git a/data/1.45/nonzero_bitor.toml b/data/1.45/nonzero_bitor.toml new file mode 100644 index 0000000..416b54b --- /dev/null +++ b/data/1.45/nonzero_bitor.toml @@ -0,0 +1,40 @@ +title = "`BitOr` implementations for `NonZero` integer types" +flag = "nonzero_bitor" +impl_pr_id = 69813 +items = [ + "impl BitOr for NonZeroI8", + "impl BitOr for NonZeroI16", + "impl BitOr for NonZeroI32", + "impl BitOr for NonZeroI64", + "impl BitOr for NonZeroI128", + + "impl BitOr for NonZeroI8", + "impl BitOr for NonZeroI16", + "impl BitOr for NonZeroI32", + "impl BitOr for NonZeroI64", + "impl BitOr for NonZeroI128", + + "impl BitOr for i8", + "impl BitOr for i16", + "impl BitOr for i32", + "impl BitOr for i64", + "impl BitOr for i128", + + "impl BitOr for NonZeroU8", + "impl BitOr for NonZeroU16", + "impl BitOr for NonZeroU32", + "impl BitOr for NonZeroU64", + "impl BitOr for NonZeroU128", + + "impl BitOr for NonZeroU8", + "impl BitOr for NonZeroU16", + "impl BitOr for NonZeroU32", + "impl BitOr for NonZeroU64", + "impl BitOr for NonZeroU128", + + "impl BitOr for u8", + "impl BitOr for u16", + "impl BitOr for u32", + "impl BitOr for u64", + "impl BitOr for u128", +] diff --git a/data/1.45/nonzero_bitor_assign.md b/data/1.45/nonzero_bitor_assign.md deleted file mode 100644 index fd8b434..0000000 --- a/data/1.45/nonzero_bitor_assign.md +++ /dev/null @@ -1,30 +0,0 @@ -+++ -title = "`BitOrAssign` implementations for `NonZero` integer types" -flag = "nonzero_bitor" -impl_pr_id = 69813 -items = [ - "impl BitOrAssign for NonZeroI8", - "impl BitOrAssign for NonZeroI16", - "impl BitOrAssign for NonZeroI32", - "impl BitOrAssign for NonZeroI64", - "impl BitOrAssign for NonZeroI128", - - "impl BitOrAssign for NonZeroI8", - "impl BitOrAssign for NonZeroI16", - "impl BitOrAssign for NonZeroI32", - "impl BitOrAssign for NonZeroI64", - "impl BitOrAssign for NonZeroI128", - - "impl BitOrAssign for NonZeroU8", - "impl BitOrAssign for NonZeroU16", - "impl BitOrAssign for NonZeroU32", - "impl BitOrAssign for NonZeroU64", - "impl BitOrAssign for NonZeroU128", - - "impl BitOrAssign for u8", - "impl BitOrAssign for u16", - "impl BitOrAssign for u32", - "impl BitOrAssign for u64", - "impl BitOrAssign for u128", -] -+++ diff --git a/data/1.45/nonzero_bitor_assign.toml b/data/1.45/nonzero_bitor_assign.toml new file mode 100644 index 0000000..cf4f03b --- /dev/null +++ b/data/1.45/nonzero_bitor_assign.toml @@ -0,0 +1,28 @@ +title = "`BitOrAssign` implementations for `NonZero` integer types" +flag = "nonzero_bitor" +impl_pr_id = 69813 +items = [ + "impl BitOrAssign for NonZeroI8", + "impl BitOrAssign for NonZeroI16", + "impl BitOrAssign for NonZeroI32", + "impl BitOrAssign for NonZeroI64", + "impl BitOrAssign for NonZeroI128", + + "impl BitOrAssign for NonZeroI8", + "impl BitOrAssign for NonZeroI16", + "impl BitOrAssign for NonZeroI32", + "impl BitOrAssign for NonZeroI64", + "impl BitOrAssign for NonZeroI128", + + "impl BitOrAssign for NonZeroU8", + "impl BitOrAssign for NonZeroU16", + "impl BitOrAssign for NonZeroU32", + "impl BitOrAssign for NonZeroU64", + "impl BitOrAssign for NonZeroU128", + + "impl BitOrAssign for u8", + "impl BitOrAssign for u16", + "impl BitOrAssign for u32", + "impl BitOrAssign for u64", + "impl BitOrAssign for u128", +] diff --git a/data/1.45/proc_macro_span_located_at.md b/data/1.45/proc_macro_span_located_at.md deleted file mode 100644 index a07f71b..0000000 --- a/data/1.45/proc_macro_span_located_at.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`proc_macro::Span::located_at`" -flag = "proc_macro_span_located_at" -impl_pr_id = 47149 -tracking_issue_id = 54725 -stabilization_pr_id = 69041 -+++ diff --git a/data/1.45/proc_macro_span_located_at.toml b/data/1.45/proc_macro_span_located_at.toml new file mode 100644 index 0000000..f568c3f --- /dev/null +++ b/data/1.45/proc_macro_span_located_at.toml @@ -0,0 +1,5 @@ +title = "`proc_macro::Span::located_at`" +flag = "proc_macro_span_located_at" +impl_pr_id = 47149 +tracking_issue_id = 54725 +stabilization_pr_id = 69041 diff --git a/data/1.45/proc_macro_span_mixed_site.md b/data/1.45/proc_macro_span_mixed_site.md deleted file mode 100644 index 06a3e28..0000000 --- a/data/1.45/proc_macro_span_mixed_site.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`proc_macro::Span::mixed_site`" -flag = "proc_macro_mixed_site" -impl_pr_id = 64690 -tracking_issue_id = 65049 -stabilization_pr_id = 68716 -+++ diff --git a/data/1.45/proc_macro_span_mixed_site.toml b/data/1.45/proc_macro_span_mixed_site.toml new file mode 100644 index 0000000..36dd6de --- /dev/null +++ b/data/1.45/proc_macro_span_mixed_site.toml @@ -0,0 +1,5 @@ +title = "`proc_macro::Span::mixed_site`" +flag = "proc_macro_mixed_site" +impl_pr_id = 64690 +tracking_issue_id = 65049 +stabilization_pr_id = 68716 diff --git a/data/1.45/proc_macro_span_resolved_at.md b/data/1.45/proc_macro_span_resolved_at.md deleted file mode 100644 index 5045c6a..0000000 --- a/data/1.45/proc_macro_span_resolved_at.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`proc_macro::Span::resolved_at`" -flag = "proc_macro_span_resolved_at" -impl_pr_id = 47149 -tracking_issue_id = 54725 -stabilization_pr_id = 69041 -+++ diff --git a/data/1.45/proc_macro_span_resolved_at.toml b/data/1.45/proc_macro_span_resolved_at.toml new file mode 100644 index 0000000..9c22da6 --- /dev/null +++ b/data/1.45/proc_macro_span_resolved_at.toml @@ -0,0 +1,5 @@ +title = "`proc_macro::Span::resolved_at`" +flag = "proc_macro_span_resolved_at" +impl_pr_id = 47149 +tracking_issue_id = 54725 +stabilization_pr_id = 69041 diff --git a/data/1.45/rc_from_cow.md b/data/1.45/rc_from_cow.md deleted file mode 100644 index eef0e35..0000000 --- a/data/1.45/rc_from_cow.md +++ /dev/null @@ -1,11 +0,0 @@ -+++ -title = "`From>`` implementation for ``Rc`" -flag = "shared_from_cow" -impl_pr_id = 71447 -items = [""" -impl<'a, B> From> for Rc -where - B: ToOwned + ?Sized, - Rc: From<&'a B> + From, -"""] -+++ diff --git a/data/1.45/rc_from_cow.toml b/data/1.45/rc_from_cow.toml new file mode 100644 index 0000000..e568afc --- /dev/null +++ b/data/1.45/rc_from_cow.toml @@ -0,0 +1,9 @@ +title = "`From>`` implementation for ``Rc`" +flag = "shared_from_cow" +impl_pr_id = 71447 +items = [""" +impl<'a, B> From> for Rc +where + B: ToOwned + ?Sized, + Rc: From<&'a B> + From, +"""] diff --git a/data/1.45/unicode_version.md b/data/1.45/unicode_version.md deleted file mode 100644 index cad2c56..0000000 --- a/data/1.45/unicode_version.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`std::char::UNICODE_VERSION`" -flag = "unicode_version" -tracking_issue_id = 49726 -stabilization_pr_id = 71068 -+++ diff --git a/data/1.45/unicode_version.toml b/data/1.45/unicode_version.toml new file mode 100644 index 0000000..33d9765 --- /dev/null +++ b/data/1.45/unicode_version.toml @@ -0,0 +1,4 @@ +title = "`std::char::UNICODE_VERSION`" +flag = "unicode_version" +tracking_issue_id = 49726 +stabilization_pr_id = 71068 diff --git a/data/1.46/const_forget.md b/data/1.46/const_forget.md deleted file mode 100644 index 81599a8..0000000 --- a/data/1.46/const_forget.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`mem::forget` as `const fn`" -flag = "const_forget" -impl_pr_id = 69617 -tracking_issue_id = 69616 -stabilization_pr_id = 73887 -+++ diff --git a/data/1.46/const_forget.toml b/data/1.46/const_forget.toml new file mode 100644 index 0000000..ef0ac9d --- /dev/null +++ b/data/1.46/const_forget.toml @@ -0,0 +1,5 @@ +title = "`mem::forget` as `const fn`" +flag = "const_forget" +impl_pr_id = 69617 +tracking_issue_id = 69616 +stabilization_pr_id = 73887 diff --git a/data/1.46/const_if_match.md b/data/1.46/const_if_match.md deleted file mode 100644 index 3915803..0000000 --- a/data/1.46/const_if_match.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`if` and `match` in constant evaluation" -flag = "const_if_match" -rfc_id = 2342 -tracking_issue_id = 49146 -stabilization_pr_id = 72437 -+++ diff --git a/data/1.46/const_if_match.toml b/data/1.46/const_if_match.toml new file mode 100644 index 0000000..97b3e00 --- /dev/null +++ b/data/1.46/const_if_match.toml @@ -0,0 +1,5 @@ +title = "`if` and `match` in constant evaluation" +flag = "const_if_match" +rfc_id = 2342 +tracking_issue_id = 49146 +stabilization_pr_id = 72437 diff --git a/data/1.46/const_loop.md b/data/1.46/const_loop.md deleted file mode 100644 index 7c91f8f..0000000 --- a/data/1.46/const_loop.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`loop` and `while` in constant evaluation" -flag = "const_loop" -rfc_id = 2344 -tracking_issue_id = 52000 -stabilization_pr_id = 72437 -+++ diff --git a/data/1.46/const_loop.toml b/data/1.46/const_loop.toml new file mode 100644 index 0000000..44434bb --- /dev/null +++ b/data/1.46/const_loop.toml @@ -0,0 +1,5 @@ +title = "`loop` and `while` in constant evaluation" +flag = "const_loop" +rfc_id = 2344 +tracking_issue_id = 52000 +stabilization_pr_id = 72437 diff --git a/data/1.46/const_slice_cast.md b/data/1.46/const_slice_cast.md deleted file mode 100644 index b27f4a2..0000000 --- a/data/1.46/const_slice_cast.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "array to slice casts and coercions in `const fn`" -tracking_issue_id = 64992 -stabilization_pr_id = 73862 -+++ diff --git a/data/1.46/const_slice_cast.toml b/data/1.46/const_slice_cast.toml new file mode 100644 index 0000000..5970eb6 --- /dev/null +++ b/data/1.46/const_slice_cast.toml @@ -0,0 +1,3 @@ +title = "array to slice casts and coercions in `const fn`" +tracking_issue_id = 64992 +stabilization_pr_id = 73862 diff --git a/data/1.46/const_transmute.md b/data/1.46/const_transmute.md deleted file mode 100644 index a7a3368..0000000 --- a/data/1.46/const_transmute.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`mem::transmute` in constants" -flag = "const_transmute" -tracking_issue_id = 53605 -stabilization_pr_id = 72920 -+++ diff --git a/data/1.46/const_transmute.toml b/data/1.46/const_transmute.toml new file mode 100644 index 0000000..c3854d7 --- /dev/null +++ b/data/1.46/const_transmute.toml @@ -0,0 +1,4 @@ +title = "`mem::transmute` in constants" +flag = "const_transmute" +tracking_issue_id = 53605 +stabilization_pr_id = 72920 diff --git a/data/1.46/from_char_for_string.md b/data/1.46/from_char_for_string.md deleted file mode 100644 index d541185..0000000 --- a/data/1.46/from_char_for_string.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`From` implementation for `String`" -flag = "from_char_for_string" -impl_pr_id = 73466 -+++ diff --git a/data/1.46/from_char_for_string.toml b/data/1.46/from_char_for_string.toml new file mode 100644 index 0000000..c6fe764 --- /dev/null +++ b/data/1.46/from_char_for_string.toml @@ -0,0 +1,3 @@ +title = "`From` implementation for `String`" +flag = "from_char_for_string" +impl_pr_id = 73466 diff --git a/data/1.46/leading_ones.md b/data/1.46/leading_ones.md deleted file mode 100644 index 582035e..0000000 --- a/data/1.46/leading_ones.md +++ /dev/null @@ -1,22 +0,0 @@ -+++ -title = "`leading_ones` integer methods" -flag = "leading_trailing_ones" -impl_pr_id = 68165 -tracking_issue_id = 57969 -stabilization_pr_id = 730321 -items = [ - "i8::leading_ones", - "i16::leading_ones", - "i32::leading_ones", - "i64::leading_ones", - "i128::leading_ones", - "isize::leading_ones", - - "u8::leading_ones", - "u16::leading_ones", - "u32::leading_ones", - "u64::leading_ones", - "u128::leading_ones", - "usize::leading_ones", -] -+++ diff --git a/data/1.46/leading_ones.toml b/data/1.46/leading_ones.toml new file mode 100644 index 0000000..79c4076 --- /dev/null +++ b/data/1.46/leading_ones.toml @@ -0,0 +1,20 @@ +title = "`leading_ones` integer methods" +flag = "leading_trailing_ones" +impl_pr_id = 68165 +tracking_issue_id = 57969 +stabilization_pr_id = 730321 +items = [ + "i8::leading_ones", + "i16::leading_ones", + "i32::leading_ones", + "i64::leading_ones", + "i128::leading_ones", + "isize::leading_ones", + + "u8::leading_ones", + "u16::leading_ones", + "u32::leading_ones", + "u64::leading_ones", + "u128::leading_ones", + "usize::leading_ones", +] diff --git a/data/1.46/nested_tuple_indexing.md b/data/1.46/nested_tuple_indexing.md deleted file mode 100644 index fea055d..0000000 --- a/data/1.46/nested_tuple_indexing.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "nested tuple indexing without parentheses (`tuple.0.0`)" -impl_pr_id = 71322 -+++ diff --git a/data/1.46/nested_tuple_indexing.toml b/data/1.46/nested_tuple_indexing.toml new file mode 100644 index 0000000..5fd1b1e --- /dev/null +++ b/data/1.46/nested_tuple_indexing.toml @@ -0,0 +1,2 @@ +title = "nested tuple indexing without parentheses (`tuple.0.0`)" +impl_pr_id = 71322 diff --git a/data/1.46/option_zip.md b/data/1.46/option_zip.md deleted file mode 100644 index 74d2799..0000000 --- a/data/1.46/option_zip.md +++ /dev/null @@ -1,8 +0,0 @@ -+++ -title = "`Option::zip`" -# Flag prior to stabilization -flag = "option_zip" -impl_pr_id = 69997 -tracking_issue_id = 70086 -stabilization_pr_id = 72938 -+++ diff --git a/data/1.46/option_zip.toml b/data/1.46/option_zip.toml new file mode 100644 index 0000000..eb6ca30 --- /dev/null +++ b/data/1.46/option_zip.toml @@ -0,0 +1,6 @@ +title = "`Option::zip`" +# Flag prior to stabilization +flag = "option_zip" +impl_pr_id = 69997 +tracking_issue_id = 70086 +stabilization_pr_id = 72938 diff --git a/data/1.46/partialeq_vec_for_ref_slice.md b/data/1.46/partialeq_vec_for_ref_slice.md deleted file mode 100644 index 0f8903a..0000000 --- a/data/1.46/partialeq_vec_for_ref_slice.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "`PartialEq>` implementations for slices" -flag = "partialeq_vec_for_ref_slice" -impl_pr_id = 71660 -items = [ - "impl<'_, A, B> PartialEq> for &'_ [A] where A: PartialEq", - "impl<'_, A, B> PartialEq> for &'_ mut [A] where A: PartialEq", -] -+++ diff --git a/data/1.46/partialeq_vec_for_ref_slice.toml b/data/1.46/partialeq_vec_for_ref_slice.toml new file mode 100644 index 0000000..bb51306 --- /dev/null +++ b/data/1.46/partialeq_vec_for_ref_slice.toml @@ -0,0 +1,7 @@ +title = "`PartialEq>` implementations for slices" +flag = "partialeq_vec_for_ref_slice" +impl_pr_id = 71660 +items = [ + "impl<'_, A, B> PartialEq> for &'_ [A] where A: PartialEq", + "impl<'_, A, B> PartialEq> for &'_ mut [A] where A: PartialEq", +] diff --git a/data/1.46/track_caller.md b/data/1.46/track_caller.md deleted file mode 100644 index fa5ea68..0000000 --- a/data/1.46/track_caller.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "the `#[track_caller]` attribute" -flag = "track_caller" -rfc_id = 2091 -tracking_issue_id = 47809 -stabilization_pr_id = 72445 -+++ diff --git a/data/1.46/track_caller.toml b/data/1.46/track_caller.toml new file mode 100644 index 0000000..e27b29c --- /dev/null +++ b/data/1.46/track_caller.toml @@ -0,0 +1,5 @@ +title = "the `#[track_caller]` attribute" +flag = "track_caller" +rfc_id = 2091 +tracking_issue_id = 47809 +stabilization_pr_id = 72445 diff --git a/data/1.46/trailing_ones.md b/data/1.46/trailing_ones.md deleted file mode 100644 index 2a22363..0000000 --- a/data/1.46/trailing_ones.md +++ /dev/null @@ -1,22 +0,0 @@ -+++ -title = "`trailing_ones` integer methods" -flag = "leading_trailing_ones" -impl_pr_id = 68165 -tracking_issue_id = 57969 -stabilization_pr_id = 730321 -items = [ - "i8::trailing_ones", - "i16::trailing_ones", - "i32::trailing_ones", - "i64::trailing_ones", - "i128::trailing_ones", - "isize::trailing_ones", - - "u8::trailing_ones", - "u16::trailing_ones", - "u32::trailing_ones", - "u64::trailing_ones", - "u128::trailing_ones", - "usize::trailing_ones", -] -+++ diff --git a/data/1.46/trailing_ones.toml b/data/1.46/trailing_ones.toml new file mode 100644 index 0000000..53a291e --- /dev/null +++ b/data/1.46/trailing_ones.toml @@ -0,0 +1,20 @@ +title = "`trailing_ones` integer methods" +flag = "leading_trailing_ones" +impl_pr_id = 68165 +tracking_issue_id = 57969 +stabilization_pr_id = 730321 +items = [ + "i8::trailing_ones", + "i16::trailing_ones", + "i32::trailing_ones", + "i64::trailing_ones", + "i128::trailing_ones", + "isize::trailing_ones", + + "u8::trailing_ones", + "u16::trailing_ones", + "u32::trailing_ones", + "u64::trailing_ones", + "u128::trailing_ones", + "usize::trailing_ones", +] diff --git a/data/1.46/vec_drain_as_ref.md b/data/1.46/vec_drain_as_ref.md deleted file mode 100644 index a300b64..0000000 --- a/data/1.46/vec_drain_as_ref.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`AsRef<[T]>` implementation for `vec::Drain<'_, T>`" -flag = "vec_drain_as_slice" -impl_pr_id = 72584 -+++ diff --git a/data/1.46/vec_drain_as_ref.toml b/data/1.46/vec_drain_as_ref.toml new file mode 100644 index 0000000..49a854d --- /dev/null +++ b/data/1.46/vec_drain_as_ref.toml @@ -0,0 +1,3 @@ +title = "`AsRef<[T]>` implementation for `vec::Drain<'_, T>`" +flag = "vec_drain_as_slice" +impl_pr_id = 72584 diff --git a/data/1.46/vec_drain_as_slice.md b/data/1.46/vec_drain_as_slice.md deleted file mode 100644 index cd9cf1c..0000000 --- a/data/1.46/vec_drain_as_slice.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`std::vec::Drain::as_slice`" -flag = "vec_drain_as_slice" -impl_pr_id = 58924 -tracking_issue_id = 58957 -stabilization_pr_id = 72584 -+++ diff --git a/data/1.46/vec_drain_as_slice.toml b/data/1.46/vec_drain_as_slice.toml new file mode 100644 index 0000000..ace07ec --- /dev/null +++ b/data/1.46/vec_drain_as_slice.toml @@ -0,0 +1,5 @@ +title = "`std::vec::Drain::as_slice`" +flag = "vec_drain_as_slice" +impl_pr_id = 58924 +tracking_issue_id = 58957 +stabilization_pr_id = 72584 diff --git a/data/1.46/vec_intoiter_as_ref.md b/data/1.46/vec_intoiter_as_ref.md deleted file mode 100644 index 1aa00e9..0000000 --- a/data/1.46/vec_intoiter_as_ref.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`AsRef<[T]>` implementation for `vec::IntoIter`" -flag = "vec_intoiter_as_ref" -impl_pr_id = 72583 -+++ diff --git a/data/1.46/vec_intoiter_as_ref.toml b/data/1.46/vec_intoiter_as_ref.toml new file mode 100644 index 0000000..4f33cf7 --- /dev/null +++ b/data/1.46/vec_intoiter_as_ref.toml @@ -0,0 +1,3 @@ +title = "`AsRef<[T]>` implementation for `vec::IntoIter`" +flag = "vec_intoiter_as_ref" +impl_pr_id = 72583 diff --git a/data/1.47/array_gt_32_impls.md b/data/1.47/array_gt_32_impls.md deleted file mode 100644 index 176bf4a..0000000 --- a/data/1.47/array_gt_32_impls.md +++ /dev/null @@ -1,41 +0,0 @@ -+++ -title = "`[T; N]` trait implementations with N > 32" -impl_pr_id = 74060 -items = [ - "impl AsRef<[T]> for [T; N]", - "impl AsMut<[T]> for [T; N]", - "impl Borrow<[T]> for [T; N]", - "impl BorrowMut<[T]> for [T; N]", - "impl<'a, T, const N: usize> IntoIterator for &'a [T; N]", - "impl<'a, T, const N: usize> IntoIterator for &'a mut [T; N]", - - "impl From<[T; N]> for Vec", - "impl From<[T; N]> for Box<[T]>", - "impl TryFrom<&[T]> for [T; N]", - "impl<'a, T, const N: usize> TryFrom<&'a [T]> for &'a [T; N]", - "impl<'a, T, const N: usize> TryFrom<&'a mut [T]> for &'a mut [T; N]", - "impl TryFrom> for Box<[T; N]>", - "impl TryFrom> for Rc<[T; N]>", - "impl TryFrom> for Arc<[T; N]>", - - "impl Debug for [T; N]", - "impl Eq for [T; N]", - "impl Hash for [T; N]", - "impl Ord for [T; N]", - "impl PartialOrd for [T; N]", - - "impl PartialEq<[B; N]> for [A; N]", - "impl PartialEq<[B]> for [A; N]", - "impl PartialEq<[A; N]> for [B]", - "impl<'b, A, B, const N: usize> PartialEq<&'b [B]> for [A; N]", - "impl<'b, A, B, const N: usize> PartialEq<[A; N]> for &'b [B]", - "impl<'b, A, B, const N: usize> PartialEq<&'b mut [B]> for [A; N]", - "impl<'b, A, B, const N: usize> PartialEq<[A; N]> for &'b mut [B]", - - "impl PartialEq<[B; N]> for Vec", - "impl PartialEq<&[B; N]> for Vec", - "impl PartialEq<[B; N]> for VecDeque", - "impl PartialEq<&[B; N]> for VecDeque", - "impl PartialEq<&mut [B; N]> for VecDeque", -] -+++ diff --git a/data/1.47/array_gt_32_impls.toml b/data/1.47/array_gt_32_impls.toml new file mode 100644 index 0000000..e6f9660 --- /dev/null +++ b/data/1.47/array_gt_32_impls.toml @@ -0,0 +1,39 @@ +title = "`[T; N]` trait implementations with N > 32" +impl_pr_id = 74060 +items = [ + "impl AsRef<[T]> for [T; N]", + "impl AsMut<[T]> for [T; N]", + "impl Borrow<[T]> for [T; N]", + "impl BorrowMut<[T]> for [T; N]", + "impl<'a, T, const N: usize> IntoIterator for &'a [T; N]", + "impl<'a, T, const N: usize> IntoIterator for &'a mut [T; N]", + + "impl From<[T; N]> for Vec", + "impl From<[T; N]> for Box<[T]>", + "impl TryFrom<&[T]> for [T; N]", + "impl<'a, T, const N: usize> TryFrom<&'a [T]> for &'a [T; N]", + "impl<'a, T, const N: usize> TryFrom<&'a mut [T]> for &'a mut [T; N]", + "impl TryFrom> for Box<[T; N]>", + "impl TryFrom> for Rc<[T; N]>", + "impl TryFrom> for Arc<[T; N]>", + + "impl Debug for [T; N]", + "impl Eq for [T; N]", + "impl Hash for [T; N]", + "impl Ord for [T; N]", + "impl PartialOrd for [T; N]", + + "impl PartialEq<[B; N]> for [A; N]", + "impl PartialEq<[B]> for [A; N]", + "impl PartialEq<[A; N]> for [B]", + "impl<'b, A, B, const N: usize> PartialEq<&'b [B]> for [A; N]", + "impl<'b, A, B, const N: usize> PartialEq<[A; N]> for &'b [B]", + "impl<'b, A, B, const N: usize> PartialEq<&'b mut [B]> for [A; N]", + "impl<'b, A, B, const N: usize> PartialEq<[A; N]> for &'b mut [B]", + + "impl PartialEq<[B; N]> for Vec", + "impl PartialEq<&[B; N]> for Vec", + "impl PartialEq<[B; N]> for VecDeque", + "impl PartialEq<&[B; N]> for VecDeque", + "impl PartialEq<&mut [B; N]> for VecDeque", +] diff --git a/data/1.47/const_type_id.md b/data/1.47/const_type_id.md deleted file mode 100644 index 09dda71..0000000 --- a/data/1.47/const_type_id.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`TypeId::of` in `const fn`" -flag = "const_type_id" -stabilization_pr_id = 72488 -+++ diff --git a/data/1.47/const_type_id.toml b/data/1.47/const_type_id.toml new file mode 100644 index 0000000..8a3e8d8 --- /dev/null +++ b/data/1.47/const_type_id.toml @@ -0,0 +1,3 @@ +title = "`TypeId::of` in `const fn`" +flag = "const_type_id" +stabilization_pr_id = 72488 diff --git a/data/1.47/cstr_range_from.md b/data/1.47/cstr_range_from.md deleted file mode 100644 index 1881d18..0000000 --- a/data/1.47/cstr_range_from.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`Index` implementation for `CStr`" -flag = "cstr_range_from" -impl_pr_id = 74021 -+++ diff --git a/data/1.47/cstr_range_from.toml b/data/1.47/cstr_range_from.toml new file mode 100644 index 0000000..1f61b8c --- /dev/null +++ b/data/1.47/cstr_range_from.toml @@ -0,0 +1,3 @@ +title = "`Index` implementation for `CStr`" +flag = "cstr_range_from" +impl_pr_id = 74021 diff --git a/data/1.47/proc_macro_raw_ident.md b/data/1.47/proc_macro_raw_ident.md deleted file mode 100644 index 421b961..0000000 --- a/data/1.47/proc_macro_raw_ident.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`proc_macro::Ident::new_raw`" -flag = "proc_macro_raw_ident" -tracking_issue_id = 54723 -stabilization_pr_id = 75084 -+++ diff --git a/data/1.47/proc_macro_raw_ident.toml b/data/1.47/proc_macro_raw_ident.toml new file mode 100644 index 0000000..158df43 --- /dev/null +++ b/data/1.47/proc_macro_raw_ident.toml @@ -0,0 +1,4 @@ +title = "`proc_macro::Ident::new_raw`" +flag = "proc_macro_raw_ident" +tracking_issue_id = 54723 +stabilization_pr_id = 75084 diff --git a/data/1.47/range_default.md b/data/1.47/range_default.md deleted file mode 100644 index 2f8a957..0000000 --- a/data/1.47/range_default.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`Default` implementation for `Range`" -impl_pr_id = 73197 -+++ diff --git a/data/1.47/range_default.toml b/data/1.47/range_default.toml new file mode 100644 index 0000000..68fe6cd --- /dev/null +++ b/data/1.47/range_default.toml @@ -0,0 +1,2 @@ +title = "`Default` implementation for `Range`" +impl_pr_id = 73197 diff --git a/data/1.47/range_full_default.md b/data/1.47/range_full_default.md deleted file mode 100644 index b15b6c5..0000000 --- a/data/1.47/range_full_default.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`Default` implementation for `RangeFull`" -impl_pr_id = 73197 -+++ diff --git a/data/1.47/range_full_default.toml b/data/1.47/range_full_default.toml new file mode 100644 index 0000000..7386e4a --- /dev/null +++ b/data/1.47/range_full_default.toml @@ -0,0 +1,2 @@ +title = "`Default` implementation for `RangeFull`" +impl_pr_id = 73197 diff --git a/data/1.47/result_deref.md b/data/1.47/result_deref.md deleted file mode 100644 index f6d5993..0000000 --- a/data/1.47/result_deref.md +++ /dev/null @@ -1,10 +0,0 @@ -+++ -title = "`as_deref` and `as_deref_mut` on `Result`" -flag = "inner_deref" -tracking_issue_id = 50264 -stabilization_pr_id = 74948 -items = [ - "Result::as_deref", - "Result::as_deref_mut", -] -+++ diff --git a/data/1.47/result_deref.toml b/data/1.47/result_deref.toml new file mode 100644 index 0000000..23c1c7c --- /dev/null +++ b/data/1.47/result_deref.toml @@ -0,0 +1,8 @@ +title = "`as_deref` and `as_deref_mut` on `Result`" +flag = "inner_deref" +tracking_issue_id = 50264 +stabilization_pr_id = 74948 +items = [ + "Result::as_deref", + "Result::as_deref_mut", +] diff --git a/data/1.47/tau_constant.md b/data/1.47/tau_constant.md deleted file mode 100644 index 9dadcd6..0000000 --- a/data/1.47/tau_constant.md +++ /dev/null @@ -1,11 +0,0 @@ -+++ -title = "the `TAU` constant" -flag = "tau_constant" -impl_pr_id = 66769 -tracking_issue_id = 66770 -stabilization_pr_id = 74552 -items = [ - "std::f32::consts::TAU", - "std::f64::consts::TAU", -] -+++ diff --git a/data/1.47/tau_constant.toml b/data/1.47/tau_constant.toml new file mode 100644 index 0000000..6540ff1 --- /dev/null +++ b/data/1.47/tau_constant.toml @@ -0,0 +1,9 @@ +title = "the `TAU` constant" +flag = "tau_constant" +impl_pr_id = 66769 +tracking_issue_id = 66770 +stabilization_pr_id = 74552 +items = [ + "std::f32::consts::TAU", + "std::f64::consts::TAU", +] diff --git a/data/1.47/vec_leak.md b/data/1.47/vec_leak.md deleted file mode 100644 index 607d69f..0000000 --- a/data/1.47/vec_leak.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`Vec::leak`" -flag = "vec_leak" -tracking_issue_id = 62195 -stabilization_pr_id = 74605 -+++ diff --git a/data/1.47/vec_leak.toml b/data/1.47/vec_leak.toml new file mode 100644 index 0000000..34d8f5a --- /dev/null +++ b/data/1.47/vec_leak.toml @@ -0,0 +1,4 @@ +title = "`Vec::leak`" +flag = "vec_leak" +tracking_issue_id = 62195 +stabilization_pr_id = 74605 diff --git a/data/1.48/array_try_from_vec.md b/data/1.48/array_try_from_vec.md deleted file mode 100644 index 4ff5a35..0000000 --- a/data/1.48/array_try_from_vec.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`TryFrom>` implementation for `[T; N]`" -flag = "array_try_from_vec" -impl_pr_id = 76310 -+++ diff --git a/data/1.48/array_try_from_vec.toml b/data/1.48/array_try_from_vec.toml new file mode 100644 index 0000000..feb86bc --- /dev/null +++ b/data/1.48/array_try_from_vec.toml @@ -0,0 +1,3 @@ +title = "`TryFrom>` implementation for `[T; N]`" +flag = "array_try_from_vec" +impl_pr_id = 76310 diff --git a/data/1.48/const_option_as_ref.md b/data/1.48/const_option_as_ref.md deleted file mode 100644 index 6a683b1..0000000 --- a/data/1.48/const_option_as_ref.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`Option::as_ref` as `const fn`" -flag = "const_option" -impl_pr_id = 73930 -tracking_issue_id = 67441 -stabilization_pr_id = 76135 -+++ diff --git a/data/1.48/const_option_as_ref.toml b/data/1.48/const_option_as_ref.toml new file mode 100644 index 0000000..ae3209b --- /dev/null +++ b/data/1.48/const_option_as_ref.toml @@ -0,0 +1,5 @@ +title = "`Option::as_ref` as `const fn`" +flag = "const_option" +impl_pr_id = 73930 +tracking_issue_id = 67441 +stabilization_pr_id = 76135 diff --git a/data/1.48/const_option_is_none.md b/data/1.48/const_option_is_none.md deleted file mode 100644 index 3b6cc5f..0000000 --- a/data/1.48/const_option_is_none.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`Option::is_none` as `const fn`" -flag = "const_option" -impl_pr_id = 73930 -tracking_issue_id = 67441 -stabilization_pr_id = 76135 -+++ diff --git a/data/1.48/const_option_is_none.toml b/data/1.48/const_option_is_none.toml new file mode 100644 index 0000000..de87e56 --- /dev/null +++ b/data/1.48/const_option_is_none.toml @@ -0,0 +1,5 @@ +title = "`Option::is_none` as `const fn`" +flag = "const_option" +impl_pr_id = 73930 +tracking_issue_id = 67441 +stabilization_pr_id = 76135 diff --git a/data/1.48/const_option_is_some.md b/data/1.48/const_option_is_some.md deleted file mode 100644 index ddecd1a..0000000 --- a/data/1.48/const_option_is_some.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`Option::is_some` as `const fn`" -flag = "const_option" -impl_pr_id = 73930 -tracking_issue_id = 67441 -stabilization_pr_id = 76135 -+++ diff --git a/data/1.48/const_option_is_some.toml b/data/1.48/const_option_is_some.toml new file mode 100644 index 0000000..74e2e68 --- /dev/null +++ b/data/1.48/const_option_is_some.toml @@ -0,0 +1,5 @@ +title = "`Option::is_some` as `const fn`" +flag = "const_option" +impl_pr_id = 73930 +tracking_issue_id = 67441 +stabilization_pr_id = 76135 diff --git a/data/1.48/const_ordering_reverse.md b/data/1.48/const_ordering_reverse.md deleted file mode 100644 index f9d589f..0000000 --- a/data/1.48/const_ordering_reverse.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`cmp::Ordering::reverse` as `const fn`" -flag = "const_ordering" -impl_pr_id = 76198 -tracking_issue_id = 76113 -+++ diff --git a/data/1.48/const_ordering_reverse.toml b/data/1.48/const_ordering_reverse.toml new file mode 100644 index 0000000..1b06487 --- /dev/null +++ b/data/1.48/const_ordering_reverse.toml @@ -0,0 +1,4 @@ +title = "`cmp::Ordering::reverse` as `const fn`" +flag = "const_ordering" +impl_pr_id = 76198 +tracking_issue_id = 76113 diff --git a/data/1.48/const_ordering_then.md b/data/1.48/const_ordering_then.md deleted file mode 100644 index aefaee8..0000000 --- a/data/1.48/const_ordering_then.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`cmp::Ordering::then` as `const fn`" -flag = "const_ordering" -impl_pr_id = 76198 -tracking_issue_id = 76113 -+++ diff --git a/data/1.48/const_ordering_then.toml b/data/1.48/const_ordering_then.toml new file mode 100644 index 0000000..df057d6 --- /dev/null +++ b/data/1.48/const_ordering_then.toml @@ -0,0 +1,4 @@ +title = "`cmp::Ordering::then` as `const fn`" +flag = "const_ordering" +impl_pr_id = 76198 +tracking_issue_id = 76113 diff --git a/data/1.48/const_result_as_ref.md b/data/1.48/const_result_as_ref.md deleted file mode 100644 index c2b25f7..0000000 --- a/data/1.48/const_result_as_ref.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`Result::as_ref` as `const fn`" -flag = "const_result" -impl_pr_id = 67685 -tracking_issue_id = 67520 -stabilization_pr_id = 76136 -+++ diff --git a/data/1.48/const_result_as_ref.toml b/data/1.48/const_result_as_ref.toml new file mode 100644 index 0000000..81b404a --- /dev/null +++ b/data/1.48/const_result_as_ref.toml @@ -0,0 +1,5 @@ +title = "`Result::as_ref` as `const fn`" +flag = "const_result" +impl_pr_id = 67685 +tracking_issue_id = 67520 +stabilization_pr_id = 76136 diff --git a/data/1.48/const_result_is_err.md b/data/1.48/const_result_is_err.md deleted file mode 100644 index 28a7c3e..0000000 --- a/data/1.48/const_result_is_err.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`Result::is_err` as `const fn`" -flag = "const_result" -impl_pr_id = 67685 -tracking_issue_id = 67520 -stabilization_pr_id = 76136 -+++ diff --git a/data/1.48/const_result_is_err.toml b/data/1.48/const_result_is_err.toml new file mode 100644 index 0000000..4053db6 --- /dev/null +++ b/data/1.48/const_result_is_err.toml @@ -0,0 +1,5 @@ +title = "`Result::is_err` as `const fn`" +flag = "const_result" +impl_pr_id = 67685 +tracking_issue_id = 67520 +stabilization_pr_id = 76136 diff --git a/data/1.48/const_result_is_ok.md b/data/1.48/const_result_is_ok.md deleted file mode 100644 index 26d7cc1..0000000 --- a/data/1.48/const_result_is_ok.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`Result::is_ok` as `const fn`" -flag = "const_result" -impl_pr_id = 67685 -tracking_issue_id = 67520 -stabilization_pr_id = 76136 -+++ diff --git a/data/1.48/const_result_is_ok.toml b/data/1.48/const_result_is_ok.toml new file mode 100644 index 0000000..428fcfa --- /dev/null +++ b/data/1.48/const_result_is_ok.toml @@ -0,0 +1,5 @@ +title = "`Result::is_ok` as `const fn`" +flag = "const_result" +impl_pr_id = 67685 +tracking_issue_id = 67520 +stabilization_pr_id = 76136 diff --git a/data/1.48/deque_make_contiguous.md b/data/1.48/deque_make_contiguous.md deleted file mode 100644 index 2aa89b5..0000000 --- a/data/1.48/deque_make_contiguous.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`VecDeque::make_contiguous`" -flag = "deque_make_contiguous" -tracking_issue_id = 70929 -stabilization_pr_id = 74559 -+++ diff --git a/data/1.48/deque_make_contiguous.toml b/data/1.48/deque_make_contiguous.toml new file mode 100644 index 0000000..58e74c8 --- /dev/null +++ b/data/1.48/deque_make_contiguous.toml @@ -0,0 +1,4 @@ +title = "`VecDeque::make_contiguous`" +flag = "deque_make_contiguous" +tracking_issue_id = 70929 +stabilization_pr_id = 74559 diff --git a/data/1.48/doc_alias.md b/data/1.48/doc_alias.md deleted file mode 100644 index b2137c5..0000000 --- a/data/1.48/doc_alias.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`#[doc(alias = \"…\")]`" -flag = "doc_alias" -impl_pr_id = 49757 -tracking_issue_id = 50146 -stabilization_pr_id = 75740 -+++ diff --git a/data/1.48/doc_alias.toml b/data/1.48/doc_alias.toml new file mode 100644 index 0000000..0ce235d --- /dev/null +++ b/data/1.48/doc_alias.toml @@ -0,0 +1,5 @@ +title = "`#[doc(alias = \"…\")]`" +flag = "doc_alias" +impl_pr_id = 49757 +tracking_issue_id = 50146 +stabilization_pr_id = 75740 diff --git a/data/1.48/future_pending.md b/data/1.48/future_pending.md deleted file mode 100644 index 57fd822..0000000 --- a/data/1.48/future_pending.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`future::pending`" -flag = "future_readiness_fns" -tracking_issue_id = 70921 -stabilization_pr_id = 74328 -+++ diff --git a/data/1.48/future_pending.toml b/data/1.48/future_pending.toml new file mode 100644 index 0000000..da6d5d7 --- /dev/null +++ b/data/1.48/future_pending.toml @@ -0,0 +1,4 @@ +title = "`future::pending`" +flag = "future_readiness_fns" +tracking_issue_id = 70921 +stabilization_pr_id = 74328 diff --git a/data/1.48/future_ready.md b/data/1.48/future_ready.md deleted file mode 100644 index 69088a4..0000000 --- a/data/1.48/future_ready.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`future::ready`" -flag = "future_readiness_fns" -tracking_issue_id = 70921 -stabilization_pr_id = 74328 -+++ diff --git a/data/1.48/future_ready.toml b/data/1.48/future_ready.toml new file mode 100644 index 0000000..ae29b26 --- /dev/null +++ b/data/1.48/future_ready.toml @@ -0,0 +1,4 @@ +title = "`future::ready`" +flag = "future_readiness_fns" +tracking_issue_id = 70921 +stabilization_pr_id = 74328 diff --git a/data/1.48/intra_doc_links.md b/data/1.48/intra_doc_links.md deleted file mode 100644 index bc57fa9..0000000 --- a/data/1.48/intra_doc_links.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "intra-doc links" -tracking_issue_id = 43466 -stabilization_pr_id = 74430 -+++ diff --git a/data/1.48/intra_doc_links.toml b/data/1.48/intra_doc_links.toml new file mode 100644 index 0000000..d69e9ba --- /dev/null +++ b/data/1.48/intra_doc_links.toml @@ -0,0 +1,3 @@ +title = "intra-doc links" +tracking_issue_id = 43466 +stabilization_pr_id = 74430 diff --git a/data/1.48/slice_ptr_range.md b/data/1.48/slice_ptr_range.md deleted file mode 100644 index 789889b..0000000 --- a/data/1.48/slice_ptr_range.md +++ /dev/null @@ -1,11 +0,0 @@ -+++ -title = "slice to pointer range methods" -flag = "slice_ptr_range" -impl_pr_id = 65806 -tracking_issue_id = 65807 -stabilization_pr_id = 77111 -items = [ - "[T]::as_ptr_range", - "[T]::as_mut_ptr_range", -] -+++ diff --git a/data/1.48/slice_ptr_range.toml b/data/1.48/slice_ptr_range.toml new file mode 100644 index 0000000..74c924e --- /dev/null +++ b/data/1.48/slice_ptr_range.toml @@ -0,0 +1,9 @@ +title = "slice to pointer range methods" +flag = "slice_ptr_range" +impl_pr_id = 65806 +tracking_issue_id = 65807 +stabilization_pr_id = 77111 +items = [ + "[T]::as_ptr_range", + "[T]::as_mut_ptr_range", +] diff --git a/data/1.48/write_child_stdin_ref.md b/data/1.48/write_child_stdin_ref.md deleted file mode 100644 index b6e57ce..0000000 --- a/data/1.48/write_child_stdin_ref.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`Write` implementation for `&ChildStdin`" -flag = "write_mt" -impl_pr_id = 76275 -+++ diff --git a/data/1.48/write_child_stdin_ref.toml b/data/1.48/write_child_stdin_ref.toml new file mode 100644 index 0000000..7759812 --- /dev/null +++ b/data/1.48/write_child_stdin_ref.toml @@ -0,0 +1,3 @@ +title = "`Write` implementation for `&ChildStdin`" +flag = "write_mt" +impl_pr_id = 76275 diff --git a/data/1.48/write_sink_ref.md b/data/1.48/write_sink_ref.md deleted file mode 100644 index 2d18bfc..0000000 --- a/data/1.48/write_sink_ref.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`Write` implementation for `&Sink`" -flag = "write_mt" -impl_pr_id = 76275 -+++ diff --git a/data/1.48/write_sink_ref.toml b/data/1.48/write_sink_ref.toml new file mode 100644 index 0000000..11b2db6 --- /dev/null +++ b/data/1.48/write_sink_ref.toml @@ -0,0 +1,3 @@ +title = "`Write` implementation for `&Sink`" +flag = "write_mt" +impl_pr_id = 76275 diff --git a/data/1.48/write_stderr_ref.md b/data/1.48/write_stderr_ref.md deleted file mode 100644 index 70a58d6..0000000 --- a/data/1.48/write_stderr_ref.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`Write` implementation for `&Stderr`" -flag = "write_mt" -impl_pr_id = 76275 -+++ diff --git a/data/1.48/write_stderr_ref.toml b/data/1.48/write_stderr_ref.toml new file mode 100644 index 0000000..876250d --- /dev/null +++ b/data/1.48/write_stderr_ref.toml @@ -0,0 +1,3 @@ +title = "`Write` implementation for `&Stderr`" +flag = "write_mt" +impl_pr_id = 76275 diff --git a/data/1.48/write_stdout_ref.md b/data/1.48/write_stdout_ref.md deleted file mode 100644 index e60cb76..0000000 --- a/data/1.48/write_stdout_ref.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`Write` implementation for `&Stdout`" -flag = "write_mt" -impl_pr_id = 76275 -+++ diff --git a/data/1.48/write_stdout_ref.toml b/data/1.48/write_stdout_ref.toml new file mode 100644 index 0000000..f959685 --- /dev/null +++ b/data/1.48/write_stdout_ref.toml @@ -0,0 +1,3 @@ +title = "`Write` implementation for `&Stdout`" +flag = "write_mt" +impl_pr_id = 76275 diff --git a/data/1.49/const_poll_is_pending.md b/data/1.49/const_poll_is_pending.md deleted file mode 100644 index 9883b98..0000000 --- a/data/1.49/const_poll_is_pending.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`Poll::is_pending` as `const fn`" -flag = "const_poll" -impl_pr_id = 76227 -+++ diff --git a/data/1.49/const_poll_is_pending.toml b/data/1.49/const_poll_is_pending.toml new file mode 100644 index 0000000..3def176 --- /dev/null +++ b/data/1.49/const_poll_is_pending.toml @@ -0,0 +1,3 @@ +title = "`Poll::is_pending` as `const fn`" +flag = "const_poll" +impl_pr_id = 76227 diff --git a/data/1.49/const_poll_is_ready.md b/data/1.49/const_poll_is_ready.md deleted file mode 100644 index 79b3d36..0000000 --- a/data/1.49/const_poll_is_ready.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`Poll::is_ready` as `const fn`" -flag = "const_poll" -impl_pr_id = 76227 -+++ diff --git a/data/1.49/const_poll_is_ready.toml b/data/1.49/const_poll_is_ready.toml new file mode 100644 index 0000000..1d0d9fd --- /dev/null +++ b/data/1.49/const_poll_is_ready.toml @@ -0,0 +1,3 @@ +title = "`Poll::is_ready` as `const fn`" +flag = "const_poll" +impl_pr_id = 76227 diff --git a/data/1.49/empty_enum_to_int.md b/data/1.49/empty_enum_to_int.md deleted file mode 100644 index ed60cd8..0000000 --- a/data/1.49/empty_enum_to_int.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "uninhabited enum to integer casts" -impl_pr_id = 76199 -+++ diff --git a/data/1.49/empty_enum_to_int.toml b/data/1.49/empty_enum_to_int.toml new file mode 100644 index 0000000..d01fb36 --- /dev/null +++ b/data/1.49/empty_enum_to_int.toml @@ -0,0 +1,2 @@ +title = "uninhabited enum to integer casts" +impl_pr_id = 76199 diff --git a/data/1.49/manually_drop_in_unions.md b/data/1.49/manually_drop_in_unions.md deleted file mode 100644 index 3ba56ef..0000000 --- a/data/1.49/manually_drop_in_unions.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`ManuallyDrop` in `union`s" -flag = "untagged_unions" -tracking_issue_id = 55149 -stabilization_pr_id = 77547 -+++ diff --git a/data/1.49/manually_drop_in_unions.toml b/data/1.49/manually_drop_in_unions.toml new file mode 100644 index 0000000..9fae0c0 --- /dev/null +++ b/data/1.49/manually_drop_in_unions.toml @@ -0,0 +1,4 @@ +title = "`ManuallyDrop` in `union`s" +flag = "untagged_unions" +tracking_issue_id = 55149 +stabilization_pr_id = 77547 diff --git a/data/1.49/move_ref_pattern.md b/data/1.49/move_ref_pattern.md deleted file mode 100644 index 3c67ab8..0000000 --- a/data/1.49/move_ref_pattern.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "move and reference bindings in the same match pattern" -flag = "move_ref_pattern" -impl_pr_id = 68376 -tracking_issue_id = 68354 -stabilization_pr_id = 76119 -+++ diff --git a/data/1.49/move_ref_pattern.toml b/data/1.49/move_ref_pattern.toml new file mode 100644 index 0000000..3c1c9c2 --- /dev/null +++ b/data/1.49/move_ref_pattern.toml @@ -0,0 +1,5 @@ +title = "move and reference bindings in the same match pattern" +flag = "move_ref_pattern" +impl_pr_id = 68376 +tracking_issue_id = 68354 +stabilization_pr_id = 76119 diff --git a/data/1.49/nzint_try_from_nzint.md b/data/1.49/nzint_try_from_nzint.md deleted file mode 100644 index 8830a28..0000000 --- a/data/1.49/nzint_try_from_nzint.md +++ /dev/null @@ -1,115 +0,0 @@ -+++ -title = "`TryFrom` conversions between `NonZero` integer types" -flag = "nzint_try_from_nzint_conv" -impl_pr_id = 77339 -items = [ - "impl TryFrom for NonZeroU8", - "impl TryFrom for NonZeroU8", - "impl TryFrom for NonZeroU8", - "impl TryFrom for NonZeroU8", - "impl TryFrom for NonZeroU8", - "impl TryFrom for NonZeroU8", - "impl TryFrom for NonZeroU8", - "impl TryFrom for NonZeroU8", - "impl TryFrom for NonZeroU8", - "impl TryFrom for NonZeroU8", - "impl TryFrom for NonZeroU8", - - "impl TryFrom for NonZeroU16", - "impl TryFrom for NonZeroU16", - "impl TryFrom for NonZeroU16", - "impl TryFrom for NonZeroU16", - "impl TryFrom for NonZeroU16", - "impl TryFrom for NonZeroU16", - "impl TryFrom for NonZeroU16", - "impl TryFrom for NonZeroU16", - "impl TryFrom for NonZeroU16", - "impl TryFrom for NonZeroU16", - - "impl TryFrom for NonZeroU32", - "impl TryFrom for NonZeroU32", - "impl TryFrom for NonZeroU32", - "impl TryFrom for NonZeroU32", - "impl TryFrom for NonZeroU32", - "impl TryFrom for NonZeroU32", - "impl TryFrom for NonZeroU32", - "impl TryFrom for NonZeroU32", - "impl TryFrom for NonZeroU32", - - "impl TryFrom for NonZeroU64", - "impl TryFrom for NonZeroU64", - "impl TryFrom for NonZeroU64", - "impl TryFrom for NonZeroU64", - "impl TryFrom for NonZeroU64", - "impl TryFrom for NonZeroU64", - "impl TryFrom for NonZeroU64", - "impl TryFrom for NonZeroU64", - - "impl TryFrom for NonZeroU128", - "impl TryFrom for NonZeroU128", - "impl TryFrom for NonZeroU128", - "impl TryFrom for NonZeroU128", - "impl TryFrom for NonZeroU128", - "impl TryFrom for NonZeroU128", - "impl TryFrom for NonZeroU128", - - "impl TryFrom for NonZeroUsize", - "impl TryFrom for NonZeroUsize", - "impl TryFrom for NonZeroUsize", - "impl TryFrom for NonZeroUsize", - "impl TryFrom for NonZeroUsize", - "impl TryFrom for NonZeroUsize", - "impl TryFrom for NonZeroUsize", - "impl TryFrom for NonZeroUsize", - "impl TryFrom for NonZeroUsize", - - "impl TryFrom for NonZeroI8", - "impl TryFrom for NonZeroI8", - "impl TryFrom for NonZeroI8", - "impl TryFrom for NonZeroI8", - "impl TryFrom for NonZeroI8", - "impl TryFrom for NonZeroI8", - "impl TryFrom for NonZeroI8", - "impl TryFrom for NonZeroI8", - "impl TryFrom for NonZeroI8", - "impl TryFrom for NonZeroI8", - "impl TryFrom for NonZeroI8", - - "impl TryFrom for NonZeroI16", - "impl TryFrom for NonZeroI16", - "impl TryFrom for NonZeroI16", - "impl TryFrom for NonZeroI16", - "impl TryFrom for NonZeroI16", - "impl TryFrom for NonZeroI16", - "impl TryFrom for NonZeroI16", - "impl TryFrom for NonZeroI16", - "impl TryFrom for NonZeroI16", - - "impl TryFrom for NonZeroI32", - "impl TryFrom for NonZeroI32", - "impl TryFrom for NonZeroI32", - "impl TryFrom for NonZeroI32", - "impl TryFrom for NonZeroI32", - "impl TryFrom for NonZeroI32", - "impl TryFrom for NonZeroI32", - - "impl TryFrom for NonZeroI64", - "impl TryFrom for NonZeroI64", - "impl TryFrom for NonZeroI64", - "impl TryFrom for NonZeroI64", - "impl TryFrom for NonZeroI64", - - "impl TryFrom for NonZeroI128", - "impl TryFrom for NonZeroI128", - "impl TryFrom for NonZeroI128", - - "impl TryFrom for NonZeroIsize", - "impl TryFrom for NonZeroIsize", - "impl TryFrom for NonZeroIsize", - "impl TryFrom for NonZeroIsize", - "impl TryFrom for NonZeroIsize", - "impl TryFrom for NonZeroIsize", - "impl TryFrom for NonZeroIsize", - "impl TryFrom for NonZeroIsize", -] -+++ diff --git a/data/1.49/nzint_try_from_nzint.toml b/data/1.49/nzint_try_from_nzint.toml new file mode 100644 index 0000000..cecbbdd --- /dev/null +++ b/data/1.49/nzint_try_from_nzint.toml @@ -0,0 +1,113 @@ +title = "`TryFrom` conversions between `NonZero` integer types" +flag = "nzint_try_from_nzint_conv" +impl_pr_id = 77339 +items = [ + "impl TryFrom for NonZeroU8", + "impl TryFrom for NonZeroU8", + "impl TryFrom for NonZeroU8", + "impl TryFrom for NonZeroU8", + "impl TryFrom for NonZeroU8", + "impl TryFrom for NonZeroU8", + "impl TryFrom for NonZeroU8", + "impl TryFrom for NonZeroU8", + "impl TryFrom for NonZeroU8", + "impl TryFrom for NonZeroU8", + "impl TryFrom for NonZeroU8", + + "impl TryFrom for NonZeroU16", + "impl TryFrom for NonZeroU16", + "impl TryFrom for NonZeroU16", + "impl TryFrom for NonZeroU16", + "impl TryFrom for NonZeroU16", + "impl TryFrom for NonZeroU16", + "impl TryFrom for NonZeroU16", + "impl TryFrom for NonZeroU16", + "impl TryFrom for NonZeroU16", + "impl TryFrom for NonZeroU16", + + "impl TryFrom for NonZeroU32", + "impl TryFrom for NonZeroU32", + "impl TryFrom for NonZeroU32", + "impl TryFrom for NonZeroU32", + "impl TryFrom for NonZeroU32", + "impl TryFrom for NonZeroU32", + "impl TryFrom for NonZeroU32", + "impl TryFrom for NonZeroU32", + "impl TryFrom for NonZeroU32", + + "impl TryFrom for NonZeroU64", + "impl TryFrom for NonZeroU64", + "impl TryFrom for NonZeroU64", + "impl TryFrom for NonZeroU64", + "impl TryFrom for NonZeroU64", + "impl TryFrom for NonZeroU64", + "impl TryFrom for NonZeroU64", + "impl TryFrom for NonZeroU64", + + "impl TryFrom for NonZeroU128", + "impl TryFrom for NonZeroU128", + "impl TryFrom for NonZeroU128", + "impl TryFrom for NonZeroU128", + "impl TryFrom for NonZeroU128", + "impl TryFrom for NonZeroU128", + "impl TryFrom for NonZeroU128", + + "impl TryFrom for NonZeroUsize", + "impl TryFrom for NonZeroUsize", + "impl TryFrom for NonZeroUsize", + "impl TryFrom for NonZeroUsize", + "impl TryFrom for NonZeroUsize", + "impl TryFrom for NonZeroUsize", + "impl TryFrom for NonZeroUsize", + "impl TryFrom for NonZeroUsize", + "impl TryFrom for NonZeroUsize", + + "impl TryFrom for NonZeroI8", + "impl TryFrom for NonZeroI8", + "impl TryFrom for NonZeroI8", + "impl TryFrom for NonZeroI8", + "impl TryFrom for NonZeroI8", + "impl TryFrom for NonZeroI8", + "impl TryFrom for NonZeroI8", + "impl TryFrom for NonZeroI8", + "impl TryFrom for NonZeroI8", + "impl TryFrom for NonZeroI8", + "impl TryFrom for NonZeroI8", + + "impl TryFrom for NonZeroI16", + "impl TryFrom for NonZeroI16", + "impl TryFrom for NonZeroI16", + "impl TryFrom for NonZeroI16", + "impl TryFrom for NonZeroI16", + "impl TryFrom for NonZeroI16", + "impl TryFrom for NonZeroI16", + "impl TryFrom for NonZeroI16", + "impl TryFrom for NonZeroI16", + + "impl TryFrom for NonZeroI32", + "impl TryFrom for NonZeroI32", + "impl TryFrom for NonZeroI32", + "impl TryFrom for NonZeroI32", + "impl TryFrom for NonZeroI32", + "impl TryFrom for NonZeroI32", + "impl TryFrom for NonZeroI32", + + "impl TryFrom for NonZeroI64", + "impl TryFrom for NonZeroI64", + "impl TryFrom for NonZeroI64", + "impl TryFrom for NonZeroI64", + "impl TryFrom for NonZeroI64", + + "impl TryFrom for NonZeroI128", + "impl TryFrom for NonZeroI128", + "impl TryFrom for NonZeroI128", + + "impl TryFrom for NonZeroIsize", + "impl TryFrom for NonZeroIsize", + "impl TryFrom for NonZeroIsize", + "impl TryFrom for NonZeroIsize", + "impl TryFrom for NonZeroIsize", + "impl TryFrom for NonZeroIsize", + "impl TryFrom for NonZeroIsize", + "impl TryFrom for NonZeroIsize", +] diff --git a/data/1.49/partialeq_slice_for_vec.md b/data/1.49/partialeq_slice_for_vec.md deleted file mode 100644 index 3706e5e..0000000 --- a/data/1.49/partialeq_slice_for_vec.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`impl PartialEq<[B]> for Vec where A: PartialEq`" -impl_pr_id = 74194 -+++ diff --git a/data/1.49/partialeq_slice_for_vec.toml b/data/1.49/partialeq_slice_for_vec.toml new file mode 100644 index 0000000..46874fd --- /dev/null +++ b/data/1.49/partialeq_slice_for_vec.toml @@ -0,0 +1,2 @@ +title = "`impl PartialEq<[B]> for Vec where A: PartialEq`" +impl_pr_id = 74194 diff --git a/data/1.49/partialeq_vec_for_slice.md b/data/1.49/partialeq_vec_for_slice.md deleted file mode 100644 index 3c9826f..0000000 --- a/data/1.49/partialeq_vec_for_slice.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`impl PartialEq> for [A] where A: PartialEq`" -impl_pr_id = 74194 -+++ diff --git a/data/1.49/partialeq_vec_for_slice.toml b/data/1.49/partialeq_vec_for_slice.toml new file mode 100644 index 0000000..19ed66c --- /dev/null +++ b/data/1.49/partialeq_vec_for_slice.toml @@ -0,0 +1,2 @@ +title = "`impl PartialEq> for [A] where A: PartialEq`" +impl_pr_id = 74194 diff --git a/data/1.5/fs_canonicalize.md b/data/1.5/fs_canonicalize.md deleted file mode 100644 index 81410c2..0000000 --- a/data/1.5/fs_canonicalize.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`fs::canonicalize`" -rfc_id = 1044 -impl_pr_id = 24711 -stabilization_pr_id = 29254 -+++ diff --git a/data/1.5/fs_canonicalize.toml b/data/1.5/fs_canonicalize.toml new file mode 100644 index 0000000..0751f6b --- /dev/null +++ b/data/1.5/fs_canonicalize.toml @@ -0,0 +1,4 @@ +title = "`fs::canonicalize`" +rfc_id = 1044 +impl_pr_id = 24711 +stabilization_pr_id = 29254 diff --git a/data/1.5/vec_resize.md b/data/1.5/vec_resize.md deleted file mode 100644 index c5510ab..0000000 --- a/data/1.5/vec_resize.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`Vec::resize`" -rfc_id = 509 -impl_pr_id = 20044 -stabilization_pr_id = 29254 -+++ diff --git a/data/1.5/vec_resize.toml b/data/1.5/vec_resize.toml new file mode 100644 index 0000000..54a6bec --- /dev/null +++ b/data/1.5/vec_resize.toml @@ -0,0 +1,4 @@ +title = "`Vec::resize`" +rfc_id = 509 +impl_pr_id = 20044 +stabilization_pr_id = 29254 diff --git a/data/1.50/assign_manually_drop_in_unions.md b/data/1.50/assign_manually_drop_in_unions.md deleted file mode 100644 index b5c6cab..0000000 --- a/data/1.50/assign_manually_drop_in_unions.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "safe assignment to `ManuallyDrop` in `union`s" -impl_pr_id = 78068 -+++ diff --git a/data/1.50/assign_manually_drop_in_unions.toml b/data/1.50/assign_manually_drop_in_unions.toml new file mode 100644 index 0000000..d8d88b8 --- /dev/null +++ b/data/1.50/assign_manually_drop_in_unions.toml @@ -0,0 +1,2 @@ +title = "safe assignment to `ManuallyDrop` in `union`s" +impl_pr_id = 78068 diff --git a/data/1.50/bool_then.md b/data/1.50/bool_then.md deleted file mode 100644 index 3995595..0000000 --- a/data/1.50/bool_then.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`bool::then`" -flag = "lazy_bool_to_option" -tracking_issue_id = 64260 -stabilization_pr_id = 79299 -+++ diff --git a/data/1.50/bool_then.toml b/data/1.50/bool_then.toml new file mode 100644 index 0000000..dce4f18 --- /dev/null +++ b/data/1.50/bool_then.toml @@ -0,0 +1,4 @@ +title = "`bool::then`" +flag = "lazy_bool_to_option" +tracking_issue_id = 64260 +stabilization_pr_id = 79299 diff --git a/data/1.50/const_ipaddr_is_ipv4.md b/data/1.50/const_ipaddr_is_ipv4.md deleted file mode 100644 index 9bf2d8d..0000000 --- a/data/1.50/const_ipaddr_is_ipv4.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`IpAddr::is_ipv4` as `const fn`" -flag = "const_ip" -impl_pr_id = 76226 -tracking_issue_id = 76225 -+++ diff --git a/data/1.50/const_ipaddr_is_ipv4.toml b/data/1.50/const_ipaddr_is_ipv4.toml new file mode 100644 index 0000000..80e2132 --- /dev/null +++ b/data/1.50/const_ipaddr_is_ipv4.toml @@ -0,0 +1,4 @@ +title = "`IpAddr::is_ipv4` as `const fn`" +flag = "const_ip" +impl_pr_id = 76226 +tracking_issue_id = 76225 diff --git a/data/1.50/const_ipaddr_is_ipv6.md b/data/1.50/const_ipaddr_is_ipv6.md deleted file mode 100644 index 4403109..0000000 --- a/data/1.50/const_ipaddr_is_ipv6.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`IpAddr::is_ipv6` as `const fn`" -flag = "const_ip" -impl_pr_id = 76226 -tracking_issue_id = 76225 -+++ diff --git a/data/1.50/const_ipaddr_is_ipv6.toml b/data/1.50/const_ipaddr_is_ipv6.toml new file mode 100644 index 0000000..5242006 --- /dev/null +++ b/data/1.50/const_ipaddr_is_ipv6.toml @@ -0,0 +1,4 @@ +title = "`IpAddr::is_ipv6` as `const fn`" +flag = "const_ip" +impl_pr_id = 76226 +tracking_issue_id = 76225 diff --git a/data/1.50/const_ipaddr_is_loopback.md b/data/1.50/const_ipaddr_is_loopback.md deleted file mode 100644 index e35de73..0000000 --- a/data/1.50/const_ipaddr_is_loopback.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`IpAddr::is_loopback` as `const fn`" -flag = "const_ip" -tracking_issue_id = 76205 -stabilization_pr_id = 79342 -+++ diff --git a/data/1.50/const_ipaddr_is_loopback.toml b/data/1.50/const_ipaddr_is_loopback.toml new file mode 100644 index 0000000..2dbdca9 --- /dev/null +++ b/data/1.50/const_ipaddr_is_loopback.toml @@ -0,0 +1,4 @@ +title = "`IpAddr::is_loopback` as `const fn`" +flag = "const_ip" +tracking_issue_id = 76205 +stabilization_pr_id = 79342 diff --git a/data/1.50/const_ipaddr_is_multicast.md b/data/1.50/const_ipaddr_is_multicast.md deleted file mode 100644 index 39feeb2..0000000 --- a/data/1.50/const_ipaddr_is_multicast.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`IpAddr::is_multicast` as `const fn`" -flag = "const_ip" -tracking_issue_id = 76205 -stabilization_pr_id = 79342 -+++ diff --git a/data/1.50/const_ipaddr_is_multicast.toml b/data/1.50/const_ipaddr_is_multicast.toml new file mode 100644 index 0000000..d7a9e61 --- /dev/null +++ b/data/1.50/const_ipaddr_is_multicast.toml @@ -0,0 +1,4 @@ +title = "`IpAddr::is_multicast` as `const fn`" +flag = "const_ip" +tracking_issue_id = 76205 +stabilization_pr_id = 79342 diff --git a/data/1.50/const_ipaddr_is_unspecified.md b/data/1.50/const_ipaddr_is_unspecified.md deleted file mode 100644 index 5d03584..0000000 --- a/data/1.50/const_ipaddr_is_unspecified.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`IpAddr::is_unspecified` as `const fn`" -flag = "const_ip" -tracking_issue_id = 76205 -stabilization_pr_id = 79342 -+++ diff --git a/data/1.50/const_ipaddr_is_unspecified.toml b/data/1.50/const_ipaddr_is_unspecified.toml new file mode 100644 index 0000000..975bd97 --- /dev/null +++ b/data/1.50/const_ipaddr_is_unspecified.toml @@ -0,0 +1,4 @@ +title = "`IpAddr::is_unspecified` as `const fn`" +flag = "const_ip" +tracking_issue_id = 76205 +stabilization_pr_id = 79342 diff --git a/data/1.50/const_ipv4addr_is_broadcast.md b/data/1.50/const_ipv4addr_is_broadcast.md deleted file mode 100644 index f9544ea..0000000 --- a/data/1.50/const_ipv4addr_is_broadcast.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`Ipv4Addr::is_broadcast` as `const fn`" -flag = "const_ipv4" -tracking_issue_id = 76205 -stabilization_pr_id = 79342 -+++ diff --git a/data/1.50/const_ipv4addr_is_broadcast.toml b/data/1.50/const_ipv4addr_is_broadcast.toml new file mode 100644 index 0000000..49eece7 --- /dev/null +++ b/data/1.50/const_ipv4addr_is_broadcast.toml @@ -0,0 +1,4 @@ +title = "`Ipv4Addr::is_broadcast` as `const fn`" +flag = "const_ipv4" +tracking_issue_id = 76205 +stabilization_pr_id = 79342 diff --git a/data/1.50/const_ipv4addr_is_documentation.md b/data/1.50/const_ipv4addr_is_documentation.md deleted file mode 100644 index 171e44a..0000000 --- a/data/1.50/const_ipv4addr_is_documentation.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`Ipv4Addr::is_documentation` as `const fn`" -flag = "const_ipv4" -tracking_issue_id = 76205 -stabilization_pr_id = 79342 -+++ diff --git a/data/1.50/const_ipv4addr_is_documentation.toml b/data/1.50/const_ipv4addr_is_documentation.toml new file mode 100644 index 0000000..0c991f5 --- /dev/null +++ b/data/1.50/const_ipv4addr_is_documentation.toml @@ -0,0 +1,4 @@ +title = "`Ipv4Addr::is_documentation` as `const fn`" +flag = "const_ipv4" +tracking_issue_id = 76205 +stabilization_pr_id = 79342 diff --git a/data/1.50/const_ipv4addr_is_link_local.md b/data/1.50/const_ipv4addr_is_link_local.md deleted file mode 100644 index 6bee0ce..0000000 --- a/data/1.50/const_ipv4addr_is_link_local.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`Ipv4Addr::is_link_local` as `const fn`" -flag = "const_ipv4" -tracking_issue_id = 76205 -stabilization_pr_id = 79342 -+++ diff --git a/data/1.50/const_ipv4addr_is_link_local.toml b/data/1.50/const_ipv4addr_is_link_local.toml new file mode 100644 index 0000000..71d2246 --- /dev/null +++ b/data/1.50/const_ipv4addr_is_link_local.toml @@ -0,0 +1,4 @@ +title = "`Ipv4Addr::is_link_local` as `const fn`" +flag = "const_ipv4" +tracking_issue_id = 76205 +stabilization_pr_id = 79342 diff --git a/data/1.50/const_ipv4addr_is_loopback.md b/data/1.50/const_ipv4addr_is_loopback.md deleted file mode 100644 index d345d76..0000000 --- a/data/1.50/const_ipv4addr_is_loopback.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`Ipv4Addr::is_loopback` as `const fn`" -flag = "const_ipv4" -tracking_issue_id = 76205 -stabilization_pr_id = 79342 -+++ diff --git a/data/1.50/const_ipv4addr_is_loopback.toml b/data/1.50/const_ipv4addr_is_loopback.toml new file mode 100644 index 0000000..f95b0dd --- /dev/null +++ b/data/1.50/const_ipv4addr_is_loopback.toml @@ -0,0 +1,4 @@ +title = "`Ipv4Addr::is_loopback` as `const fn`" +flag = "const_ipv4" +tracking_issue_id = 76205 +stabilization_pr_id = 79342 diff --git a/data/1.50/const_ipv4addr_is_multicast.md b/data/1.50/const_ipv4addr_is_multicast.md deleted file mode 100644 index 5355fd3..0000000 --- a/data/1.50/const_ipv4addr_is_multicast.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`Ipv4Addr::is_multicast` as `const fn`" -flag = "const_ipv4" -tracking_issue_id = 76205 -stabilization_pr_id = 79342 -+++ diff --git a/data/1.50/const_ipv4addr_is_multicast.toml b/data/1.50/const_ipv4addr_is_multicast.toml new file mode 100644 index 0000000..e0cf65b --- /dev/null +++ b/data/1.50/const_ipv4addr_is_multicast.toml @@ -0,0 +1,4 @@ +title = "`Ipv4Addr::is_multicast` as `const fn`" +flag = "const_ipv4" +tracking_issue_id = 76205 +stabilization_pr_id = 79342 diff --git a/data/1.50/const_ipv4addr_is_private.md b/data/1.50/const_ipv4addr_is_private.md deleted file mode 100644 index e74d0d3..0000000 --- a/data/1.50/const_ipv4addr_is_private.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`Ipv4Addr::is_private` as `const fn`" -flag = "const_ipv4" -tracking_issue_id = 76205 -stabilization_pr_id = 79342 -+++ diff --git a/data/1.50/const_ipv4addr_is_private.toml b/data/1.50/const_ipv4addr_is_private.toml new file mode 100644 index 0000000..efddc0d --- /dev/null +++ b/data/1.50/const_ipv4addr_is_private.toml @@ -0,0 +1,4 @@ +title = "`Ipv4Addr::is_private` as `const fn`" +flag = "const_ipv4" +tracking_issue_id = 76205 +stabilization_pr_id = 79342 diff --git a/data/1.50/const_ipv4addr_octets.md b/data/1.50/const_ipv4addr_octets.md deleted file mode 100644 index 6f818e8..0000000 --- a/data/1.50/const_ipv4addr_octets.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`Ipv4Addr::octets` as `const fn`" -flag = "const_ipv4" -tracking_issue_id = 76205 -stabilization_pr_id = 79342 -+++ diff --git a/data/1.50/const_ipv4addr_octets.toml b/data/1.50/const_ipv4addr_octets.toml new file mode 100644 index 0000000..9a9d8b3 --- /dev/null +++ b/data/1.50/const_ipv4addr_octets.toml @@ -0,0 +1,4 @@ +title = "`Ipv4Addr::octets` as `const fn`" +flag = "const_ipv4" +tracking_issue_id = 76205 +stabilization_pr_id = 79342 diff --git a/data/1.50/const_ipv4addr_to_ipv6_compatible.md b/data/1.50/const_ipv4addr_to_ipv6_compatible.md deleted file mode 100644 index 2df42d7..0000000 --- a/data/1.50/const_ipv4addr_to_ipv6_compatible.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`Ipv4Addr::to_ipv6_compatible` as `const fn`" -flag = "const_ipv4" -tracking_issue_id = 76205 -stabilization_pr_id = 79342 -+++ diff --git a/data/1.50/const_ipv4addr_to_ipv6_compatible.toml b/data/1.50/const_ipv4addr_to_ipv6_compatible.toml new file mode 100644 index 0000000..19d6956 --- /dev/null +++ b/data/1.50/const_ipv4addr_to_ipv6_compatible.toml @@ -0,0 +1,4 @@ +title = "`Ipv4Addr::to_ipv6_compatible` as `const fn`" +flag = "const_ipv4" +tracking_issue_id = 76205 +stabilization_pr_id = 79342 diff --git a/data/1.50/const_ipv4addr_to_ipv6_mapped.md b/data/1.50/const_ipv4addr_to_ipv6_mapped.md deleted file mode 100644 index 11bbe49..0000000 --- a/data/1.50/const_ipv4addr_to_ipv6_mapped.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`Ipv4Addr::to_ipv6_mapped` as `const fn`" -flag = "const_ipv4" -tracking_issue_id = 76205 -stabilization_pr_id = 79342 -+++ diff --git a/data/1.50/const_ipv4addr_to_ipv6_mapped.toml b/data/1.50/const_ipv4addr_to_ipv6_mapped.toml new file mode 100644 index 0000000..391b6a5 --- /dev/null +++ b/data/1.50/const_ipv4addr_to_ipv6_mapped.toml @@ -0,0 +1,4 @@ +title = "`Ipv4Addr::to_ipv6_mapped` as `const fn`" +flag = "const_ipv4" +tracking_issue_id = 76205 +stabilization_pr_id = 79342 diff --git a/data/1.50/const_ipv6addr_is_loopback.md b/data/1.50/const_ipv6addr_is_loopback.md deleted file mode 100644 index e93827e..0000000 --- a/data/1.50/const_ipv6addr_is_loopback.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`Ipv6Addr::is_loopback` as `const fn`" -flag = "const_ipv6" -tracking_issue_id = 76205 -stabilization_pr_id = 79342 -+++ diff --git a/data/1.50/const_ipv6addr_is_loopback.toml b/data/1.50/const_ipv6addr_is_loopback.toml new file mode 100644 index 0000000..8382316 --- /dev/null +++ b/data/1.50/const_ipv6addr_is_loopback.toml @@ -0,0 +1,4 @@ +title = "`Ipv6Addr::is_loopback` as `const fn`" +flag = "const_ipv6" +tracking_issue_id = 76205 +stabilization_pr_id = 79342 diff --git a/data/1.50/const_ipv6addr_is_multicast.md b/data/1.50/const_ipv6addr_is_multicast.md deleted file mode 100644 index e633f74..0000000 --- a/data/1.50/const_ipv6addr_is_multicast.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`Ipv6Addr::is_multicast` as `const fn`" -flag = "const_ipv6" -tracking_issue_id = 76205 -stabilization_pr_id = 79342 -+++ diff --git a/data/1.50/const_ipv6addr_is_multicast.toml b/data/1.50/const_ipv6addr_is_multicast.toml new file mode 100644 index 0000000..b71e0c9 --- /dev/null +++ b/data/1.50/const_ipv6addr_is_multicast.toml @@ -0,0 +1,4 @@ +title = "`Ipv6Addr::is_multicast` as `const fn`" +flag = "const_ipv6" +tracking_issue_id = 76205 +stabilization_pr_id = 79342 diff --git a/data/1.50/const_ipv6addr_is_unspecified.md b/data/1.50/const_ipv6addr_is_unspecified.md deleted file mode 100644 index 616a9df..0000000 --- a/data/1.50/const_ipv6addr_is_unspecified.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`Ipv6Addr::is_unspecified` as `const fn`" -flag = "const_ipv6" -tracking_issue_id = 76205 -stabilization_pr_id = 79342 -+++ diff --git a/data/1.50/const_ipv6addr_is_unspecified.toml b/data/1.50/const_ipv6addr_is_unspecified.toml new file mode 100644 index 0000000..e09b002 --- /dev/null +++ b/data/1.50/const_ipv6addr_is_unspecified.toml @@ -0,0 +1,4 @@ +title = "`Ipv6Addr::is_unspecified` as `const fn`" +flag = "const_ipv6" +tracking_issue_id = 76205 +stabilization_pr_id = 79342 diff --git a/data/1.50/const_ipv6addr_segments.md b/data/1.50/const_ipv6addr_segments.md deleted file mode 100644 index c96dafa..0000000 --- a/data/1.50/const_ipv6addr_segments.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`Ipv6Addr::segments` as `const fn`" -flag = "const_ipv6" -tracking_issue_id = 76205 -stabilization_pr_id = 79342 -+++ diff --git a/data/1.50/const_ipv6addr_segments.toml b/data/1.50/const_ipv6addr_segments.toml new file mode 100644 index 0000000..b4cb343 --- /dev/null +++ b/data/1.50/const_ipv6addr_segments.toml @@ -0,0 +1,4 @@ +title = "`Ipv6Addr::segments` as `const fn`" +flag = "const_ipv6" +tracking_issue_id = 76205 +stabilization_pr_id = 79342 diff --git a/data/1.50/const_ipv6addr_to_ipv4.md b/data/1.50/const_ipv6addr_to_ipv4.md deleted file mode 100644 index 63c285d..0000000 --- a/data/1.50/const_ipv6addr_to_ipv4.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`Ipv6Addr::to_ipv4` as `const fn`" -flag = "const_ipv6" -tracking_issue_id = 76205 -stabilization_pr_id = 79342 -+++ diff --git a/data/1.50/const_ipv6addr_to_ipv4.toml b/data/1.50/const_ipv6addr_to_ipv4.toml new file mode 100644 index 0000000..69462d1 --- /dev/null +++ b/data/1.50/const_ipv6addr_to_ipv4.toml @@ -0,0 +1,4 @@ +title = "`Ipv6Addr::to_ipv4` as `const fn`" +flag = "const_ipv6" +tracking_issue_id = 76205 +stabilization_pr_id = 79342 diff --git a/data/1.50/f32_clamp.md b/data/1.50/f32_clamp.md deleted file mode 100644 index 9649d18..0000000 --- a/data/1.50/f32_clamp.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`f32::clamp`" -flag = "clamp" -rfc_id = 1961 -tracking_issue_id = 44095 -stabilization_pr_id = 77872 -+++ diff --git a/data/1.50/f32_clamp.toml b/data/1.50/f32_clamp.toml new file mode 100644 index 0000000..2ee617d --- /dev/null +++ b/data/1.50/f32_clamp.toml @@ -0,0 +1,5 @@ +title = "`f32::clamp`" +flag = "clamp" +rfc_id = 1961 +tracking_issue_id = 44095 +stabilization_pr_id = 77872 diff --git a/data/1.50/f64_clamp.md b/data/1.50/f64_clamp.md deleted file mode 100644 index 75d397b..0000000 --- a/data/1.50/f64_clamp.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`f64::clamp`" -flag = "clamp" -rfc_id = 1961 -tracking_issue_id = 44095 -stabilization_pr_id = 77872 -+++ diff --git a/data/1.50/f64_clamp.toml b/data/1.50/f64_clamp.toml new file mode 100644 index 0000000..0772d41 --- /dev/null +++ b/data/1.50/f64_clamp.toml @@ -0,0 +1,5 @@ +title = "`f64::clamp`" +flag = "clamp" +rfc_id = 1961 +tracking_issue_id = 44095 +stabilization_pr_id = 77872 diff --git a/data/1.50/or_insert_with_key.md b/data/1.50/or_insert_with_key.md deleted file mode 100644 index cec2c98..0000000 --- a/data/1.50/or_insert_with_key.md +++ /dev/null @@ -1,11 +0,0 @@ -+++ -title = "`Entry::or_insert_with_key`" -flag = "or_insert_with_key" -impl_pr_id = 70996 -tracking_issue_id = 71024 -stabilization_pr_id = 78083 -items = [ - "collections::btree_map::Entry::or_insert_with_key", - "collections::hash_map::Entry::or_insert_with_key", -] -+++ diff --git a/data/1.50/or_insert_with_key.toml b/data/1.50/or_insert_with_key.toml new file mode 100644 index 0000000..ba07333 --- /dev/null +++ b/data/1.50/or_insert_with_key.toml @@ -0,0 +1,9 @@ +title = "`Entry::or_insert_with_key`" +flag = "or_insert_with_key" +impl_pr_id = 70996 +tracking_issue_id = 71024 +stabilization_pr_id = 78083 +items = [ + "collections::btree_map::Entry::or_insert_with_key", + "collections::hash_map::Entry::or_insert_with_key", +] diff --git a/data/1.50/ord_clamp.md b/data/1.50/ord_clamp.md deleted file mode 100644 index 8dedc90..0000000 --- a/data/1.50/ord_clamp.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`Ord::clamp`" -flag = "clamp" -rfc_id = 1961 -tracking_issue_id = 44095 -stabilization_pr_id = 77872 -+++ diff --git a/data/1.50/ord_clamp.toml b/data/1.50/ord_clamp.toml new file mode 100644 index 0000000..93016f3 --- /dev/null +++ b/data/1.50/ord_clamp.toml @@ -0,0 +1,5 @@ +title = "`Ord::clamp`" +flag = "clamp" +rfc_id = 1961 +tracking_issue_id = 44095 +stabilization_pr_id = 77872 diff --git a/data/1.50/punct_partial_eq_char.md b/data/1.50/punct_partial_eq_char.md deleted file mode 100644 index 0a961af..0000000 --- a/data/1.50/punct_partial_eq_char.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`PartialEq` implementation for `proc_macro::Punct`" -impl_pr_id = 78636 -+++ diff --git a/data/1.50/punct_partial_eq_char.toml b/data/1.50/punct_partial_eq_char.toml new file mode 100644 index 0000000..d9c72c2 --- /dev/null +++ b/data/1.50/punct_partial_eq_char.toml @@ -0,0 +1,2 @@ +title = "`PartialEq` implementation for `proc_macro::Punct`" +impl_pr_id = 78636 diff --git a/data/1.50/refcell_take.md b/data/1.50/refcell_take.md deleted file mode 100644 index 205040f..0000000 --- a/data/1.50/refcell_take.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`RefCell::take`" -flag = "refcell_take" -impl_pr_id = 71398 -tracking_issue_id = 71395 -stabilization_pr_id = 78608 -+++ diff --git a/data/1.50/refcell_take.toml b/data/1.50/refcell_take.toml new file mode 100644 index 0000000..c36d376 --- /dev/null +++ b/data/1.50/refcell_take.toml @@ -0,0 +1,5 @@ +title = "`RefCell::take`" +flag = "refcell_take" +impl_pr_id = 71398 +tracking_issue_id = 71395 +stabilization_pr_id = 78608 diff --git a/data/1.50/slice_fill.md b/data/1.50/slice_fill.md deleted file mode 100644 index e592483..0000000 --- a/data/1.50/slice_fill.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`slice::fill`" -flag = "slice_fill" -tracking_issue_id = 70758 -stabilization_pr_id = 79213 -+++ diff --git a/data/1.50/slice_fill.toml b/data/1.50/slice_fill.toml new file mode 100644 index 0000000..0cb312d --- /dev/null +++ b/data/1.50/slice_fill.toml @@ -0,0 +1,4 @@ +title = "`slice::fill`" +flag = "slice_fill" +tracking_issue_id = 70758 +stabilization_pr_id = 79213 diff --git a/data/1.50/unsafe_cell_get_mut.md b/data/1.50/unsafe_cell_get_mut.md deleted file mode 100644 index 66e9d9e..0000000 --- a/data/1.50/unsafe_cell_get_mut.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`UnsafeCell::get_mut`" -flag = "unsafe_cell_get_mut" -impl_pr_id = 76936 -tracking_issue_id = 76943 -stabilization_pr_id = 79485 -+++ diff --git a/data/1.50/unsafe_cell_get_mut.toml b/data/1.50/unsafe_cell_get_mut.toml new file mode 100644 index 0000000..399221d --- /dev/null +++ b/data/1.50/unsafe_cell_get_mut.toml @@ -0,0 +1,5 @@ +title = "`UnsafeCell::get_mut`" +flag = "unsafe_cell_get_mut" +impl_pr_id = 76936 +tracking_issue_id = 76943 +stabilization_pr_id = 79485 diff --git a/data/1.51/arc_decrement_strong_count.md b/data/1.51/arc_decrement_strong_count.md deleted file mode 100644 index 0f1a6eb..0000000 --- a/data/1.51/arc_decrement_strong_count.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`Arc::decrement_strong_count`" -flag = "arc_mutate_strong_count" -impl_pr_id = 70733 -tracking_issue_id = 71983 -stabilization_pr_id = 79285 -+++ diff --git a/data/1.51/arc_decrement_strong_count.toml b/data/1.51/arc_decrement_strong_count.toml new file mode 100644 index 0000000..5047ffd --- /dev/null +++ b/data/1.51/arc_decrement_strong_count.toml @@ -0,0 +1,5 @@ +title = "`Arc::decrement_strong_count`" +flag = "arc_mutate_strong_count" +impl_pr_id = 70733 +tracking_issue_id = 71983 +stabilization_pr_id = 79285 diff --git a/data/1.51/arc_increment_strong_count.md b/data/1.51/arc_increment_strong_count.md deleted file mode 100644 index cdd12fc..0000000 --- a/data/1.51/arc_increment_strong_count.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`Arc::increment_strong_count`" -flag = "arc_mutate_strong_count" -impl_pr_id = 70733 -tracking_issue_id = 71983 -stabilization_pr_id = 79285 -+++ diff --git a/data/1.51/arc_increment_strong_count.toml b/data/1.51/arc_increment_strong_count.toml new file mode 100644 index 0000000..0555baf --- /dev/null +++ b/data/1.51/arc_increment_strong_count.toml @@ -0,0 +1,5 @@ +title = "`Arc::increment_strong_count`" +flag = "arc_mutate_strong_count" +impl_pr_id = 70733 +tracking_issue_id = 71983 +stabilization_pr_id = 79285 diff --git a/data/1.51/array_value_iter.md b/data/1.51/array_value_iter.md deleted file mode 100644 index b725019..0000000 --- a/data/1.51/array_value_iter.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "by-value `[T; N]` iterator `core::array::IntoIter`" -flag = "array_value_iter" -impl_pr_id = 62959 -tracking_issue_id = 65798 -stabilization_pr_id = 80470 -+++ diff --git a/data/1.51/array_value_iter.toml b/data/1.51/array_value_iter.toml new file mode 100644 index 0000000..310e057 --- /dev/null +++ b/data/1.51/array_value_iter.toml @@ -0,0 +1,5 @@ +title = "by-value `[T; N]` iterator `core::array::IntoIter`" +flag = "array_value_iter" +impl_pr_id = 62959 +tracking_issue_id = 65798 +stabilization_pr_id = 80470 diff --git a/data/1.51/box_send_sync_any_downcast.md b/data/1.51/box_send_sync_any_downcast.md deleted file mode 100644 index 5a849bf..0000000 --- a/data/1.51/box_send_sync_any_downcast.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`Box::::downcast`" -flag = "box_send_sync_any_downcast" -impl_pr_id = 80945 -+++ diff --git a/data/1.51/box_send_sync_any_downcast.toml b/data/1.51/box_send_sync_any_downcast.toml new file mode 100644 index 0000000..a072308 --- /dev/null +++ b/data/1.51/box_send_sync_any_downcast.toml @@ -0,0 +1,3 @@ +title = "`Box::::downcast`" +flag = "box_send_sync_any_downcast" +impl_pr_id = 80945 diff --git a/data/1.51/empty_seek.md b/data/1.51/empty_seek.md deleted file mode 100644 index a496e03..0000000 --- a/data/1.51/empty_seek.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`io::Seek` implementation for `io::Empty`" -flag = "empty_seek" -impl_pr_id = 78044 -+++ diff --git a/data/1.51/empty_seek.toml b/data/1.51/empty_seek.toml new file mode 100644 index 0000000..7e39f80 --- /dev/null +++ b/data/1.51/empty_seek.toml @@ -0,0 +1,3 @@ +title = "`io::Seek` implementation for `io::Empty`" +flag = "empty_seek" +impl_pr_id = 78044 diff --git a/data/1.51/error_by_ref.md b/data/1.51/error_by_ref.md deleted file mode 100644 index 1655ec9..0000000 --- a/data/1.51/error_by_ref.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`Error` implementation for `&(impl Error)`" -flag = "error_by_ref" -impl_pr_id = 75180 -+++ diff --git a/data/1.51/error_by_ref.toml b/data/1.51/error_by_ref.toml new file mode 100644 index 0000000..abc4d1a --- /dev/null +++ b/data/1.51/error_by_ref.toml @@ -0,0 +1,3 @@ +title = "`Error` implementation for `&(impl Error)`" +flag = "error_by_ref" +impl_pr_id = 75180 diff --git a/data/1.51/iterator_reduce.md b/data/1.51/iterator_reduce.md deleted file mode 100644 index 028cb41..0000000 --- a/data/1.51/iterator_reduce.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`Iterator::reduce`" -flag = "iterator_fold_first" -impl_pr_id = 65222 -tracking_issue_id = 68125 -stabilization_pr_id = 79805 -+++ diff --git a/data/1.51/iterator_reduce.toml b/data/1.51/iterator_reduce.toml new file mode 100644 index 0000000..4aac735 --- /dev/null +++ b/data/1.51/iterator_reduce.toml @@ -0,0 +1,5 @@ +title = "`Iterator::reduce`" +flag = "iterator_fold_first" +impl_pr_id = 65222 +tracking_issue_id = 68125 +stabilization_pr_id = 79805 diff --git a/data/1.51/min_const_generics.md b/data/1.51/min_const_generics.md deleted file mode 100644 index 2f349b9..0000000 --- a/data/1.51/min_const_generics.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "simple const generics" -flag = "min_const_generics" -tracking_issue_id = 74878 -stabilization_pr_id = 79135 -doc_path = "reference/items/generics.html#const-generics" -+++ diff --git a/data/1.51/min_const_generics.toml b/data/1.51/min_const_generics.toml new file mode 100644 index 0000000..b3abb0f --- /dev/null +++ b/data/1.51/min_const_generics.toml @@ -0,0 +1,5 @@ +title = "simple const generics" +flag = "min_const_generics" +tracking_issue_id = 74878 +stabilization_pr_id = 79135 +doc_path = "reference/items/generics.html#const-generics" diff --git a/data/1.51/nonzero_div.md b/data/1.51/nonzero_div.md deleted file mode 100644 index feb7f9e..0000000 --- a/data/1.51/nonzero_div.md +++ /dev/null @@ -1,13 +0,0 @@ -+++ -title = "`Div` implementation for `u{0}`" -flag = "nonzero_div" -impl_pr_id = 79134 -items = [ - "impl Div for u8", - "impl Div for u16", - "impl Div for u32", - "impl Div for u64", - "impl Div for u128", - "impl Div for usize", -] -+++ diff --git a/data/1.51/nonzero_div.toml b/data/1.51/nonzero_div.toml new file mode 100644 index 0000000..79c295a --- /dev/null +++ b/data/1.51/nonzero_div.toml @@ -0,0 +1,11 @@ +title = "`Div` implementation for `u{0}`" +flag = "nonzero_div" +impl_pr_id = 79134 +items = [ + "impl Div for u8", + "impl Div for u16", + "impl Div for u32", + "impl Div for u64", + "impl Div for u128", + "impl Div for usize", +] diff --git a/data/1.51/nonzero_rem.md b/data/1.51/nonzero_rem.md deleted file mode 100644 index a492156..0000000 --- a/data/1.51/nonzero_rem.md +++ /dev/null @@ -1,13 +0,0 @@ -+++ -title = "`Rem` implementation for `u{0}`" -flag = "nonzero_div" -impl_pr_id = 79134 -items = [ - "impl Rem for u8", - "impl Rem for u16", - "impl Rem for u32", - "impl Rem for u64", - "impl Rem for u128", - "impl Rem for usize", -] -+++ diff --git a/data/1.51/nonzero_rem.toml b/data/1.51/nonzero_rem.toml new file mode 100644 index 0000000..c6a9884 --- /dev/null +++ b/data/1.51/nonzero_rem.toml @@ -0,0 +1,11 @@ +title = "`Rem` implementation for `u{0}`" +flag = "nonzero_div" +impl_pr_id = 79134 +items = [ + "impl Rem for u8", + "impl Rem for u16", + "impl Rem for u32", + "impl Rem for u64", + "impl Rem for u128", + "impl Rem for usize", +] diff --git a/data/1.51/poll_map_err.md b/data/1.51/poll_map_err.md deleted file mode 100644 index cb4e147..0000000 --- a/data/1.51/poll_map_err.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`Poll>>::map_err`" -flag = "poll_map" -tracking_issue_id = 63514 -stabilization_pr_id = 80968 -+++ diff --git a/data/1.51/poll_map_err.toml b/data/1.51/poll_map_err.toml new file mode 100644 index 0000000..cd1c7f9 --- /dev/null +++ b/data/1.51/poll_map_err.toml @@ -0,0 +1,4 @@ +title = "`Poll>>::map_err`" +flag = "poll_map" +tracking_issue_id = 63514 +stabilization_pr_id = 80968 diff --git a/data/1.51/poll_map_ok.md b/data/1.51/poll_map_ok.md deleted file mode 100644 index efc4b66..0000000 --- a/data/1.51/poll_map_ok.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`Poll>>::map_ok`" -flag = "poll_map" -tracking_issue_id = 63514 -stabilization_pr_id = 80968 -+++ diff --git a/data/1.51/poll_map_ok.toml b/data/1.51/poll_map_ok.toml new file mode 100644 index 0000000..5b607f6 --- /dev/null +++ b/data/1.51/poll_map_ok.toml @@ -0,0 +1,4 @@ +title = "`Poll>>::map_ok`" +flag = "poll_map" +tracking_issue_id = 63514 +stabilization_pr_id = 80968 diff --git a/data/1.51/seek_stream_position.md b/data/1.51/seek_stream_position.md deleted file mode 100644 index 19290a3..0000000 --- a/data/1.51/seek_stream_position.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`io::Seek::stream_position`" -flag = "seek_convenience" -impl_pr_id = 58422 -tracking_issue_id = 59359 -stabilization_pr_id = 70904 -+++ diff --git a/data/1.51/seek_stream_position.toml b/data/1.51/seek_stream_position.toml new file mode 100644 index 0000000..cd88cfa --- /dev/null +++ b/data/1.51/seek_stream_position.toml @@ -0,0 +1,5 @@ +title = "`io::Seek::stream_position`" +flag = "seek_convenience" +impl_pr_id = 58422 +tracking_issue_id = 59359 +stabilization_pr_id = 70904 diff --git a/data/1.51/slice_fill_with.md b/data/1.51/slice_fill_with.md deleted file mode 100644 index cb0cd3f..0000000 --- a/data/1.51/slice_fill_with.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`slice::fill_with`" -flag = "slice_fill_with" -impl_pr_id = 79222 -tracking_issue_id = 79221 -stabilization_pr_id = 81048 -+++ diff --git a/data/1.51/slice_fill_with.toml b/data/1.51/slice_fill_with.toml new file mode 100644 index 0000000..c8b75ca --- /dev/null +++ b/data/1.51/slice_fill_with.toml @@ -0,0 +1,5 @@ +title = "`slice::fill_with`" +flag = "slice_fill_with" +impl_pr_id = 79222 +tracking_issue_id = 79221 +stabilization_pr_id = 81048 diff --git a/data/1.51/slice_strip_prefix.md b/data/1.51/slice_strip_prefix.md deleted file mode 100644 index 5557eaa..0000000 --- a/data/1.51/slice_strip_prefix.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`slice::strip_prefix`" -flag = "slice_strip" -impl_pr_id = 73414 -tracking_issue_id = 73413 -stabilization_pr_id = 77853 -+++ diff --git a/data/1.51/slice_strip_prefix.toml b/data/1.51/slice_strip_prefix.toml new file mode 100644 index 0000000..ef93a88 --- /dev/null +++ b/data/1.51/slice_strip_prefix.toml @@ -0,0 +1,5 @@ +title = "`slice::strip_prefix`" +flag = "slice_strip" +impl_pr_id = 73414 +tracking_issue_id = 73413 +stabilization_pr_id = 77853 diff --git a/data/1.51/slice_strip_suffix.md b/data/1.51/slice_strip_suffix.md deleted file mode 100644 index 666cc18..0000000 --- a/data/1.51/slice_strip_suffix.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`slice::strip_suffix`" -flag = "slice_strip" -impl_pr_id = 73414 -tracking_issue_id = 73413 -stabilization_pr_id = 77853 -+++ diff --git a/data/1.51/slice_strip_suffix.toml b/data/1.51/slice_strip_suffix.toml new file mode 100644 index 0000000..64885e7 --- /dev/null +++ b/data/1.51/slice_strip_suffix.toml @@ -0,0 +1,5 @@ +title = "`slice::strip_suffix`" +flag = "slice_strip" +impl_pr_id = 73414 +tracking_issue_id = 73413 +stabilization_pr_id = 77853 diff --git a/data/1.51/str_as_mut.md b/data/1.51/str_as_mut.md deleted file mode 100644 index 866940a..0000000 --- a/data/1.51/str_as_mut.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`AsMut` implementation for `str`" -flag = "as_mut_str_for_str" -impl_pr_id = 80279 -+++ diff --git a/data/1.51/str_as_mut.toml b/data/1.51/str_as_mut.toml new file mode 100644 index 0000000..c37eac7 --- /dev/null +++ b/data/1.51/str_as_mut.toml @@ -0,0 +1,3 @@ +title = "`AsMut` implementation for `str`" +flag = "as_mut_str_for_str" +impl_pr_id = 80279 diff --git a/data/1.51/unsigned_abs.md b/data/1.51/unsigned_abs.md deleted file mode 100644 index 4f1b550..0000000 --- a/data/1.51/unsigned_abs.md +++ /dev/null @@ -1,15 +0,0 @@ -+++ -title = "the `unsigned_abs` method on signed integers" -flag = "unsigned_abs" -impl_pr_id = 74759 -tracking_issue_id = 74913 -stabilization_pr_id = 80959 -items = [ - "i8::unsigned_abs", - "i16::unsigned_abs", - "i32::unsigned_abs", - "i64::unsigned_abs", - "i128::unsigned_abs", - "isize::unsigned_abs", -] -+++ diff --git a/data/1.51/unsigned_abs.toml b/data/1.51/unsigned_abs.toml new file mode 100644 index 0000000..0d9579b --- /dev/null +++ b/data/1.51/unsigned_abs.toml @@ -0,0 +1,13 @@ +title = "the `unsigned_abs` method on signed integers" +flag = "unsigned_abs" +impl_pr_id = 74759 +tracking_issue_id = 74913 +stabilization_pr_id = 80959 +items = [ + "i8::unsigned_abs", + "i16::unsigned_abs", + "i32::unsigned_abs", + "i64::unsigned_abs", + "i128::unsigned_abs", + "isize::unsigned_abs", +] diff --git a/data/1.51/wake_trait.md b/data/1.51/wake_trait.md deleted file mode 100644 index 5ec8839..0000000 --- a/data/1.51/wake_trait.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "the `Wake` trait" -flag = "wake_trait" -tracking_issue_id = 69912 -stabilization_pr_id = 74304 -+++ diff --git a/data/1.51/wake_trait.toml b/data/1.51/wake_trait.toml new file mode 100644 index 0000000..781916d --- /dev/null +++ b/data/1.51/wake_trait.toml @@ -0,0 +1,4 @@ +title = "the `Wake` trait" +flag = "wake_trait" +tracking_issue_id = 69912 +stabilization_pr_id = 74304 diff --git a/data/1.52/arc_error.md b/data/1.52/arc_error.md deleted file mode 100644 index a2e1e48..0000000 --- a/data/1.52/arc_error.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`Error` implementation for `Arc`" -flag = "arc_error" -impl_pr_id = 80553 -+++ diff --git a/data/1.52/arc_error.toml b/data/1.52/arc_error.toml new file mode 100644 index 0000000..3d6de3d --- /dev/null +++ b/data/1.52/arc_error.toml @@ -0,0 +1,3 @@ +title = "`Error` implementation for `Arc`" +flag = "arc_error" +impl_pr_id = 80553 diff --git a/data/1.52/char_partial_eq_punct.md b/data/1.52/char_partial_eq_punct.md deleted file mode 100644 index 17e5f57..0000000 --- a/data/1.52/char_partial_eq_punct.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`PartialEq` implementation for `char`" -impl_pr_id = 80595 -+++ diff --git a/data/1.52/char_partial_eq_punct.toml b/data/1.52/char_partial_eq_punct.toml new file mode 100644 index 0000000..01490a0 --- /dev/null +++ b/data/1.52/char_partial_eq_punct.toml @@ -0,0 +1,2 @@ +title = "`PartialEq` implementation for `char`" +impl_pr_id = 80595 diff --git a/data/1.52/const_char_eq_ignore_ascii_case.md b/data/1.52/const_char_eq_ignore_ascii_case.md deleted file mode 100644 index 4366b55..0000000 --- a/data/1.52/const_char_eq_ignore_ascii_case.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`char::eq_ignore_ascii_case` as `const fn`" -impl_pr_id = 82078 -flag = "const_ascii_methods_on_intrinsics" -+++ diff --git a/data/1.52/const_char_eq_ignore_ascii_case.toml b/data/1.52/const_char_eq_ignore_ascii_case.toml new file mode 100644 index 0000000..cf8fe77 --- /dev/null +++ b/data/1.52/const_char_eq_ignore_ascii_case.toml @@ -0,0 +1,3 @@ +title = "`char::eq_ignore_ascii_case` as `const fn`" +impl_pr_id = 82078 +flag = "const_ascii_methods_on_intrinsics" diff --git a/data/1.52/const_char_len_utf16.md b/data/1.52/const_char_len_utf16.md deleted file mode 100644 index ea1388d..0000000 --- a/data/1.52/const_char_len_utf16.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`char::len_utf16` as `const fn`" -impl_pr_id = 82078 -flag = "const_char_len_utf" -+++ diff --git a/data/1.52/const_char_len_utf16.toml b/data/1.52/const_char_len_utf16.toml new file mode 100644 index 0000000..37a87ea --- /dev/null +++ b/data/1.52/const_char_len_utf16.toml @@ -0,0 +1,3 @@ +title = "`char::len_utf16` as `const fn`" +impl_pr_id = 82078 +flag = "const_char_len_utf" diff --git a/data/1.52/const_char_len_utf8.md b/data/1.52/const_char_len_utf8.md deleted file mode 100644 index 7ff4e71..0000000 --- a/data/1.52/const_char_len_utf8.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`char::len_utf8` as `const fn`" -impl_pr_id = 82078 -flag = "const_char_len_utf" -+++ diff --git a/data/1.52/const_char_len_utf8.toml b/data/1.52/const_char_len_utf8.toml new file mode 100644 index 0000000..daf5dbe --- /dev/null +++ b/data/1.52/const_char_len_utf8.toml @@ -0,0 +1,3 @@ +title = "`char::len_utf8` as `const fn`" +impl_pr_id = 82078 +flag = "const_char_len_utf" diff --git a/data/1.52/const_char_to_ascii_lowercase.md b/data/1.52/const_char_to_ascii_lowercase.md deleted file mode 100644 index 468c9e0..0000000 --- a/data/1.52/const_char_to_ascii_lowercase.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`char::to_ascii_lowercase` as `const fn`" -impl_pr_id = 82078 -flag = "const_ascii_methods_on_intrinsics" -+++ diff --git a/data/1.52/const_char_to_ascii_lowercase.toml b/data/1.52/const_char_to_ascii_lowercase.toml new file mode 100644 index 0000000..68a1c10 --- /dev/null +++ b/data/1.52/const_char_to_ascii_lowercase.toml @@ -0,0 +1,3 @@ +title = "`char::to_ascii_lowercase` as `const fn`" +impl_pr_id = 82078 +flag = "const_ascii_methods_on_intrinsics" diff --git a/data/1.52/const_char_to_ascii_uppercase.md b/data/1.52/const_char_to_ascii_uppercase.md deleted file mode 100644 index 8b5bdc2..0000000 --- a/data/1.52/const_char_to_ascii_uppercase.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`char::to_ascii_uppercase` as `const fn`" -impl_pr_id = 82078 -flag = "const_ascii_methods_on_intrinsics" -+++ diff --git a/data/1.52/const_char_to_ascii_uppercase.toml b/data/1.52/const_char_to_ascii_uppercase.toml new file mode 100644 index 0000000..254055f --- /dev/null +++ b/data/1.52/const_char_to_ascii_uppercase.toml @@ -0,0 +1,3 @@ +title = "`char::to_ascii_uppercase` as `const fn`" +impl_pr_id = 82078 +flag = "const_ascii_methods_on_intrinsics" diff --git a/data/1.52/const_u8_eq_ignore_ascii_case.md b/data/1.52/const_u8_eq_ignore_ascii_case.md deleted file mode 100644 index 3723237..0000000 --- a/data/1.52/const_u8_eq_ignore_ascii_case.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`u8::eq_ignore_ascii_case` as `const fn`" -impl_pr_id = 82078 -flag = "const_ascii_methods_on_intrinsics" -+++ diff --git a/data/1.52/const_u8_eq_ignore_ascii_case.toml b/data/1.52/const_u8_eq_ignore_ascii_case.toml new file mode 100644 index 0000000..708957c --- /dev/null +++ b/data/1.52/const_u8_eq_ignore_ascii_case.toml @@ -0,0 +1,3 @@ +title = "`u8::eq_ignore_ascii_case` as `const fn`" +impl_pr_id = 82078 +flag = "const_ascii_methods_on_intrinsics" diff --git a/data/1.52/const_u8_to_ascii_lowercase.md b/data/1.52/const_u8_to_ascii_lowercase.md deleted file mode 100644 index 630049a..0000000 --- a/data/1.52/const_u8_to_ascii_lowercase.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`u8::to_ascii_lowercase` as `const fn`" -impl_pr_id = 82078 -flag = "const_ascii_methods_on_intrinsics" -+++ diff --git a/data/1.52/const_u8_to_ascii_lowercase.toml b/data/1.52/const_u8_to_ascii_lowercase.toml new file mode 100644 index 0000000..393047b --- /dev/null +++ b/data/1.52/const_u8_to_ascii_lowercase.toml @@ -0,0 +1,3 @@ +title = "`u8::to_ascii_lowercase` as `const fn`" +impl_pr_id = 82078 +flag = "const_ascii_methods_on_intrinsics" diff --git a/data/1.52/const_u8_to_ascii_uppercase.md b/data/1.52/const_u8_to_ascii_uppercase.md deleted file mode 100644 index 8436322..0000000 --- a/data/1.52/const_u8_to_ascii_uppercase.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`u8::to_ascii_uppercase` as `const fn`" -impl_pr_id = 82078 -flag = "const_ascii_methods_on_intrinsics" -+++ diff --git a/data/1.52/const_u8_to_ascii_uppercase.toml b/data/1.52/const_u8_to_ascii_uppercase.toml new file mode 100644 index 0000000..9a5b654 --- /dev/null +++ b/data/1.52/const_u8_to_ascii_uppercase.toml @@ -0,0 +1,3 @@ +title = "`u8::to_ascii_uppercase` as `const fn`" +impl_pr_id = 82078 +flag = "const_ascii_methods_on_intrinsics" diff --git a/data/1.52/str_rsplit_once.md b/data/1.52/str_rsplit_once.md deleted file mode 100644 index 5a6810f..0000000 --- a/data/1.52/str_rsplit_once.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`str::rsplit_once`" -flag = "str_split_once" -impl_pr_id = 74707 -tracking_issue_id = 74773 -stabilization_pr_id = 81940 -+++ diff --git a/data/1.52/str_rsplit_once.toml b/data/1.52/str_rsplit_once.toml new file mode 100644 index 0000000..725612f --- /dev/null +++ b/data/1.52/str_rsplit_once.toml @@ -0,0 +1,5 @@ +title = "`str::rsplit_once`" +flag = "str_split_once" +impl_pr_id = 74707 +tracking_issue_id = 74773 +stabilization_pr_id = 81940 diff --git a/data/1.52/str_split_once.md b/data/1.52/str_split_once.md deleted file mode 100644 index 8b1a862..0000000 --- a/data/1.52/str_split_once.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`str::split_once`" -flag = "str_split_once" -impl_pr_id = 74707 -tracking_issue_id = 74773 -stabilization_pr_id = 81940 -+++ diff --git a/data/1.52/str_split_once.toml b/data/1.52/str_split_once.toml new file mode 100644 index 0000000..a281dc7 --- /dev/null +++ b/data/1.52/str_split_once.toml @@ -0,0 +1,5 @@ +title = "`str::split_once`" +flag = "str_split_once" +impl_pr_id = 74707 +tracking_issue_id = 74773 +stabilization_pr_id = 81940 diff --git a/data/1.53/array_from_mut.md b/data/1.53/array_from_mut.md deleted file mode 100644 index c132857..0000000 --- a/data/1.53/array_from_mut.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`std::array::from_mut`" -flag = "array_from_ref" -impl_pr_id = 77074 -tracking_issue_id = 77101 -stabilization_pr_id = 84105 -+++ diff --git a/data/1.53/array_from_mut.toml b/data/1.53/array_from_mut.toml new file mode 100644 index 0000000..a6a5506 --- /dev/null +++ b/data/1.53/array_from_mut.toml @@ -0,0 +1,5 @@ +title = "`std::array::from_mut`" +flag = "array_from_ref" +impl_pr_id = 77074 +tracking_issue_id = 77101 +stabilization_pr_id = 84105 diff --git a/data/1.53/array_from_ref.md b/data/1.53/array_from_ref.md deleted file mode 100644 index 79278c3..0000000 --- a/data/1.53/array_from_ref.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`std::array::from_ref`" -flag = "array_from_ref" -impl_pr_id = 77074 -tracking_issue_id = 77101 -stabilization_pr_id = 84105 -+++ diff --git a/data/1.53/array_from_ref.toml b/data/1.53/array_from_ref.toml new file mode 100644 index 0000000..6feb741 --- /dev/null +++ b/data/1.53/array_from_ref.toml @@ -0,0 +1,5 @@ +title = "`std::array::from_ref`" +flag = "array_from_ref" +impl_pr_id = 77074 +tracking_issue_id = 77101 +stabilization_pr_id = 84105 diff --git a/data/1.53/atomic_bool_fetch_update.md b/data/1.53/atomic_bool_fetch_update.md deleted file mode 100644 index 297ac16..0000000 --- a/data/1.53/atomic_bool_fetch_update.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`AtomicBool::fetch_update`" -flag = "atomic_fetch_update" -impl_pr_id = 78637 -tracking_issue_id = 78639 -stabilization_pr_id = 84085 -+++ diff --git a/data/1.53/atomic_bool_fetch_update.toml b/data/1.53/atomic_bool_fetch_update.toml new file mode 100644 index 0000000..03baea6 --- /dev/null +++ b/data/1.53/atomic_bool_fetch_update.toml @@ -0,0 +1,5 @@ +title = "`AtomicBool::fetch_update`" +flag = "atomic_fetch_update" +impl_pr_id = 78637 +tracking_issue_id = 78639 +stabilization_pr_id = 84085 diff --git a/data/1.53/atomic_ptr_fetch_update.md b/data/1.53/atomic_ptr_fetch_update.md deleted file mode 100644 index 2c14096..0000000 --- a/data/1.53/atomic_ptr_fetch_update.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`AtomicPtr::fetch_update`" -flag = "atomic_fetch_update" -impl_pr_id = 78637 -tracking_issue_id = 78639 -stabilization_pr_id = 84085 -+++ diff --git a/data/1.53/atomic_ptr_fetch_update.toml b/data/1.53/atomic_ptr_fetch_update.toml new file mode 100644 index 0000000..dbbef64 --- /dev/null +++ b/data/1.53/atomic_ptr_fetch_update.toml @@ -0,0 +1,5 @@ +title = "`AtomicPtr::fetch_update`" +flag = "atomic_fetch_update" +impl_pr_id = 78637 +tracking_issue_id = 78639 +stabilization_pr_id = 84085 diff --git a/data/1.53/btreemap_retain.md b/data/1.53/btreemap_retain.md deleted file mode 100644 index 132cddd..0000000 --- a/data/1.53/btreemap_retain.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`BTreeMap::retain`" -flag = "btree_retain" -impl_pr_id = 79026 -tracking_issue_id = 79025 -stabilization_pr_id = 84121 -+++ diff --git a/data/1.53/btreemap_retain.toml b/data/1.53/btreemap_retain.toml new file mode 100644 index 0000000..1466d94 --- /dev/null +++ b/data/1.53/btreemap_retain.toml @@ -0,0 +1,5 @@ +title = "`BTreeMap::retain`" +flag = "btree_retain" +impl_pr_id = 79026 +tracking_issue_id = 79025 +stabilization_pr_id = 84121 diff --git a/data/1.53/btreeset_retain.md b/data/1.53/btreeset_retain.md deleted file mode 100644 index 6213ae2..0000000 --- a/data/1.53/btreeset_retain.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`BTreeSet::retain`" -flag = "btree_retain" -impl_pr_id = 79026 -tracking_issue_id = 79025 -stabilization_pr_id = 84121 -+++ diff --git a/data/1.53/btreeset_retain.toml b/data/1.53/btreeset_retain.toml new file mode 100644 index 0000000..d912d88 --- /dev/null +++ b/data/1.53/btreeset_retain.toml @@ -0,0 +1,5 @@ +title = "`BTreeSet::retain`" +flag = "btree_retain" +impl_pr_id = 79026 +tracking_issue_id = 79025 +stabilization_pr_id = 84121 diff --git a/data/1.53/bufreader_seek_relative.md b/data/1.53/bufreader_seek_relative.md deleted file mode 100644 index a5ece8f..0000000 --- a/data/1.53/bufreader_seek_relative.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`BufReader::seek_relative`" -flag = "bufreader_seek_relative" -tracking_issue_id = 31100 -stabilization_pr_id = 82992 -+++ diff --git a/data/1.53/bufreader_seek_relative.toml b/data/1.53/bufreader_seek_relative.toml new file mode 100644 index 0000000..e7fb7c6 --- /dev/null +++ b/data/1.53/bufreader_seek_relative.toml @@ -0,0 +1,4 @@ +title = "`BufReader::seek_relative`" +flag = "bufreader_seek_relative" +tracking_issue_id = 31100 +stabilization_pr_id = 82992 diff --git a/data/1.53/duration_is_zero.md b/data/1.53/duration_is_zero.md deleted file mode 100644 index 7237f4f..0000000 --- a/data/1.53/duration_is_zero.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`Duration::is_zero`" -flag = "duration_zero" -impl_pr_id = 72790 -tracking_issue_id = 73544 -stabilization_pr_id = 84084 -+++ diff --git a/data/1.53/duration_is_zero.toml b/data/1.53/duration_is_zero.toml new file mode 100644 index 0000000..b54519f --- /dev/null +++ b/data/1.53/duration_is_zero.toml @@ -0,0 +1,5 @@ +title = "`Duration::is_zero`" +flag = "duration_zero" +impl_pr_id = 72790 +tracking_issue_id = 73544 +stabilization_pr_id = 84084 diff --git a/data/1.53/duration_zero.md b/data/1.53/duration_zero.md deleted file mode 100644 index 953f5c1..0000000 --- a/data/1.53/duration_zero.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`Duration::ZERO`" -flag = "duration_zero" -impl_pr_id = 72790 -tracking_issue_id = 73544 -stabilization_pr_id = 84084 -+++ diff --git a/data/1.53/duration_zero.toml b/data/1.53/duration_zero.toml new file mode 100644 index 0000000..d82289c --- /dev/null +++ b/data/1.53/duration_zero.toml @@ -0,0 +1,5 @@ +title = "`Duration::ZERO`" +flag = "duration_zero" +impl_pr_id = 72790 +tracking_issue_id = 73544 +stabilization_pr_id = 84084 diff --git a/data/1.53/float_is_subnormal.md b/data/1.53/float_is_subnormal.md deleted file mode 100644 index c627882..0000000 --- a/data/1.53/float_is_subnormal.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`{f32, f64}::is_subnormal`" -flag = "is_subnormal" -impl_pr_id = 76941 -tracking_issue_id = 79288 -stabilization_pr_id = 84086 -+++ diff --git a/data/1.53/float_is_subnormal.toml b/data/1.53/float_is_subnormal.toml new file mode 100644 index 0000000..d044a4c --- /dev/null +++ b/data/1.53/float_is_subnormal.toml @@ -0,0 +1,5 @@ +title = "`{f32, f64}::is_subnormal`" +flag = "is_subnormal" +impl_pr_id = 76941 +tracking_issue_id = 79288 +stabilization_pr_id = 84086 diff --git a/data/1.53/int_bits_const.md b/data/1.53/int_bits_const.md deleted file mode 100644 index 422b065..0000000 --- a/data/1.53/int_bits_const.md +++ /dev/null @@ -1,22 +0,0 @@ -+++ -title = "Associated `BITS` constants for integer types" -flag = "int_bits_const" -impl_pr_id = 76492 -tracking_issue_id = 76904 -stabilization_pr_id = 82565 -items = [ - "i8::BITS", - "i16::BITS", - "i32::BITS", - "i64::BITS", - "i128::BITS", - "isize::BITS", - - "u8::BITS", - "u16::BITS", - "u32::BITS", - "u64::BITS", - "u128::BITS", - "usize::BITS", -] -+++ diff --git a/data/1.53/int_bits_const.toml b/data/1.53/int_bits_const.toml new file mode 100644 index 0000000..072c55d --- /dev/null +++ b/data/1.53/int_bits_const.toml @@ -0,0 +1,20 @@ +title = "Associated `BITS` constants for integer types" +flag = "int_bits_const" +impl_pr_id = 76492 +tracking_issue_id = 76904 +stabilization_pr_id = 82565 +items = [ + "i8::BITS", + "i16::BITS", + "i32::BITS", + "i64::BITS", + "i128::BITS", + "isize::BITS", + + "u8::BITS", + "u16::BITS", + "u32::BITS", + "u64::BITS", + "u128::BITS", + "usize::BITS", +] diff --git a/data/1.53/non_ascii_idents.md b/data/1.53/non_ascii_idents.md deleted file mode 100644 index 6c766fa..0000000 --- a/data/1.53/non_ascii_idents.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "non-ASCII identifiers" -flag = "non_ascii_idents" -tracking_issue_id = 55467 -stabilization_pr_id = 83799 -doc_path = "beta/reference/identifiers.html" -+++ diff --git a/data/1.53/non_ascii_idents.toml b/data/1.53/non_ascii_idents.toml new file mode 100644 index 0000000..485793f --- /dev/null +++ b/data/1.53/non_ascii_idents.toml @@ -0,0 +1,5 @@ +title = "non-ASCII identifiers" +flag = "non_ascii_idents" +tracking_issue_id = 55467 +stabilization_pr_id = 83799 +doc_path = "beta/reference/identifiers.html" diff --git a/data/1.53/nonzero_leading_zeros.md b/data/1.53/nonzero_leading_zeros.md deleted file mode 100644 index 21bbbc2..0000000 --- a/data/1.53/nonzero_leading_zeros.md +++ /dev/null @@ -1,22 +0,0 @@ -+++ -title = "`NonZero*::leading_zeros`" -flag = "nonzero_leading_trailing_zeros" -impl_pr_id = 79114 -tracking_issue_id = 79143 -stabilization_pr_id = 84082 -items = [ - "NonZeroI8::leading_zeros", - "NonZeroI16::leading_zeros", - "NonZeroI32::leading_zeros", - "NonZeroI64::leading_zeros", - "NonZeroI128::leading_zeros", - "NonZeroIsize::leading_zeros", - - "NonZeroU8::leading_zeros", - "NonZeroU16::leading_zeros", - "NonZeroU32::leading_zeros", - "NonZeroU64::leading_zeros", - "NonZeroU128::leading_zeros", - "NonZeroUsize::leading_zeros", -] -+++ diff --git a/data/1.53/nonzero_leading_zeros.toml b/data/1.53/nonzero_leading_zeros.toml new file mode 100644 index 0000000..6be4079 --- /dev/null +++ b/data/1.53/nonzero_leading_zeros.toml @@ -0,0 +1,20 @@ +title = "`NonZero*::leading_zeros`" +flag = "nonzero_leading_trailing_zeros" +impl_pr_id = 79114 +tracking_issue_id = 79143 +stabilization_pr_id = 84082 +items = [ + "NonZeroI8::leading_zeros", + "NonZeroI16::leading_zeros", + "NonZeroI32::leading_zeros", + "NonZeroI64::leading_zeros", + "NonZeroI128::leading_zeros", + "NonZeroIsize::leading_zeros", + + "NonZeroU8::leading_zeros", + "NonZeroU16::leading_zeros", + "NonZeroU32::leading_zeros", + "NonZeroU64::leading_zeros", + "NonZeroU128::leading_zeros", + "NonZeroUsize::leading_zeros", +] diff --git a/data/1.53/nonzero_trailing_zeros.md b/data/1.53/nonzero_trailing_zeros.md deleted file mode 100644 index 73afa8e..0000000 --- a/data/1.53/nonzero_trailing_zeros.md +++ /dev/null @@ -1,22 +0,0 @@ -+++ -title = "`NonZero*::trailing_zeros`" -flag = "nonzero_leading_trailing_zeros" -impl_pr_id = 79114 -tracking_issue_id = 79143 -stabilization_pr_id = 84082 -items = [ - "NonZeroI8::trailing_zeros", - "NonZeroI16::trailing_zeros", - "NonZeroI32::trailing_zeros", - "NonZeroI64::trailing_zeros", - "NonZeroI128::trailing_zeros", - "NonZeroIsize::trailing_zeros", - - "NonZeroU8::trailing_zeros", - "NonZeroU16::trailing_zeros", - "NonZeroU32::trailing_zeros", - "NonZeroU64::trailing_zeros", - "NonZeroU128::trailing_zeros", - "NonZeroUsize::trailing_zeros", -] -+++ diff --git a/data/1.53/nonzero_trailing_zeros.toml b/data/1.53/nonzero_trailing_zeros.toml new file mode 100644 index 0000000..8babc0f --- /dev/null +++ b/data/1.53/nonzero_trailing_zeros.toml @@ -0,0 +1,20 @@ +title = "`NonZero*::trailing_zeros`" +flag = "nonzero_leading_trailing_zeros" +impl_pr_id = 79114 +tracking_issue_id = 79143 +stabilization_pr_id = 84082 +items = [ + "NonZeroI8::trailing_zeros", + "NonZeroI16::trailing_zeros", + "NonZeroI32::trailing_zeros", + "NonZeroI64::trailing_zeros", + "NonZeroI128::trailing_zeros", + "NonZeroIsize::trailing_zeros", + + "NonZeroU8::trailing_zeros", + "NonZeroU16::trailing_zeros", + "NonZeroU32::trailing_zeros", + "NonZeroU64::trailing_zeros", + "NonZeroU128::trailing_zeros", + "NonZeroUsize::trailing_zeros", +] diff --git a/data/1.53/or_patterns.md b/data/1.53/or_patterns.md deleted file mode 100644 index 01152bc..0000000 --- a/data/1.53/or_patterns.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "nested or-patterns" -flag = "or_patterns" -tracking_issue_id = 54883 -stabilization_pr_id = 79278 -+++ diff --git a/data/1.53/or_patterns.toml b/data/1.53/or_patterns.toml new file mode 100644 index 0000000..7d96b12 --- /dev/null +++ b/data/1.53/or_patterns.toml @@ -0,0 +1,4 @@ +title = "nested or-patterns" +flag = "or_patterns" +tracking_issue_id = 54883 +stabilization_pr_id = 79278 diff --git a/data/1.53/osstr_ascii.md b/data/1.53/osstr_ascii.md deleted file mode 100644 index d597ec4..0000000 --- a/data/1.53/osstr_ascii.md +++ /dev/null @@ -1,15 +0,0 @@ -+++ -title = "ASCII methods on `OsStr`" -flag = "osstring_ascii" -impl_pr_id = 69937 -tracking_issue_id = 70516 -stabilization_pr_id = 80193 -items = [ - "OsStr::make_ascii_lowercase", - "OsStr::make_ascii_uppercase", - "OsStr::to_ascii_lowercase", - "OsStr::to_ascii_uppercase", - "OsStr::is_ascii", - "OsStr::eq_ignore_ascii_case", -] -+++ diff --git a/data/1.53/osstr_ascii.toml b/data/1.53/osstr_ascii.toml new file mode 100644 index 0000000..d97bbd9 --- /dev/null +++ b/data/1.53/osstr_ascii.toml @@ -0,0 +1,13 @@ +title = "ASCII methods on `OsStr`" +flag = "osstring_ascii" +impl_pr_id = 69937 +tracking_issue_id = 70516 +stabilization_pr_id = 80193 +items = [ + "OsStr::make_ascii_lowercase", + "OsStr::make_ascii_uppercase", + "OsStr::to_ascii_lowercase", + "OsStr::to_ascii_uppercase", + "OsStr::is_ascii", + "OsStr::eq_ignore_ascii_case", +] diff --git a/data/1.53/slice_iter_mut_as_ref.md b/data/1.53/slice_iter_mut_as_ref.md deleted file mode 100644 index 6a54910..0000000 --- a/data/1.53/slice_iter_mut_as_ref.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`AsRef<[T]>` implementation for `slice::IterMut<'_, T>`" -flag = "slice_iter_mut_as_slice" -impl_pr_id = 82771 -+++ diff --git a/data/1.53/slice_iter_mut_as_ref.toml b/data/1.53/slice_iter_mut_as_ref.toml new file mode 100644 index 0000000..33244a8 --- /dev/null +++ b/data/1.53/slice_iter_mut_as_ref.toml @@ -0,0 +1,3 @@ +title = "`AsRef<[T]>` implementation for `slice::IterMut<'_, T>`" +flag = "slice_iter_mut_as_slice" +impl_pr_id = 82771 diff --git a/data/1.53/slice_iter_mut_as_slice.md b/data/1.53/slice_iter_mut_as_slice.md deleted file mode 100644 index 80742df..0000000 --- a/data/1.53/slice_iter_mut_as_slice.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`slice::IterMut::as_slice`" -flag = "slice_iter_mut_as_slice" -impl_pr_id = 58924 -tracking_issue_id = 58957 -stabilization_pr_id = 82771 -+++ diff --git a/data/1.53/slice_iter_mut_as_slice.toml b/data/1.53/slice_iter_mut_as_slice.toml new file mode 100644 index 0000000..9d4009a --- /dev/null +++ b/data/1.53/slice_iter_mut_as_slice.toml @@ -0,0 +1,5 @@ +title = "`slice::IterMut::as_slice`" +flag = "slice_iter_mut_as_slice" +impl_pr_id = 58924 +tracking_issue_id = 58957 +stabilization_pr_id = 82771 diff --git a/data/1.53/vec_extend_from_within.md b/data/1.53/vec_extend_from_within.md deleted file mode 100644 index ab11e6c..0000000 --- a/data/1.53/vec_extend_from_within.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`Vec::extend_from_within`" -flag = "vec_extent_from_within" -impl_pr_id = 79015 -tracking_issue_id = 81656 -stabilization_pr_id = 84642 -+++ diff --git a/data/1.53/vec_extend_from_within.toml b/data/1.53/vec_extend_from_within.toml new file mode 100644 index 0000000..756e1d8 --- /dev/null +++ b/data/1.53/vec_extend_from_within.toml @@ -0,0 +1,5 @@ +title = "`Vec::extend_from_within`" +flag = "vec_extent_from_within" +impl_pr_id = 79015 +tracking_issue_id = 81656 +stabilization_pr_id = 84642 diff --git a/data/1.54/btreemap_into_keys.md b/data/1.54/btreemap_into_keys.md deleted file mode 100644 index 327e507..0000000 --- a/data/1.54/btreemap_into_keys.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`BTreeMap::into_keys`" -flag = "map_into_keys_values" -impl_pr_id = 75163 -tracking_issue_id = 75294 -stabilization_pr_id = 84328 -+++ diff --git a/data/1.54/btreemap_into_keys.toml b/data/1.54/btreemap_into_keys.toml new file mode 100644 index 0000000..1e9a4f1 --- /dev/null +++ b/data/1.54/btreemap_into_keys.toml @@ -0,0 +1,5 @@ +title = "`BTreeMap::into_keys`" +flag = "map_into_keys_values" +impl_pr_id = 75163 +tracking_issue_id = 75294 +stabilization_pr_id = 84328 diff --git a/data/1.54/btreemap_into_values.md b/data/1.54/btreemap_into_values.md deleted file mode 100644 index 1461e1d..0000000 --- a/data/1.54/btreemap_into_values.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`BTreeMap::into_values`" -flag = "map_into_keys_values" -impl_pr_id = 75163 -tracking_issue_id = 75294 -stabilization_pr_id = 84328 -+++ diff --git a/data/1.54/btreemap_into_values.toml b/data/1.54/btreemap_into_values.toml new file mode 100644 index 0000000..1d8a48c --- /dev/null +++ b/data/1.54/btreemap_into_values.toml @@ -0,0 +1,5 @@ +title = "`BTreeMap::into_values`" +flag = "map_into_keys_values" +impl_pr_id = 75163 +tracking_issue_id = 75294 +stabilization_pr_id = 84328 diff --git a/data/1.54/extended_key_value_attrs.md b/data/1.54/extended_key_value_attrs.md deleted file mode 100644 index c7d62d5..0000000 --- a/data/1.54/extended_key_value_attrs.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "macro expansion in key-value attributes" -flag = "extended_key_value_attributes" -impl_pr_id = 78837 -tracking_issue_id = 78835 -stabilization_pr_id = 83366 -+++ diff --git a/data/1.54/extended_key_value_attrs.toml b/data/1.54/extended_key_value_attrs.toml new file mode 100644 index 0000000..8b218c3 --- /dev/null +++ b/data/1.54/extended_key_value_attrs.toml @@ -0,0 +1,5 @@ +title = "macro expansion in key-value attributes" +flag = "extended_key_value_attributes" +impl_pr_id = 78837 +tracking_issue_id = 78835 +stabilization_pr_id = 83366 diff --git a/data/1.54/hashmap_into_keys.md b/data/1.54/hashmap_into_keys.md deleted file mode 100644 index 4683c8c..0000000 --- a/data/1.54/hashmap_into_keys.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`HashMap::into_keys`" -flag = "map_into_keys_values" -impl_pr_id = 75163 -tracking_issue_id = 75294 -stabilization_pr_id = 84328 -+++ diff --git a/data/1.54/hashmap_into_keys.toml b/data/1.54/hashmap_into_keys.toml new file mode 100644 index 0000000..61d9245 --- /dev/null +++ b/data/1.54/hashmap_into_keys.toml @@ -0,0 +1,5 @@ +title = "`HashMap::into_keys`" +flag = "map_into_keys_values" +impl_pr_id = 75163 +tracking_issue_id = 75294 +stabilization_pr_id = 84328 diff --git a/data/1.54/hashmap_into_values.md b/data/1.54/hashmap_into_values.md deleted file mode 100644 index f57c220..0000000 --- a/data/1.54/hashmap_into_values.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`HashMap::into_values`" -flag = "map_into_keys_values" -impl_pr_id = 75163 -tracking_issue_id = 75294 -stabilization_pr_id = 84328 -+++ diff --git a/data/1.54/hashmap_into_values.toml b/data/1.54/hashmap_into_values.toml new file mode 100644 index 0000000..3430612 --- /dev/null +++ b/data/1.54/hashmap_into_values.toml @@ -0,0 +1,5 @@ +title = "`HashMap::into_values`" +flag = "map_into_keys_values" +impl_pr_id = 75163 +tracking_issue_id = 75294 +stabilization_pr_id = 84328 diff --git a/data/1.55/array_map.md b/data/1.55/array_map.md deleted file mode 100644 index f4c3198..0000000 --- a/data/1.55/array_map.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`[T; N]::map`" -flag = "array_map" -impl_pr_id = 75212 -tracking_issue_id = 75243 -stabilization_pr_id = 87174 -+++ diff --git a/data/1.55/array_map.toml b/data/1.55/array_map.toml new file mode 100644 index 0000000..94575e1 --- /dev/null +++ b/data/1.55/array_map.toml @@ -0,0 +1,5 @@ +title = "`[T; N]::map`" +flag = "array_map" +impl_pr_id = 75212 +tracking_issue_id = 75243 +stabilization_pr_id = 87174 diff --git a/data/1.55/control_flow.md b/data/1.55/control_flow.md deleted file mode 100644 index 5aa71a1..0000000 --- a/data/1.55/control_flow.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "the `ControlFlow` enum" -flag = "control_flow_enum_type" -tracking_issue_id = 75744 -stabilization_pr_id = 85608 -+++ diff --git a/data/1.55/control_flow.toml b/data/1.55/control_flow.toml new file mode 100644 index 0000000..d70480e --- /dev/null +++ b/data/1.55/control_flow.toml @@ -0,0 +1,4 @@ +title = "the `ControlFlow` enum" +flag = "control_flow_enum_type" +tracking_issue_id = 75744 +stabilization_pr_id = 85608 diff --git a/data/1.55/maybe_uninit_write.md b/data/1.55/maybe_uninit_write.md deleted file mode 100644 index 570e376..0000000 --- a/data/1.55/maybe_uninit_write.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`MaybeUninit::write`" -flag = "maybe_uninit_write" -tracking_issue_id = 63567 -stabilization_pr_id = 86344 -+++ diff --git a/data/1.55/maybe_uninit_write.toml b/data/1.55/maybe_uninit_write.toml new file mode 100644 index 0000000..b8f2845 --- /dev/null +++ b/data/1.55/maybe_uninit_write.toml @@ -0,0 +1,4 @@ +title = "`MaybeUninit::write`" +flag = "maybe_uninit_write" +tracking_issue_id = 63567 +stabilization_pr_id = 86344 diff --git a/data/1.55/range_from_patterns.md b/data/1.55/range_from_patterns.md deleted file mode 100644 index 3f38a81..0000000 --- a/data/1.55/range_from_patterns.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "\"RangeFrom\" patterns (`a..`)" -impl_pr_id = 67258 -tracking_issue_id = 67264 -stabilization_pr_id = 83918 -+++ diff --git a/data/1.55/range_from_patterns.toml b/data/1.55/range_from_patterns.toml new file mode 100644 index 0000000..a8e4b92 --- /dev/null +++ b/data/1.55/range_from_patterns.toml @@ -0,0 +1,4 @@ +title = "\"RangeFrom\" patterns (`a..`)" +impl_pr_id = 67258 +tracking_issue_id = 67264 +stabilization_pr_id = 83918 diff --git a/data/1.56/bufwriter_into_parts.md b/data/1.56/bufwriter_into_parts.md deleted file mode 100644 index 3c3d8e1..0000000 --- a/data/1.56/bufwriter_into_parts.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`BufWriter::into_parts`" -flag = "bufwriter_into_parts" -impl_pr_id = 79705 -tracking_issue_id = 80690 -stabilization_pr_id = 88299 -+++ diff --git a/data/1.56/bufwriter_into_parts.toml b/data/1.56/bufwriter_into_parts.toml new file mode 100644 index 0000000..1516e09 --- /dev/null +++ b/data/1.56/bufwriter_into_parts.toml @@ -0,0 +1,5 @@ +title = "`BufWriter::into_parts`" +flag = "bufwriter_into_parts" +impl_pr_id = 79705 +tracking_issue_id = 80690 +stabilization_pr_id = 88299 diff --git a/data/1.56/const_fn_transmute.md b/data/1.56/const_fn_transmute.md deleted file mode 100644 index 108d9db..0000000 --- a/data/1.56/const_fn_transmute.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`mem::transmute` in `const fn`" -flag = "const_fn_transmute" -tracking_issue_id = 53605 -stabilization_pr_id = 85769 -+++ diff --git a/data/1.56/const_fn_transmute.toml b/data/1.56/const_fn_transmute.toml new file mode 100644 index 0000000..89f0e47 --- /dev/null +++ b/data/1.56/const_fn_transmute.toml @@ -0,0 +1,4 @@ +title = "`mem::transmute` in `const fn`" +flag = "const_fn_transmute" +tracking_issue_id = 53605 +stabilization_pr_id = 85769 diff --git a/data/1.56/const_fn_union.md b/data/1.56/const_fn_union.md deleted file mode 100644 index aa105f5..0000000 --- a/data/1.56/const_fn_union.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`union` field access in `const fn`" -flag = "const_fn_union" -tracking_issue_id = 51909 -stabilization_pr_id = 85769 -+++ diff --git a/data/1.56/const_fn_union.toml b/data/1.56/const_fn_union.toml new file mode 100644 index 0000000..1485447 --- /dev/null +++ b/data/1.56/const_fn_union.toml @@ -0,0 +1,4 @@ +title = "`union` field access in `const fn`" +flag = "const_fn_union" +tracking_issue_id = 51909 +stabilization_pr_id = 85769 diff --git a/data/1.56/extend_for_tuple.md b/data/1.56/extend_for_tuple.md deleted file mode 100644 index b92f205..0000000 --- a/data/1.56/extend_for_tuple.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`Extend` implementation for `(Extend, Extend)`" -flag = "extend_for_tuple" -impl_pr_id = 85835 -+++ diff --git a/data/1.56/extend_for_tuple.toml b/data/1.56/extend_for_tuple.toml new file mode 100644 index 0000000..f153ee9 --- /dev/null +++ b/data/1.56/extend_for_tuple.toml @@ -0,0 +1,3 @@ +title = "`Extend` implementation for `(Extend, Extend)`" +flag = "extend_for_tuple" +impl_pr_id = 85835 diff --git a/data/1.56/io_empty_clone.md b/data/1.56/io_empty_clone.md deleted file mode 100644 index f6a3e58..0000000 --- a/data/1.56/io_empty_clone.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`Clone` implementation for `io::Empty`" -impl_pr_id = 86744 -+++ diff --git a/data/1.56/io_empty_clone.toml b/data/1.56/io_empty_clone.toml new file mode 100644 index 0000000..7782a38 --- /dev/null +++ b/data/1.56/io_empty_clone.toml @@ -0,0 +1,2 @@ +title = "`Clone` implementation for `io::Empty`" +impl_pr_id = 86744 diff --git a/data/1.56/io_empty_copy.md b/data/1.56/io_empty_copy.md deleted file mode 100644 index da1576f..0000000 --- a/data/1.56/io_empty_copy.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`Copy` implementation for `io::Empty`" -impl_pr_id = 86744 -+++ diff --git a/data/1.56/io_empty_copy.toml b/data/1.56/io_empty_copy.toml new file mode 100644 index 0000000..a97095c --- /dev/null +++ b/data/1.56/io_empty_copy.toml @@ -0,0 +1,2 @@ +title = "`Copy` implementation for `io::Empty`" +impl_pr_id = 86744 diff --git a/data/1.56/io_empty_default.md b/data/1.56/io_empty_default.md deleted file mode 100644 index 0bb3fc8..0000000 --- a/data/1.56/io_empty_default.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`Default` implementation for `io::Empty`" -impl_pr_id = 86744 -+++ diff --git a/data/1.56/io_empty_default.toml b/data/1.56/io_empty_default.toml new file mode 100644 index 0000000..f6f1081 --- /dev/null +++ b/data/1.56/io_empty_default.toml @@ -0,0 +1,2 @@ +title = "`Default` implementation for `io::Empty`" +impl_pr_id = 86744 diff --git a/data/1.56/io_sink_clone.md b/data/1.56/io_sink_clone.md deleted file mode 100644 index 87919fb..0000000 --- a/data/1.56/io_sink_clone.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`Clone` implementation for `io::Sink`" -impl_pr_id = 86744 -+++ diff --git a/data/1.56/io_sink_clone.toml b/data/1.56/io_sink_clone.toml new file mode 100644 index 0000000..0377462 --- /dev/null +++ b/data/1.56/io_sink_clone.toml @@ -0,0 +1,2 @@ +title = "`Clone` implementation for `io::Sink`" +impl_pr_id = 86744 diff --git a/data/1.56/io_sink_copy.md b/data/1.56/io_sink_copy.md deleted file mode 100644 index d493930..0000000 --- a/data/1.56/io_sink_copy.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`Copy` implementation for `io::Sink`" -impl_pr_id = 86744 -+++ diff --git a/data/1.56/io_sink_copy.toml b/data/1.56/io_sink_copy.toml new file mode 100644 index 0000000..6204dad --- /dev/null +++ b/data/1.56/io_sink_copy.toml @@ -0,0 +1,2 @@ +title = "`Copy` implementation for `io::Sink`" +impl_pr_id = 86744 diff --git a/data/1.56/io_sink_default.md b/data/1.56/io_sink_default.md deleted file mode 100644 index fb726da..0000000 --- a/data/1.56/io_sink_default.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`Default` implementation for `io::Sink`" -impl_pr_id = 86744 -+++ diff --git a/data/1.56/io_sink_default.toml b/data/1.56/io_sink_default.toml new file mode 100644 index 0000000..c393a4d --- /dev/null +++ b/data/1.56/io_sink_default.toml @@ -0,0 +1,2 @@ +title = "`Default` implementation for `io::Sink`" +impl_pr_id = 86744 diff --git a/data/1.56/ready_macro.md b/data/1.56/ready_macro.md deleted file mode 100644 index 217c0fd..0000000 --- a/data/1.56/ready_macro.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`task::ready!`" -flag = "ready_macro" -impl_pr_id = 70817 -tracking_issue_id = 70922 -stabilization_pr_id = 81050 -+++ diff --git a/data/1.56/ready_macro.toml b/data/1.56/ready_macro.toml new file mode 100644 index 0000000..4919468 --- /dev/null +++ b/data/1.56/ready_macro.toml @@ -0,0 +1,5 @@ +title = "`task::ready!`" +flag = "ready_macro" +impl_pr_id = 70817 +tracking_issue_id = 70922 +stabilization_pr_id = 81050 diff --git a/data/1.56/shrink_to.md b/data/1.56/shrink_to.md deleted file mode 100644 index b07b760..0000000 --- a/data/1.56/shrink_to.md +++ /dev/null @@ -1,17 +0,0 @@ -+++ -title = "the `shrink_to` method on collections" -flag = "shrink_to" -impl_pr_id = 49400 -tracking_issue_id = 56431 -stabilization_pr_id = 86879 -items = [ - "BinaryHeap::shrink_to", - "HashMap::shrink_to", - "HashSet::shrink_to", - "OsString::shrink_to", - "PathBuf::shrink_to", - "String::shrink_to", - "Vec::shrink_to", - "VecDeque::shrink_to", -] -+++ diff --git a/data/1.56/shrink_to.toml b/data/1.56/shrink_to.toml new file mode 100644 index 0000000..5eeeaba --- /dev/null +++ b/data/1.56/shrink_to.toml @@ -0,0 +1,15 @@ +title = "the `shrink_to` method on collections" +flag = "shrink_to" +impl_pr_id = 49400 +tracking_issue_id = 56431 +stabilization_pr_id = 86879 +items = [ + "BinaryHeap::shrink_to", + "HashMap::shrink_to", + "HashSet::shrink_to", + "OsString::shrink_to", + "PathBuf::shrink_to", + "String::shrink_to", + "Vec::shrink_to", + "VecDeque::shrink_to", +] diff --git a/data/1.56/std_collections_from_array.md b/data/1.56/std_collections_from_array.md deleted file mode 100644 index 954679c..0000000 --- a/data/1.56/std_collections_from_array.md +++ /dev/null @@ -1,14 +0,0 @@ -+++ -title = "`From<[T; N]>` implementation for collections" -flag = "std_collections_from_array" -impl_pr_id = 84111 -items = [ - "impl From for BinaryHeap", - "impl From for BTreeMap", - "impl From for BTreeSet", - "impl From for HashMap", - "impl From for HashSet", - "impl From for LinkedList", - "impl From for VecDeque", -] -+++ diff --git a/data/1.56/std_collections_from_array.toml b/data/1.56/std_collections_from_array.toml new file mode 100644 index 0000000..ecbb54b --- /dev/null +++ b/data/1.56/std_collections_from_array.toml @@ -0,0 +1,12 @@ +title = "`From<[T; N]>` implementation for collections" +flag = "std_collections_from_array" +impl_pr_id = 84111 +items = [ + "impl From for BinaryHeap", + "impl From for BTreeMap", + "impl From for BTreeSet", + "impl From for HashMap", + "impl From for HashSet", + "impl From for LinkedList", + "impl From for VecDeque", +] diff --git a/data/1.56/unix_chroot.md b/data/1.56/unix_chroot.md deleted file mode 100644 index 918fe7c..0000000 --- a/data/1.56/unix_chroot.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`std::os::unix::fs::chroot`" -flag = "unix_chroot" -impl_pr_id = 84716 -tracking_issue_id = 84715 -stabilization_pr_id = 88177 -+++ diff --git a/data/1.56/unix_chroot.toml b/data/1.56/unix_chroot.toml new file mode 100644 index 0000000..e05fb04 --- /dev/null +++ b/data/1.56/unix_chroot.toml @@ -0,0 +1,5 @@ +title = "`std::os::unix::fs::chroot`" +flag = "unix_chroot" +impl_pr_id = 84716 +tracking_issue_id = 84715 +stabilization_pr_id = 88177 diff --git a/data/1.57/const_panic.md b/data/1.57/const_panic.md deleted file mode 100644 index 2ffebb0..0000000 --- a/data/1.57/const_panic.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "panicking in `const` contexts" -flag = "const_panic" -impl_pr_id = 52011 -tracking_issue_id = 51999 -stabilization_pr_id = 89508 -+++ diff --git a/data/1.57/const_panic.toml b/data/1.57/const_panic.toml new file mode 100644 index 0000000..0ce4162 --- /dev/null +++ b/data/1.57/const_panic.toml @@ -0,0 +1,5 @@ +title = "panicking in `const` contexts" +flag = "const_panic" +impl_pr_id = 52011 +tracking_issue_id = 51999 +stabilization_pr_id = 89508 diff --git a/data/1.57/hashmap_try_reserve.md b/data/1.57/hashmap_try_reserve.md deleted file mode 100644 index d654da2..0000000 --- a/data/1.57/hashmap_try_reserve.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`HashMap::try_reserve`" -flag = "try_reserve" -impl_pr_id = 48648 -tracking_issue_id = 48043 -stabilization_pr_id = 87993 -+++ diff --git a/data/1.57/hashmap_try_reserve.toml b/data/1.57/hashmap_try_reserve.toml new file mode 100644 index 0000000..ac5c8b3 --- /dev/null +++ b/data/1.57/hashmap_try_reserve.toml @@ -0,0 +1,5 @@ +title = "`HashMap::try_reserve`" +flag = "try_reserve" +impl_pr_id = 48648 +tracking_issue_id = 48043 +stabilization_pr_id = 87993 diff --git a/data/1.57/hashmap_try_reserve_exact.md b/data/1.57/hashmap_try_reserve_exact.md deleted file mode 100644 index c4aab54..0000000 --- a/data/1.57/hashmap_try_reserve_exact.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`HashMap::try_reserve_exact`" -flag = "try_reserve" -impl_pr_id = 48648 -tracking_issue_id = 48043 -stabilization_pr_id = 87993 -+++ diff --git a/data/1.57/hashmap_try_reserve_exact.toml b/data/1.57/hashmap_try_reserve_exact.toml new file mode 100644 index 0000000..053368d --- /dev/null +++ b/data/1.57/hashmap_try_reserve_exact.toml @@ -0,0 +1,5 @@ +title = "`HashMap::try_reserve_exact`" +flag = "try_reserve" +impl_pr_id = 48648 +tracking_issue_id = 48043 +stabilization_pr_id = 87993 diff --git a/data/1.57/hashset_try_reserve.md b/data/1.57/hashset_try_reserve.md deleted file mode 100644 index f8fdb50..0000000 --- a/data/1.57/hashset_try_reserve.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`HashSet::try_reserve`" -flag = "try_reserve" -impl_pr_id = 48648 -tracking_issue_id = 48043 -stabilization_pr_id = 87993 -+++ diff --git a/data/1.57/hashset_try_reserve.toml b/data/1.57/hashset_try_reserve.toml new file mode 100644 index 0000000..b627362 --- /dev/null +++ b/data/1.57/hashset_try_reserve.toml @@ -0,0 +1,5 @@ +title = "`HashSet::try_reserve`" +flag = "try_reserve" +impl_pr_id = 48648 +tracking_issue_id = 48043 +stabilization_pr_id = 87993 diff --git a/data/1.57/hashset_try_reserve_exact.md b/data/1.57/hashset_try_reserve_exact.md deleted file mode 100644 index 02d9fd3..0000000 --- a/data/1.57/hashset_try_reserve_exact.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`HashSet::try_reserve_exact`" -flag = "try_reserve" -impl_pr_id = 48648 -tracking_issue_id = 48043 -stabilization_pr_id = 87993 -+++ diff --git a/data/1.57/hashset_try_reserve_exact.toml b/data/1.57/hashset_try_reserve_exact.toml new file mode 100644 index 0000000..3fe0b59 --- /dev/null +++ b/data/1.57/hashset_try_reserve_exact.toml @@ -0,0 +1,5 @@ +title = "`HashSet::try_reserve_exact`" +flag = "try_reserve" +impl_pr_id = 48648 +tracking_issue_id = 48043 +stabilization_pr_id = 87993 diff --git a/data/1.57/macro_attrs_in_derive_output.md b/data/1.57/macro_attrs_in_derive_output.md deleted file mode 100644 index 592642c..0000000 --- a/data/1.57/macro_attrs_in_derive_output.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "attribute macros after derive macros, on the same item" -flag = "macro_attributes_in_derive_output" -tracking_issue_id = 81119 -stabilization_pr_id = 87220 -+++ diff --git a/data/1.57/macro_attrs_in_derive_output.toml b/data/1.57/macro_attrs_in_derive_output.toml new file mode 100644 index 0000000..b02b460 --- /dev/null +++ b/data/1.57/macro_attrs_in_derive_output.toml @@ -0,0 +1,4 @@ +title = "attribute macros after derive macros, on the same item" +flag = "macro_attributes_in_derive_output" +tracking_issue_id = 81119 +stabilization_pr_id = 87220 diff --git a/data/1.57/proc_macro_is_available.md b/data/1.57/proc_macro_is_available.md deleted file mode 100644 index 0aadd7d..0000000 --- a/data/1.57/proc_macro_is_available.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`proc_macro::is_available`" -flag = "proc_macro_is_available" -impl_pr_id = 71400 -tracking_issue_id = 71436 -stabilization_pr_id = 89735 -+++ diff --git a/data/1.57/proc_macro_is_available.toml b/data/1.57/proc_macro_is_available.toml new file mode 100644 index 0000000..e821592 --- /dev/null +++ b/data/1.57/proc_macro_is_available.toml @@ -0,0 +1,5 @@ +title = "`proc_macro::is_available`" +flag = "proc_macro_is_available" +impl_pr_id = 71400 +tracking_issue_id = 71436 +stabilization_pr_id = 89735 diff --git a/data/1.57/string_try_reserve.md b/data/1.57/string_try_reserve.md deleted file mode 100644 index 9bdc0bc..0000000 --- a/data/1.57/string_try_reserve.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`String::try_reserve`" -flag = "try_reserve" -impl_pr_id = 48648 -tracking_issue_id = 48043 -stabilization_pr_id = 87993 -+++ diff --git a/data/1.57/string_try_reserve.toml b/data/1.57/string_try_reserve.toml new file mode 100644 index 0000000..f6c8341 --- /dev/null +++ b/data/1.57/string_try_reserve.toml @@ -0,0 +1,5 @@ +title = "`String::try_reserve`" +flag = "try_reserve" +impl_pr_id = 48648 +tracking_issue_id = 48043 +stabilization_pr_id = 87993 diff --git a/data/1.57/string_try_reserve_exact.md b/data/1.57/string_try_reserve_exact.md deleted file mode 100644 index a83db4e..0000000 --- a/data/1.57/string_try_reserve_exact.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`String::try_reserve_exact`" -flag = "try_reserve" -impl_pr_id = 48648 -tracking_issue_id = 48043 -stabilization_pr_id = 87993 -+++ diff --git a/data/1.57/string_try_reserve_exact.toml b/data/1.57/string_try_reserve_exact.toml new file mode 100644 index 0000000..c15d2a3 --- /dev/null +++ b/data/1.57/string_try_reserve_exact.toml @@ -0,0 +1,5 @@ +title = "`String::try_reserve_exact`" +flag = "try_reserve" +impl_pr_id = 48648 +tracking_issue_id = 48043 +stabilization_pr_id = 87993 diff --git a/data/1.57/vec_try_reserve.md b/data/1.57/vec_try_reserve.md deleted file mode 100644 index 73d6b44..0000000 --- a/data/1.57/vec_try_reserve.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`Vec::try_reserve`" -flag = "try_reserve" -impl_pr_id = 48648 -tracking_issue_id = 48043 -stabilization_pr_id = 87993 -+++ diff --git a/data/1.57/vec_try_reserve.toml b/data/1.57/vec_try_reserve.toml new file mode 100644 index 0000000..274b8cc --- /dev/null +++ b/data/1.57/vec_try_reserve.toml @@ -0,0 +1,5 @@ +title = "`Vec::try_reserve`" +flag = "try_reserve" +impl_pr_id = 48648 +tracking_issue_id = 48043 +stabilization_pr_id = 87993 diff --git a/data/1.57/vec_try_reserve_exact.md b/data/1.57/vec_try_reserve_exact.md deleted file mode 100644 index 36a2534..0000000 --- a/data/1.57/vec_try_reserve_exact.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`Vec::try_reserve_exact`" -flag = "try_reserve" -impl_pr_id = 48648 -tracking_issue_id = 48043 -stabilization_pr_id = 87993 -+++ diff --git a/data/1.57/vec_try_reserve_exact.toml b/data/1.57/vec_try_reserve_exact.toml new file mode 100644 index 0000000..8eae422 --- /dev/null +++ b/data/1.57/vec_try_reserve_exact.toml @@ -0,0 +1,5 @@ +title = "`Vec::try_reserve_exact`" +flag = "try_reserve" +impl_pr_id = 48648 +tracking_issue_id = 48043 +stabilization_pr_id = 87993 diff --git a/data/1.57/vecdeque_try_reserve.md b/data/1.57/vecdeque_try_reserve.md deleted file mode 100644 index c67f037..0000000 --- a/data/1.57/vecdeque_try_reserve.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`VecDeque::try_reserve`" -flag = "try_reserve" -impl_pr_id = 48648 -tracking_issue_id = 48043 -stabilization_pr_id = 87993 -+++ diff --git a/data/1.57/vecdeque_try_reserve.toml b/data/1.57/vecdeque_try_reserve.toml new file mode 100644 index 0000000..490a514 --- /dev/null +++ b/data/1.57/vecdeque_try_reserve.toml @@ -0,0 +1,5 @@ +title = "`VecDeque::try_reserve`" +flag = "try_reserve" +impl_pr_id = 48648 +tracking_issue_id = 48043 +stabilization_pr_id = 87993 diff --git a/data/1.57/vecdeque_try_reserve_exact.md b/data/1.57/vecdeque_try_reserve_exact.md deleted file mode 100644 index 081552a..0000000 --- a/data/1.57/vecdeque_try_reserve_exact.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`VecDeque::try_reserve_exact`" -flag = "try_reserve" -impl_pr_id = 48648 -tracking_issue_id = 48043 -stabilization_pr_id = 87993 -+++ diff --git a/data/1.57/vecdeque_try_reserve_exact.toml b/data/1.57/vecdeque_try_reserve_exact.toml new file mode 100644 index 0000000..9faebc6 --- /dev/null +++ b/data/1.57/vecdeque_try_reserve_exact.toml @@ -0,0 +1,5 @@ +title = "`VecDeque::try_reserve_exact`" +flag = "try_reserve" +impl_pr_id = 48648 +tracking_issue_id = 48043 +stabilization_pr_id = 87993 diff --git a/data/1.58/const_raw_ptr_deref.md b/data/1.58/const_raw_ptr_deref.md deleted file mode 100644 index 7c1fceb..0000000 --- a/data/1.58/const_raw_ptr_deref.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`*const T` dereferences in `const` contexts" -flag = "const_raw_ptr_deref" -tracking_issue_id = 51911 -stabilization_pr_id = 89551 -+++ diff --git a/data/1.58/const_raw_ptr_deref.toml b/data/1.58/const_raw_ptr_deref.toml new file mode 100644 index 0000000..7391665 --- /dev/null +++ b/data/1.58/const_raw_ptr_deref.toml @@ -0,0 +1,4 @@ +title = "`*const T` dereferences in `const` contexts" +flag = "const_raw_ptr_deref" +tracking_issue_id = 51911 +stabilization_pr_id = 89551 diff --git a/data/1.58/cstring_from_vec_with_nul.md b/data/1.58/cstring_from_vec_with_nul.md deleted file mode 100644 index a21321a..0000000 --- a/data/1.58/cstring_from_vec_with_nul.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`CString::from_vec_with_nul`" -flag = "cstring_from_vec_with_nul" -impl_pr_id = 73139 -tracking_issue_id = 73179 -stabilization_pr_id = 89292 -+++ diff --git a/data/1.58/cstring_from_vec_with_nul.toml b/data/1.58/cstring_from_vec_with_nul.toml new file mode 100644 index 0000000..373c866 --- /dev/null +++ b/data/1.58/cstring_from_vec_with_nul.toml @@ -0,0 +1,5 @@ +title = "`CString::from_vec_with_nul`" +flag = "cstring_from_vec_with_nul" +impl_pr_id = 73139 +tracking_issue_id = 73179 +stabilization_pr_id = 89292 diff --git a/data/1.58/cstring_from_vec_with_nul_unchecked.md b/data/1.58/cstring_from_vec_with_nul_unchecked.md deleted file mode 100644 index 033ec2d..0000000 --- a/data/1.58/cstring_from_vec_with_nul_unchecked.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`CString::from_vec_with_nul_unchecked`" -flag = "cstring_from_vec_with_nul" -impl_pr_id = 73139 -tracking_issue_id = 73179 -stabilization_pr_id = 89292 -+++ diff --git a/data/1.58/cstring_from_vec_with_nul_unchecked.toml b/data/1.58/cstring_from_vec_with_nul_unchecked.toml new file mode 100644 index 0000000..35ebeaf --- /dev/null +++ b/data/1.58/cstring_from_vec_with_nul_unchecked.toml @@ -0,0 +1,5 @@ +title = "`CString::from_vec_with_nul_unchecked`" +flag = "cstring_from_vec_with_nul" +impl_pr_id = 73139 +tracking_issue_id = 73179 +stabilization_pr_id = 89292 diff --git a/data/1.6/no_std.md b/data/1.6/no_std.md deleted file mode 100644 index 2b21e8c..0000000 --- a/data/1.6/no_std.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "`#![no_std]`" -flag = "no_std" -+++ diff --git a/data/1.6/no_std.toml b/data/1.6/no_std.toml new file mode 100644 index 0000000..d917d72 --- /dev/null +++ b/data/1.6/no_std.toml @@ -0,0 +1,2 @@ +title = "`#![no_std]`" +flag = "no_std" diff --git a/data/1.7/string_as_mut_str.md b/data/1.7/string_as_mut_str.md deleted file mode 100644 index ad6856c..0000000 --- a/data/1.7/string_as_mut_str.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`String::as_mut_str`" -flag = "string_as_str" -impl_pr_id = 30943 -+++ diff --git a/data/1.7/string_as_mut_str.toml b/data/1.7/string_as_mut_str.toml new file mode 100644 index 0000000..4d83bbb --- /dev/null +++ b/data/1.7/string_as_mut_str.toml @@ -0,0 +1,3 @@ +title = "`String::as_mut_str`" +flag = "string_as_str" +impl_pr_id = 30943 diff --git a/data/1.7/string_as_str.md b/data/1.7/string_as_str.md deleted file mode 100644 index d751329..0000000 --- a/data/1.7/string_as_str.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`String::as_str`" -flag = "string_as_str" -impl_pr_id = 23875 -tracking_issue_id = 27729 -stabilization_pr_id = 30943 -+++ diff --git a/data/1.7/string_as_str.toml b/data/1.7/string_as_str.toml new file mode 100644 index 0000000..f17f8f9 --- /dev/null +++ b/data/1.7/string_as_str.toml @@ -0,0 +1,5 @@ +title = "`String::as_str`" +flag = "string_as_str" +impl_pr_id = 23875 +tracking_issue_id = 27729 +stabilization_pr_id = 30943 diff --git a/data/1.7/vec_as_mut_slice.md b/data/1.7/vec_as_mut_slice.md deleted file mode 100644 index a3a93af..0000000 --- a/data/1.7/vec_as_mut_slice.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`Vec::as_mut_slice`" -flag = "vec_as_slice" -tracking_issue_id = 27729 -stabilization_pr_id = 30943 -+++ diff --git a/data/1.7/vec_as_mut_slice.toml b/data/1.7/vec_as_mut_slice.toml new file mode 100644 index 0000000..7b1cb30 --- /dev/null +++ b/data/1.7/vec_as_mut_slice.toml @@ -0,0 +1,4 @@ +title = "`Vec::as_mut_slice`" +flag = "vec_as_slice" +tracking_issue_id = 27729 +stabilization_pr_id = 30943 diff --git a/data/1.7/vec_as_slice.md b/data/1.7/vec_as_slice.md deleted file mode 100644 index 8af6eeb..0000000 --- a/data/1.7/vec_as_slice.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`Vec::as_slice`" -flag = "vec_as_slice" -impl_pr_id = 23875 -tracking_issue_id = 27729 -stabilization_pr_id = 30943 -+++ diff --git a/data/1.7/vec_as_slice.toml b/data/1.7/vec_as_slice.toml new file mode 100644 index 0000000..9d8fbfa --- /dev/null +++ b/data/1.7/vec_as_slice.toml @@ -0,0 +1,5 @@ +title = "`Vec::as_slice`" +flag = "vec_as_slice" +impl_pr_id = 23875 +tracking_issue_id = 27729 +stabilization_pr_id = 30943 diff --git a/data/1.8/augmented_assignments.md b/data/1.8/augmented_assignments.md deleted file mode 100644 index c99d97b..0000000 --- a/data/1.8/augmented_assignments.md +++ /dev/null @@ -1,17 +0,0 @@ -+++ -title = "assignment operator overloading" -flag = "augmented_assignments" -tracking_issue_id = 28235 -edition_guide_path = "rust-2018/data-types/operator-equals-are-now-implementable.html" -items = [ - "ops::AddAssign", - "ops::BitAndAssign", - "ops::BitOrAssign", - "ops::BitXorAssign", - "ops::DivAssign", - "ops::MulAssign", - "ops::RemAssign", - "ops::ShlAssign", - "ops::ShrAssign", -] -+++ diff --git a/data/1.8/augmented_assignments.toml b/data/1.8/augmented_assignments.toml new file mode 100644 index 0000000..5ba36dc --- /dev/null +++ b/data/1.8/augmented_assignments.toml @@ -0,0 +1,15 @@ +title = "assignment operator overloading" +flag = "augmented_assignments" +tracking_issue_id = 28235 +edition_guide_path = "rust-2018/data-types/operator-equals-are-now-implementable.html" +items = [ + "ops::AddAssign", + "ops::BitAndAssign", + "ops::BitOrAssign", + "ops::BitXorAssign", + "ops::DivAssign", + "ops::MulAssign", + "ops::RemAssign", + "ops::ShlAssign", + "ops::ShrAssign", +] diff --git a/data/1.8/braced_empty_structs.md b/data/1.8/braced_empty_structs.md deleted file mode 100644 index b5cad2c..0000000 --- a/data/1.8/braced_empty_structs.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "empty structs and enum variants with braces" -flag = "braced_empty_structs" -rfc_id = 218 -tracking_issue_id = 29720 -+++ diff --git a/data/1.8/braced_empty_structs.toml b/data/1.8/braced_empty_structs.toml new file mode 100644 index 0000000..bf3b44e --- /dev/null +++ b/data/1.8/braced_empty_structs.toml @@ -0,0 +1,4 @@ +title = "empty structs and enum variants with braces" +flag = "braced_empty_structs" +rfc_id = 218 +tracking_issue_id = 29720 diff --git a/data/1.9/deprecated.md b/data/1.9/deprecated.md deleted file mode 100644 index e1c5c92..0000000 --- a/data/1.9/deprecated.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "`#[deprecated]`" -flag = "deprecated" -rfc_id = 1270 -tracking_issue_id = 29935 -stabilization_pr_id = 32804 -+++ diff --git a/data/1.9/deprecated.toml b/data/1.9/deprecated.toml new file mode 100644 index 0000000..9975e6e --- /dev/null +++ b/data/1.9/deprecated.toml @@ -0,0 +1,5 @@ +title = "`#[deprecated]`" +flag = "deprecated" +rfc_id = 1270 +tracking_issue_id = 29935 +stabilization_pr_id = 32804 diff --git a/data/unstable/abi_thiscall.md b/data/unstable/abi_thiscall.md deleted file mode 100644 index 1d0007d..0000000 --- a/data/unstable/abi_thiscall.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`thiscall` calling convention" -flag = "abi_thiscall" -impl_pr_id = 42058 -tracking_issue_id = 42202 -+++ diff --git a/data/unstable/abi_thiscall.toml b/data/unstable/abi_thiscall.toml new file mode 100644 index 0000000..4dfc2ef --- /dev/null +++ b/data/unstable/abi_thiscall.toml @@ -0,0 +1,4 @@ +title = "`thiscall` calling convention" +flag = "abi_thiscall" +impl_pr_id = 42058 +tracking_issue_id = 42202 diff --git a/data/unstable/assert_matches.md b/data/unstable/assert_matches.md deleted file mode 100644 index 87ba0fc..0000000 --- a/data/unstable/assert_matches.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`assert_matches!`" -flag = "assert_matches" -impl_pr_id = 82770 -tracking_issue_id = 82775 -+++ diff --git a/data/unstable/assert_matches.toml b/data/unstable/assert_matches.toml new file mode 100644 index 0000000..49a134c --- /dev/null +++ b/data/unstable/assert_matches.toml @@ -0,0 +1,4 @@ +title = "`assert_matches!`" +flag = "assert_matches" +impl_pr_id = 82770 +tracking_issue_id = 82775 diff --git a/data/unstable/associated_type_defaults.md b/data/unstable/associated_type_defaults.md deleted file mode 100644 index 226a8ad..0000000 --- a/data/unstable/associated_type_defaults.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "default values for associated types" -flag = "associated_type_defaults" -tracking_issue_id = 29661 -+++ diff --git a/data/unstable/associated_type_defaults.toml b/data/unstable/associated_type_defaults.toml new file mode 100644 index 0000000..66e35a3 --- /dev/null +++ b/data/unstable/associated_type_defaults.toml @@ -0,0 +1,3 @@ +title = "default values for associated types" +flag = "associated_type_defaults" +tracking_issue_id = 29661 diff --git a/data/unstable/box_into_boxed_slice.md b/data/unstable/box_into_boxed_slice.md deleted file mode 100644 index 7abb643..0000000 --- a/data/unstable/box_into_boxed_slice.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`Box::into_boxed_slice`" -flag = "box_into_boxed_slice" -impl_pr_id = 71421 -+++ diff --git a/data/unstable/box_into_boxed_slice.toml b/data/unstable/box_into_boxed_slice.toml new file mode 100644 index 0000000..b328e49 --- /dev/null +++ b/data/unstable/box_into_boxed_slice.toml @@ -0,0 +1,3 @@ +title = "`Box::into_boxed_slice`" +flag = "box_into_boxed_slice" +impl_pr_id = 71421 diff --git a/data/unstable/cfg_target_has_atomic.md b/data/unstable/cfg_target_has_atomic.md deleted file mode 100644 index dbf5ece..0000000 --- a/data/unstable/cfg_target_has_atomic.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`cfg(target_has_atomic = ...)`" -flag = "cfg_target_has_atomic" -tracking_issue_id = 32976 -+++ diff --git a/data/unstable/cfg_target_has_atomic.toml b/data/unstable/cfg_target_has_atomic.toml new file mode 100644 index 0000000..1f159be --- /dev/null +++ b/data/unstable/cfg_target_has_atomic.toml @@ -0,0 +1,3 @@ +title = "`cfg(target_has_atomic = ...)`" +flag = "cfg_target_has_atomic" +tracking_issue_id = 32976 diff --git a/data/unstable/cfg_version.md b/data/unstable/cfg_version.md deleted file mode 100644 index bbe75b1..0000000 --- a/data/unstable/cfg_version.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`#[cfg(version(..))]`" -flag = "cfg_version" -impl_pr_id = 71314 -tracking_issue_id = 64796 -+++ diff --git a/data/unstable/cfg_version.toml b/data/unstable/cfg_version.toml new file mode 100644 index 0000000..c159d63 --- /dev/null +++ b/data/unstable/cfg_version.toml @@ -0,0 +1,4 @@ +title = "`#[cfg(version(..))]`" +flag = "cfg_version" +impl_pr_id = 71314 +tracking_issue_id = 64796 diff --git a/data/unstable/const_btreemap_new.md b/data/unstable/const_btreemap_new.md deleted file mode 100644 index f845e01..0000000 --- a/data/unstable/const_btreemap_new.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`BTreeMap::new` as `const fn`" -flag = "const_btree_new" -impl_pr_id = 71839 -tracking_issue_id = 71835 -+++ diff --git a/data/unstable/const_btreemap_new.toml b/data/unstable/const_btreemap_new.toml new file mode 100644 index 0000000..6549d60 --- /dev/null +++ b/data/unstable/const_btreemap_new.toml @@ -0,0 +1,4 @@ +title = "`BTreeMap::new` as `const fn`" +flag = "const_btree_new" +impl_pr_id = 71839 +tracking_issue_id = 71835 diff --git a/data/unstable/const_btreeset_new.md b/data/unstable/const_btreeset_new.md deleted file mode 100644 index dfbd0de..0000000 --- a/data/unstable/const_btreeset_new.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`BTreeSet::new` as `const fn`" -flag = "const_btree_new" -impl_pr_id = 71839 -tracking_issue_id = 71835 -+++ diff --git a/data/unstable/const_btreeset_new.toml b/data/unstable/const_btreeset_new.toml new file mode 100644 index 0000000..758100d --- /dev/null +++ b/data/unstable/const_btreeset_new.toml @@ -0,0 +1,4 @@ +title = "`BTreeSet::new` as `const fn`" +flag = "const_btree_new" +impl_pr_id = 71839 +tracking_issue_id = 71835 diff --git a/data/unstable/const_fn_transmute.md b/data/unstable/const_fn_transmute.md deleted file mode 100644 index b019058..0000000 --- a/data/unstable/const_fn_transmute.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`mem::transmute` in `const fn`" -flag = "const_fn_transmute" -tracking_issue_id = 53605 -+++ diff --git a/data/unstable/const_fn_transmute.toml b/data/unstable/const_fn_transmute.toml new file mode 100644 index 0000000..22c0146 --- /dev/null +++ b/data/unstable/const_fn_transmute.toml @@ -0,0 +1,3 @@ +title = "`mem::transmute` in `const fn`" +flag = "const_fn_transmute" +tracking_issue_id = 53605 diff --git a/data/unstable/const_generics.md b/data/unstable/const_generics.md deleted file mode 100644 index dc83105..0000000 --- a/data/unstable/const_generics.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "const generics" -flag = "const_generics" -rfc_id = 2000 -tracking_issue_id = 44580 -+++ diff --git a/data/unstable/const_generics.toml b/data/unstable/const_generics.toml new file mode 100644 index 0000000..44326a1 --- /dev/null +++ b/data/unstable/const_generics.toml @@ -0,0 +1,4 @@ +title = "const generics" +flag = "const_generics" +rfc_id = 2000 +tracking_issue_id = 44580 diff --git a/data/unstable/const_in_array_repeat_expressions.md b/data/unstable/const_in_array_repeat_expressions.md deleted file mode 100644 index 347f22b..0000000 --- a/data/unstable/const_in_array_repeat_expressions.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "constants in array repeat expressions" -flag = "const_in_array_repeat_expressions" -rfc_id = 2203 -tracking_issue_id = 49147 -+++ diff --git a/data/unstable/const_in_array_repeat_expressions.toml b/data/unstable/const_in_array_repeat_expressions.toml new file mode 100644 index 0000000..1c85468 --- /dev/null +++ b/data/unstable/const_in_array_repeat_expressions.toml @@ -0,0 +1,4 @@ +title = "constants in array repeat expressions" +flag = "const_in_array_repeat_expressions" +rfc_id = 2203 +tracking_issue_id = 49147 diff --git a/data/unstable/const_io_cursor_get_ref.md b/data/unstable/const_io_cursor_get_ref.md deleted file mode 100644 index 280bf45..0000000 --- a/data/unstable/const_io_cursor_get_ref.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`io::Cursor::get_ref` as `const fn`" -flag = "const_io_structs" -impl_pr_id = 78811 -tracking_issue_id = 78812 -+++ diff --git a/data/unstable/const_io_cursor_get_ref.toml b/data/unstable/const_io_cursor_get_ref.toml new file mode 100644 index 0000000..8dfd335 --- /dev/null +++ b/data/unstable/const_io_cursor_get_ref.toml @@ -0,0 +1,4 @@ +title = "`io::Cursor::get_ref` as `const fn`" +flag = "const_io_structs" +impl_pr_id = 78811 +tracking_issue_id = 78812 diff --git a/data/unstable/const_io_cursor_new.md b/data/unstable/const_io_cursor_new.md deleted file mode 100644 index b54c355..0000000 --- a/data/unstable/const_io_cursor_new.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`io::Cursor::new` as `const fn`" -flag = "const_io_structs" -impl_pr_id = 78811 -tracking_issue_id = 78812 -+++ diff --git a/data/unstable/const_io_cursor_new.toml b/data/unstable/const_io_cursor_new.toml new file mode 100644 index 0000000..2bab96e --- /dev/null +++ b/data/unstable/const_io_cursor_new.toml @@ -0,0 +1,4 @@ +title = "`io::Cursor::new` as `const fn`" +flag = "const_io_structs" +impl_pr_id = 78811 +tracking_issue_id = 78812 diff --git a/data/unstable/const_io_cursor_position.md b/data/unstable/const_io_cursor_position.md deleted file mode 100644 index 96b2932..0000000 --- a/data/unstable/const_io_cursor_position.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`io::Cursor::position` as `const fn`" -flag = "const_io_structs" -impl_pr_id = 78811 -tracking_issue_id = 78812 -+++ diff --git a/data/unstable/const_io_cursor_position.toml b/data/unstable/const_io_cursor_position.toml new file mode 100644 index 0000000..b9fcf0d --- /dev/null +++ b/data/unstable/const_io_cursor_position.toml @@ -0,0 +1,4 @@ +title = "`io::Cursor::position` as `const fn`" +flag = "const_io_structs" +impl_pr_id = 78811 +tracking_issue_id = 78812 diff --git a/data/unstable/const_io_empty.md b/data/unstable/const_io_empty.md deleted file mode 100644 index 070cdc5..0000000 --- a/data/unstable/const_io_empty.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`io::empty` as `const fn`" -flag = "const_io_structs" -impl_pr_id = 78811 -tracking_issue_id = 78812 -+++ diff --git a/data/unstable/const_io_empty.toml b/data/unstable/const_io_empty.toml new file mode 100644 index 0000000..4e65388 --- /dev/null +++ b/data/unstable/const_io_empty.toml @@ -0,0 +1,4 @@ +title = "`io::empty` as `const fn`" +flag = "const_io_structs" +impl_pr_id = 78811 +tracking_issue_id = 78812 diff --git a/data/unstable/const_io_repeat.md b/data/unstable/const_io_repeat.md deleted file mode 100644 index 4c64410..0000000 --- a/data/unstable/const_io_repeat.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`io::repeat` as `const fn`" -flag = "const_io_structs" -impl_pr_id = 78811 -tracking_issue_id = 78812 -+++ diff --git a/data/unstable/const_io_repeat.toml b/data/unstable/const_io_repeat.toml new file mode 100644 index 0000000..3b0fca1 --- /dev/null +++ b/data/unstable/const_io_repeat.toml @@ -0,0 +1,4 @@ +title = "`io::repeat` as `const fn`" +flag = "const_io_structs" +impl_pr_id = 78811 +tracking_issue_id = 78812 diff --git a/data/unstable/const_io_sink.md b/data/unstable/const_io_sink.md deleted file mode 100644 index 1e5077f..0000000 --- a/data/unstable/const_io_sink.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`io::sink` as `const fn`" -flag = "const_io_structs" -impl_pr_id = 78811 -tracking_issue_id = 78812 -+++ diff --git a/data/unstable/const_io_sink.toml b/data/unstable/const_io_sink.toml new file mode 100644 index 0000000..4563e19 --- /dev/null +++ b/data/unstable/const_io_sink.toml @@ -0,0 +1,4 @@ +title = "`io::sink` as `const fn`" +flag = "const_io_structs" +impl_pr_id = 78811 +tracking_issue_id = 78812 diff --git a/data/unstable/const_mut_refs.md b/data/unstable/const_mut_refs.md deleted file mode 100644 index e2a277f..0000000 --- a/data/unstable/const_mut_refs.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`&mut T` in `const` contexts" -flag = "const_mut_refs" -tracking_issue_id = 57349 -+++ diff --git a/data/unstable/const_mut_refs.toml b/data/unstable/const_mut_refs.toml new file mode 100644 index 0000000..21d9b00 --- /dev/null +++ b/data/unstable/const_mut_refs.toml @@ -0,0 +1,3 @@ +title = "`&mut T` in `const` contexts" +flag = "const_mut_refs" +tracking_issue_id = 57349 diff --git a/data/unstable/const_ptr_write.md b/data/unstable/const_ptr_write.md deleted file mode 100644 index 7329e98..0000000 --- a/data/unstable/const_ptr_write.md +++ /dev/null @@ -1,11 +0,0 @@ -+++ -title = "pointer `write` as `const fn`" -flag = "const_ptr_write" -impl_pr_id = 81167 -tracking_issue_id = 86302 -items = [ - "core::ptr::write", - "<*const T>::write", - "<*mut T>::write", -] -+++ diff --git a/data/unstable/const_ptr_write.toml b/data/unstable/const_ptr_write.toml new file mode 100644 index 0000000..c6184d7 --- /dev/null +++ b/data/unstable/const_ptr_write.toml @@ -0,0 +1,9 @@ +title = "pointer `write` as `const fn`" +flag = "const_ptr_write" +impl_pr_id = 81167 +tracking_issue_id = 86302 +items = [ + "core::ptr::write", + "<*const T>::write", + "<*mut T>::write", +] diff --git a/data/unstable/const_ptr_write_unaligned.md b/data/unstable/const_ptr_write_unaligned.md deleted file mode 100644 index 5c50297..0000000 --- a/data/unstable/const_ptr_write_unaligned.md +++ /dev/null @@ -1,11 +0,0 @@ -+++ -title = "pointer `write_unaligned` as `const fn`" -flag = "const_ptr_write" -impl_pr_id = 81167 -tracking_issue_id = 86302 -items = [ - "core::ptr::write_unaligned", - "<*const T>::write_unaligned", - "<*mut T>::write_unaligned", -] -+++ diff --git a/data/unstable/const_ptr_write_unaligned.toml b/data/unstable/const_ptr_write_unaligned.toml new file mode 100644 index 0000000..98ef0bd --- /dev/null +++ b/data/unstable/const_ptr_write_unaligned.toml @@ -0,0 +1,9 @@ +title = "pointer `write_unaligned` as `const fn`" +flag = "const_ptr_write" +impl_pr_id = 81167 +tracking_issue_id = 86302 +items = [ + "core::ptr::write_unaligned", + "<*const T>::write_unaligned", + "<*mut T>::write_unaligned", +] diff --git a/data/unstable/cow_is_borrowed.md b/data/unstable/cow_is_borrowed.md deleted file mode 100644 index 77adfff..0000000 --- a/data/unstable/cow_is_borrowed.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`Cow::is_borrowed`" -flag = "cow_is_borrowed" -impl_pr_id = 76139 -tracking_issue_id = 65143 -+++ diff --git a/data/unstable/cow_is_borrowed.toml b/data/unstable/cow_is_borrowed.toml new file mode 100644 index 0000000..bdca790 --- /dev/null +++ b/data/unstable/cow_is_borrowed.toml @@ -0,0 +1,4 @@ +title = "`Cow::is_borrowed`" +flag = "cow_is_borrowed" +impl_pr_id = 76139 +tracking_issue_id = 65143 diff --git a/data/unstable/cow_is_owned.md b/data/unstable/cow_is_owned.md deleted file mode 100644 index 2463948..0000000 --- a/data/unstable/cow_is_owned.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`Cow::is_owned`" -flag = "cow_is_borrowed" -impl_pr_id = 76139 -tracking_issue_id = 65143 -+++ diff --git a/data/unstable/cow_is_owned.toml b/data/unstable/cow_is_owned.toml new file mode 100644 index 0000000..8aea025 --- /dev/null +++ b/data/unstable/cow_is_owned.toml @@ -0,0 +1,4 @@ +title = "`Cow::is_owned`" +flag = "cow_is_borrowed" +impl_pr_id = 76139 +tracking_issue_id = 65143 diff --git a/data/unstable/cstring_from_vec_with_nul.md b/data/unstable/cstring_from_vec_with_nul.md deleted file mode 100644 index ddf2c0e..0000000 --- a/data/unstable/cstring_from_vec_with_nul.md +++ /dev/null @@ -1,10 +0,0 @@ -+++ -title = "nul-terminated `Vec` to `CString` conversions" -flag = "cstring_from_vec_with_nul" -impl_pr_id = 73139 -tracking_issue_id = 73179 -items = [ - "CString::from_vec_with_nul", - "CString::from_vec_with_nul_unchecked", -] -+++ diff --git a/data/unstable/cstring_from_vec_with_nul.toml b/data/unstable/cstring_from_vec_with_nul.toml new file mode 100644 index 0000000..33fc0c8 --- /dev/null +++ b/data/unstable/cstring_from_vec_with_nul.toml @@ -0,0 +1,8 @@ +title = "nul-terminated `Vec` to `CString` conversions" +flag = "cstring_from_vec_with_nul" +impl_pr_id = 73139 +tracking_issue_id = 73179 +items = [ + "CString::from_vec_with_nul", + "CString::from_vec_with_nul_unchecked", +] diff --git a/data/unstable/default_free_fn.md b/data/unstable/default_free_fn.md deleted file mode 100644 index 93a175e..0000000 --- a/data/unstable/default_free_fn.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "the free `default` function (shorthand for `Default::default`)" -flag = "default_free_fn" -impl_pr_id = 73001 -tracking_issue_id = 73014 -+++ diff --git a/data/unstable/default_free_fn.toml b/data/unstable/default_free_fn.toml new file mode 100644 index 0000000..616bf4c --- /dev/null +++ b/data/unstable/default_free_fn.toml @@ -0,0 +1,4 @@ +title = "the free `default` function (shorthand for `Default::default`)" +flag = "default_free_fn" +impl_pr_id = 73001 +tracking_issue_id = 73014 diff --git a/data/unstable/duration_checked_float.md b/data/unstable/duration_checked_float.md deleted file mode 100644 index dcd16a9..0000000 --- a/data/unstable/duration_checked_float.md +++ /dev/null @@ -1,10 +0,0 @@ -+++ -title = "`Duration::try_from_secs_*`" -flag = "duration_checked_float" -impl_pr_id = 82179 -tracking_issue_id = 83400 -items = [ - "Duration::try_from_secs_f32", - "Duration::try_from_secs_f64", -] -+++ diff --git a/data/unstable/duration_checked_float.toml b/data/unstable/duration_checked_float.toml new file mode 100644 index 0000000..3e31e48 --- /dev/null +++ b/data/unstable/duration_checked_float.toml @@ -0,0 +1,8 @@ +title = "`Duration::try_from_secs_*`" +flag = "duration_checked_float" +impl_pr_id = 82179 +tracking_issue_id = 83400 +items = [ + "Duration::try_from_secs_f32", + "Duration::try_from_secs_f64", +] diff --git a/data/unstable/exclusive_range_pattern.md b/data/unstable/exclusive_range_pattern.md deleted file mode 100644 index c3bff66..0000000 --- a/data/unstable/exclusive_range_pattern.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "exclusive range patterns (`a..b`)" -flag = "exclusive_range_pattern" -tracking_issue_id = 37854 -+++ diff --git a/data/unstable/exclusive_range_pattern.toml b/data/unstable/exclusive_range_pattern.toml new file mode 100644 index 0000000..c5bced4 --- /dev/null +++ b/data/unstable/exclusive_range_pattern.toml @@ -0,0 +1,3 @@ +title = "exclusive range patterns (`a..b`)" +flag = "exclusive_range_pattern" +tracking_issue_id = 37854 diff --git a/data/unstable/exhaustive_patterns.md b/data/unstable/exhaustive_patterns.md deleted file mode 100644 index 945ffc2..0000000 --- a/data/unstable/exhaustive_patterns.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "exhaustive pattern matching on types that contain uninhabited types" -flag = "exhaustive_patterns" -rfc_id = 1872 -impl_pr_id = 47630 -tracking_issue_id = 51085 -+++ diff --git a/data/unstable/exhaustive_patterns.toml b/data/unstable/exhaustive_patterns.toml new file mode 100644 index 0000000..f563729 --- /dev/null +++ b/data/unstable/exhaustive_patterns.toml @@ -0,0 +1,5 @@ +title = "exhaustive pattern matching on types that contain uninhabited types" +flag = "exhaustive_patterns" +rfc_id = 1872 +impl_pr_id = 47630 +tracking_issue_id = 51085 diff --git a/data/unstable/format_args_capture.md b/data/unstable/format_args_capture.md deleted file mode 100644 index 92632e1..0000000 --- a/data/unstable/format_args_capture.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "implicit named arguments for formatting macros" -flag = "format_args_capture" -rfc_id = 2795 -impl_pr_id = 73670 -tracking_issue_id = 67984 -+++ diff --git a/data/unstable/format_args_capture.toml b/data/unstable/format_args_capture.toml new file mode 100644 index 0000000..8f4fd98 --- /dev/null +++ b/data/unstable/format_args_capture.toml @@ -0,0 +1,5 @@ +title = "implicit named arguments for formatting macros" +flag = "format_args_capture" +rfc_id = 2795 +impl_pr_id = 73670 +tracking_issue_id = 67984 diff --git a/data/unstable/future_poll_fn.md b/data/unstable/future_poll_fn.md deleted file mode 100644 index 59f7ec5..0000000 --- a/data/unstable/future_poll_fn.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`core::future::poll_fn`" -flag = "future_poll_fn" -impl_pr_id = 72303 -tracking_issue_id = 72302 -+++ diff --git a/data/unstable/future_poll_fn.toml b/data/unstable/future_poll_fn.toml new file mode 100644 index 0000000..c55cbd2 --- /dev/null +++ b/data/unstable/future_poll_fn.toml @@ -0,0 +1,4 @@ +title = "`core::future::poll_fn`" +flag = "future_poll_fn" +impl_pr_id = 72303 +tracking_issue_id = 72302 diff --git a/data/unstable/generic_associated_types.md b/data/unstable/generic_associated_types.md deleted file mode 100644 index e5a5d83..0000000 --- a/data/unstable/generic_associated_types.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "generic associated types (GAT)" -flag = "generic_associated_types" -rfc_id = 1598 -tracking_issue_id = 44265 -+++ diff --git a/data/unstable/generic_associated_types.toml b/data/unstable/generic_associated_types.toml new file mode 100644 index 0000000..94364b2 --- /dev/null +++ b/data/unstable/generic_associated_types.toml @@ -0,0 +1,4 @@ +title = "generic associated types (GAT)" +flag = "generic_associated_types" +rfc_id = 1598 +tracking_issue_id = 44265 diff --git a/data/unstable/half_open_range_patterns.md b/data/unstable/half_open_range_patterns.md deleted file mode 100644 index b0fba5d..0000000 --- a/data/unstable/half_open_range_patterns.md +++ /dev/null @@ -1,10 +0,0 @@ -+++ -title = "half-open range patterns" -flag = "half_open_range_patterns" -impl_pr_id = 67258 -tracking_issue_id = 67264 -items = [ - "..X", - "..=X", -] -+++ diff --git a/data/unstable/half_open_range_patterns.toml b/data/unstable/half_open_range_patterns.toml new file mode 100644 index 0000000..90cc96e --- /dev/null +++ b/data/unstable/half_open_range_patterns.toml @@ -0,0 +1,8 @@ +title = "half-open range patterns" +flag = "half_open_range_patterns" +impl_pr_id = 67258 +tracking_issue_id = 67264 +items = [ + "..X", + "..=X", +] diff --git a/data/unstable/link_args.md b/data/unstable/link_args.md deleted file mode 100644 index f813b78..0000000 --- a/data/unstable/link_args.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`#[link_args]`" -flag = "link_args" -tracking_issue_id = 29596 -unstable_book_path = "language-features/link-args.html" -+++ diff --git a/data/unstable/link_args.toml b/data/unstable/link_args.toml new file mode 100644 index 0000000..651417c --- /dev/null +++ b/data/unstable/link_args.toml @@ -0,0 +1,4 @@ +title = "`#[link_args]`" +flag = "link_args" +tracking_issue_id = 29596 +unstable_book_path = "language-features/link-args.html" diff --git a/data/unstable/link_cfg.md b/data/unstable/link_cfg.md deleted file mode 100644 index 1a385c2..0000000 --- a/data/unstable/link_cfg.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`#[link(..., cfg(...))]`" -flag = "link_cfg" -tracking_issue_id = 37406 -+++ diff --git a/data/unstable/link_cfg.toml b/data/unstable/link_cfg.toml new file mode 100644 index 0000000..6b674cb --- /dev/null +++ b/data/unstable/link_cfg.toml @@ -0,0 +1,3 @@ +title = "`#[link(..., cfg(...))]`" +flag = "link_cfg" +tracking_issue_id = 37406 diff --git a/data/unstable/naked_functions.md b/data/unstable/naked_functions.md deleted file mode 100644 index af3e818..0000000 --- a/data/unstable/naked_functions.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`#[naked]` functions" -flag = "naked_functions" -tracking_issue_id = 32408 -+++ diff --git a/data/unstable/naked_functions.toml b/data/unstable/naked_functions.toml new file mode 100644 index 0000000..005bfdf --- /dev/null +++ b/data/unstable/naked_functions.toml @@ -0,0 +1,3 @@ +title = "`#[naked]` functions" +flag = "naked_functions" +tracking_issue_id = 32408 diff --git a/data/unstable/never_type.md b/data/unstable/never_type.md deleted file mode 100644 index 49638bc..0000000 --- a/data/unstable/never_type.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "the never type (`!`)" -flag = "never_type" -tracking_issue_id = 35121 -+++ diff --git a/data/unstable/never_type.toml b/data/unstable/never_type.toml new file mode 100644 index 0000000..ff7958d --- /dev/null +++ b/data/unstable/never_type.toml @@ -0,0 +1,3 @@ +title = "the never type (`!`)" +flag = "never_type" +tracking_issue_id = 35121 diff --git a/data/unstable/no_core.md b/data/unstable/no_core.md deleted file mode 100644 index 82b8b80..0000000 --- a/data/unstable/no_core.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`#![no_core]`" -flag = "no_core" -tracking_issue_id = 29639 -+++ diff --git a/data/unstable/no_core.toml b/data/unstable/no_core.toml new file mode 100644 index 0000000..4d04932 --- /dev/null +++ b/data/unstable/no_core.toml @@ -0,0 +1,3 @@ +title = "`#![no_core]`" +flag = "no_core" +tracking_issue_id = 29639 diff --git a/data/unstable/nonnull_slice_from_raw_parts.md b/data/unstable/nonnull_slice_from_raw_parts.md deleted file mode 100644 index 7f0c473..0000000 --- a/data/unstable/nonnull_slice_from_raw_parts.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`NonNull<[T]>::slice_from_raw_parts`" -flag = "nonnull_slice_from_raw_parts" -impl_pr_id = 71940 -tracking_issue_id = 71941 -+++ diff --git a/data/unstable/nonnull_slice_from_raw_parts.toml b/data/unstable/nonnull_slice_from_raw_parts.toml new file mode 100644 index 0000000..922bd60 --- /dev/null +++ b/data/unstable/nonnull_slice_from_raw_parts.toml @@ -0,0 +1,4 @@ +title = "`NonNull<[T]>::slice_from_raw_parts`" +flag = "nonnull_slice_from_raw_parts" +impl_pr_id = 71940 +tracking_issue_id = 71941 diff --git a/data/unstable/nonzero_is_power_of_two.md b/data/unstable/nonzero_is_power_of_two.md deleted file mode 100644 index 0c5fe80..0000000 --- a/data/unstable/nonzero_is_power_of_two.md +++ /dev/null @@ -1,14 +0,0 @@ -+++ -title = "`NonZeroU*::is_power_of_two`" -flag = "nonzero_is_power_of_two" -impl_pr_id = 81107 -tracking_issue_id = 81106 -items = [ - "NonZeroU8::is_power_of_two", - "NonZeroU16::is_power_of_two", - "NonZeroU32::is_power_of_two", - "NonZeroU64::is_power_of_two", - "NonZeroU128::is_power_of_two", - "NonZeroUsize::is_power_of_two", -] -+++ diff --git a/data/unstable/nonzero_is_power_of_two.toml b/data/unstable/nonzero_is_power_of_two.toml new file mode 100644 index 0000000..3bf40c6 --- /dev/null +++ b/data/unstable/nonzero_is_power_of_two.toml @@ -0,0 +1,12 @@ +title = "`NonZeroU*::is_power_of_two`" +flag = "nonzero_is_power_of_two" +impl_pr_id = 81107 +tracking_issue_id = 81106 +items = [ + "NonZeroU8::is_power_of_two", + "NonZeroU16::is_power_of_two", + "NonZeroU32::is_power_of_two", + "NonZeroU64::is_power_of_two", + "NonZeroU128::is_power_of_two", + "NonZeroUsize::is_power_of_two", +] diff --git a/data/unstable/option_contains.md b/data/unstable/option_contains.md deleted file mode 100644 index 26ca30b..0000000 --- a/data/unstable/option_contains.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`Option::contains`" -flag = "option_result_contains" -impl_pr_id = 62356 -tracking_issue_id = 62358 -+++ diff --git a/data/unstable/option_contains.toml b/data/unstable/option_contains.toml new file mode 100644 index 0000000..9b719e3 --- /dev/null +++ b/data/unstable/option_contains.toml @@ -0,0 +1,4 @@ +title = "`Option::contains`" +flag = "option_result_contains" +impl_pr_id = 62356 +tracking_issue_id = 62358 diff --git a/data/unstable/option_unzip.md b/data/unstable/option_unzip.md deleted file mode 100644 index 8c23242..0000000 --- a/data/unstable/option_unzip.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`Option::unzip`" -flag = "unzip_option" -impl_pr_id = 87636 -tracking_issue_id = 87800 -+++ diff --git a/data/unstable/option_unzip.toml b/data/unstable/option_unzip.toml new file mode 100644 index 0000000..6f74c60 --- /dev/null +++ b/data/unstable/option_unzip.toml @@ -0,0 +1,4 @@ +title = "`Option::unzip`" +flag = "unzip_option" +impl_pr_id = 87636 +tracking_issue_id = 87800 diff --git a/data/unstable/option_zip_with.md b/data/unstable/option_zip_with.md deleted file mode 100644 index b604a2e..0000000 --- a/data/unstable/option_zip_with.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`Option::zip_with`" -flag = "option_zip" -impl_pr_id = 69997 -tracking_issue_id = 70086 -+++ diff --git a/data/unstable/option_zip_with.toml b/data/unstable/option_zip_with.toml new file mode 100644 index 0000000..b43c81c --- /dev/null +++ b/data/unstable/option_zip_with.toml @@ -0,0 +1,4 @@ +title = "`Option::zip_with`" +flag = "option_zip" +impl_pr_id = 69997 +tracking_issue_id = 70086 diff --git a/data/unstable/pin_static_mut.md b/data/unstable/pin_static_mut.md deleted file mode 100644 index 29e61a5..0000000 --- a/data/unstable/pin_static_mut.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`Pin::static_mut`" -flag = "pin_static_ref" -impl_pr_id = 77726 -tracking_issue_id = 78186 -+++ diff --git a/data/unstable/pin_static_mut.toml b/data/unstable/pin_static_mut.toml new file mode 100644 index 0000000..612d24d --- /dev/null +++ b/data/unstable/pin_static_mut.toml @@ -0,0 +1,4 @@ +title = "`Pin::static_mut`" +flag = "pin_static_ref" +impl_pr_id = 77726 +tracking_issue_id = 78186 diff --git a/data/unstable/pin_static_ref.md b/data/unstable/pin_static_ref.md deleted file mode 100644 index 14de819..0000000 --- a/data/unstable/pin_static_ref.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`Pin::static_ref`" -flag = "pin_static_ref" -impl_pr_id = 77726 -tracking_issue_id = 78186 -+++ diff --git a/data/unstable/pin_static_ref.toml b/data/unstable/pin_static_ref.toml new file mode 100644 index 0000000..af2ec86 --- /dev/null +++ b/data/unstable/pin_static_ref.toml @@ -0,0 +1,4 @@ +title = "`Pin::static_ref`" +flag = "pin_static_ref" +impl_pr_id = 77726 +tracking_issue_id = 78186 diff --git a/data/unstable/plugin.md b/data/unstable/plugin.md deleted file mode 100644 index 88bd07c..0000000 --- a/data/unstable/plugin.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`#![plugin(...)]`" -flag = "plugin" -tracking_issue_id = 29597 -unstable_book_path = "language-features/plugin.html" -+++ diff --git a/data/unstable/plugin.toml b/data/unstable/plugin.toml new file mode 100644 index 0000000..04a6c09 --- /dev/null +++ b/data/unstable/plugin.toml @@ -0,0 +1,4 @@ +title = "`#![plugin(...)]`" +flag = "plugin" +tracking_issue_id = 29597 +unstable_book_path = "language-features/plugin.html" diff --git a/data/unstable/plugin_registrar.md b/data/unstable/plugin_registrar.md deleted file mode 100644 index 28dbc65..0000000 --- a/data/unstable/plugin_registrar.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`#[plugin_registrar]`" -flag = "plugin_registrar" -tracking_issue_id = 29597 -unstable_book_path = "language-features/plugin-registrar.html" -+++ diff --git a/data/unstable/plugin_registrar.toml b/data/unstable/plugin_registrar.toml new file mode 100644 index 0000000..6ca622c --- /dev/null +++ b/data/unstable/plugin_registrar.toml @@ -0,0 +1,4 @@ +title = "`#[plugin_registrar]`" +flag = "plugin_registrar" +tracking_issue_id = 29597 +unstable_book_path = "language-features/plugin-registrar.html" diff --git a/data/unstable/pub_macro_rules.md b/data/unstable/pub_macro_rules.md deleted file mode 100644 index b298a45..0000000 --- a/data/unstable/pub_macro_rules.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "module scoping for `macro_rules!` macros" -flag = "pub_macro_rules" -impl_pr_id = 82296 -tracking_issue_id = 78855 -+++ diff --git a/data/unstable/pub_macro_rules.toml b/data/unstable/pub_macro_rules.toml new file mode 100644 index 0000000..3892279 --- /dev/null +++ b/data/unstable/pub_macro_rules.toml @@ -0,0 +1,4 @@ +title = "module scoping for `macro_rules!` macros" +flag = "pub_macro_rules" +impl_pr_id = 82296 +tracking_issue_id = 78855 diff --git a/data/unstable/raw_ref_op.md b/data/unstable/raw_ref_op.md deleted file mode 100644 index 9ae8171..0000000 --- a/data/unstable/raw_ref_op.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "the raw reference operator (`&raw [mut | const] $place`)" -flag = "raw_ref_op" -rfc_id = 2582 -tracking_issue_id = 64490 -impl_pr_id = 64588 -+++ diff --git a/data/unstable/raw_ref_op.toml b/data/unstable/raw_ref_op.toml new file mode 100644 index 0000000..f8b82f0 --- /dev/null +++ b/data/unstable/raw_ref_op.toml @@ -0,0 +1,5 @@ +title = "the raw reference operator (`&raw [mut | const] $place`)" +flag = "raw_ref_op" +rfc_id = 2582 +tracking_issue_id = 64490 +impl_pr_id = 64588 diff --git a/data/unstable/result_contains.md b/data/unstable/result_contains.md deleted file mode 100644 index 806c437..0000000 --- a/data/unstable/result_contains.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "`Result::contains`" -flag = "option_result_contains" -impl_pr_id = 62356 -tracking_issue_id = 62358 -+++ diff --git a/data/unstable/result_contains.toml b/data/unstable/result_contains.toml new file mode 100644 index 0000000..535b350 --- /dev/null +++ b/data/unstable/result_contains.toml @@ -0,0 +1,4 @@ +title = "`Result::contains`" +flag = "option_result_contains" +impl_pr_id = 62356 +tracking_issue_id = 62358 diff --git a/data/unstable/slice_ptr_len.md b/data/unstable/slice_ptr_len.md deleted file mode 100644 index 64f42be..0000000 --- a/data/unstable/slice_ptr_len.md +++ /dev/null @@ -1,11 +0,0 @@ -+++ -title = "the `len` method on raw slices" -flag = "slice_ptr_len" -impl_pr_id = 71082 # and 71940 -tracking_issue_id = 71146 -items = [ - "<*const [T]>::len", - "<*mut [T]>::len", - "NonNull<[T]>::len", -] -+++ diff --git a/data/unstable/slice_ptr_len.toml b/data/unstable/slice_ptr_len.toml new file mode 100644 index 0000000..9b290b4 --- /dev/null +++ b/data/unstable/slice_ptr_len.toml @@ -0,0 +1,9 @@ +title = "the `len` method on raw slices" +flag = "slice_ptr_len" +impl_pr_id = 71082 # and 71940 +tracking_issue_id = 71146 +items = [ + "<*const [T]>::len", + "<*mut [T]>::len", + "NonNull<[T]>::len", +] diff --git a/data/unstable/specialization.md b/data/unstable/specialization.md deleted file mode 100644 index 84e6db6..0000000 --- a/data/unstable/specialization.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "specialization" -flag = "specialization" -tracking_issue_id = 31844 -+++ diff --git a/data/unstable/specialization.toml b/data/unstable/specialization.toml new file mode 100644 index 0000000..5bfa54b --- /dev/null +++ b/data/unstable/specialization.toml @@ -0,0 +1,3 @@ +title = "specialization" +flag = "specialization" +tracking_issue_id = 31844 diff --git a/data/unstable/thread_local.md b/data/unstable/thread_local.md deleted file mode 100644 index 04d1cbe..0000000 --- a/data/unstable/thread_local.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "`#[thread_local]` on `static`s" -flag = "thread_local" -tracking_issue_id = 29594 -+++ diff --git a/data/unstable/thread_local.toml b/data/unstable/thread_local.toml new file mode 100644 index 0000000..f8d7427 --- /dev/null +++ b/data/unstable/thread_local.toml @@ -0,0 +1,3 @@ +title = "`#[thread_local]` on `static`s" +flag = "thread_local" +tracking_issue_id = 29594 diff --git a/data/unstable/total_cmp.md b/data/unstable/total_cmp.md deleted file mode 100644 index d50f0e2..0000000 --- a/data/unstable/total_cmp.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "the `total_cmp` method on float types" -flag = "total_cmp" -impl_pr_id = 72568 -tracking_issue_id = 72599 -items = ["f32::total_cmp", "f64::total_cmp"] -+++ diff --git a/data/unstable/total_cmp.toml b/data/unstable/total_cmp.toml new file mode 100644 index 0000000..53d18fc --- /dev/null +++ b/data/unstable/total_cmp.toml @@ -0,0 +1,5 @@ +title = "the `total_cmp` method on float types" +flag = "total_cmp" +impl_pr_id = 72568 +tracking_issue_id = 72599 +items = ["f32::total_cmp", "f64::total_cmp"] diff --git a/data/unstable/type_ascription.md b/data/unstable/type_ascription.md deleted file mode 100644 index 3e52349..0000000 --- a/data/unstable/type_ascription.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "type ascription" -flag = "type_ascription" -rfc_id = 803 -tracking_issue_id = 23416 -+++ diff --git a/data/unstable/type_ascription.toml b/data/unstable/type_ascription.toml new file mode 100644 index 0000000..8d34a57 --- /dev/null +++ b/data/unstable/type_ascription.toml @@ -0,0 +1,4 @@ +title = "type ascription" +flag = "type_ascription" +rfc_id = 803 +tracking_issue_id = 23416