From 7ba45d66e663bb46aa5044198d1800dd7d4ba039 Mon Sep 17 00:00:00 2001 From: Remo Senekowitsch Date: Sat, 8 Mar 2025 17:22:25 +0100 Subject: [PATCH 1/7] Add date field to front matter spec --- front_matter/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/front_matter/src/lib.rs b/front_matter/src/lib.rs index 999146a84..8861d20e9 100644 --- a/front_matter/src/lib.rs +++ b/front_matter/src/lib.rs @@ -1,10 +1,12 @@ use eyre::bail; use serde::{Deserialize, Serialize}; +use toml::value::Date; /// The front matter of a markdown blog post. #[derive(Debug, PartialEq, Serialize, Deserialize)] pub struct FrontMatter { pub layout: String, + pub date: Date, pub title: String, pub author: String, pub description: Option, From 3324c4fc2c4730c09d81421fc9c3cc28eadc673a Mon Sep 17 00:00:00 2001 From: Remo Senekowitsch Date: Sat, 8 Mar 2025 20:09:38 +0100 Subject: [PATCH 2/7] Parse date from front matter instead of file name --- src/posts.rs | 25 +++++++++---------------- 1 file changed, 9 insertions(+), 16 deletions(-) diff --git a/src/posts.rs b/src/posts.rs index 5e9ea0d8e..39845dab2 100644 --- a/src/posts.rs +++ b/src/posts.rs @@ -6,6 +6,7 @@ use std::{ path::{Path, PathBuf}, sync::LazyLock, }; +use toml::value::Date; #[derive(Debug, Clone, Serialize)] pub struct Post { @@ -13,10 +14,10 @@ pub struct Post { pub(crate) layout: String, pub(crate) title: String, pub(crate) author: String, - pub(crate) year: i32, + pub(crate) year: u16, pub(crate) show_year: bool, - pub(crate) month: u32, - pub(crate) day: u32, + pub(crate) month: u8, + pub(crate) day: u8, pub(crate) contents: String, pub(crate) url: String, pub(crate) published: String, @@ -30,16 +31,7 @@ pub struct Post { impl Post { pub(crate) fn open(path: &Path, manifest: &Manifest) -> eyre::Result { // yeah this might blow up, but it won't - let filename = path.file_name().unwrap().to_str().unwrap(); - - // we need to get the metadata out of the url - let mut split = filename.splitn(4, '-'); - - // we do some unwraps because these need to be valid - let year = split.next().unwrap().parse::().unwrap(); - let month = split.next().unwrap().parse::().unwrap(); - let day = split.next().unwrap().parse::().unwrap(); - let filename = split.next().unwrap().to_string(); + let filename = path.file_name().unwrap().to_str().unwrap().into(); let contents = std::fs::read_to_string(path)?; @@ -50,6 +42,7 @@ impl Post { release, team: team_string, layout, + date: Date { year, month, day }, .. }, contents, @@ -69,7 +62,7 @@ impl Post { let contents = comrak::markdown_to_html(contents, &options); // finally, the url. - let mut url = PathBuf::from(&*filename); + let mut url = PathBuf::from(&filename); url.set_extension("html"); // this is fine @@ -139,8 +132,8 @@ impl Post { } } -fn build_post_time(year: i32, month: u32, day: u32, seconds: u32) -> String { - let date = chrono::NaiveDate::from_ymd_opt(year, month, day).unwrap(); +fn build_post_time(year: u16, month: u8, day: u8, seconds: u32) -> String { + let date = chrono::NaiveDate::from_ymd_opt(year.into(), month.into(), day.into()).unwrap(); let date_time = date.and_hms_opt(0, 0, seconds).unwrap(); chrono::DateTime::::from_naive_utc_and_offset(date_time, chrono::Utc).to_rfc3339() } From dc16817fd137a380807b8a7e5b14f26acf91d079 Mon Sep 17 00:00:00 2001 From: Remo Senekowitsch Date: Sat, 8 Mar 2025 19:46:39 +0100 Subject: [PATCH 3/7] Add date to front matter of every post --- posts/2014-09-15-Rust-1.0.md | 1 + posts/2014-10-30-Stability.md | 1 + posts/2014-11-20-Cargo.md | 1 + posts/2014-12-12-1.0-Timeline.md | 1 + posts/2014-12-12-Core-Team.md | 1 + posts/2015-01-09-Rust-1.0-alpha.md | 1 + posts/2015-02-13-Final-1.0-timeline.md | 1 + posts/2015-02-20-Rust-1.0-alpha2.md | 1 + posts/2015-04-03-Rust-1.0-beta.md | 1 + posts/2015-04-10-Fearless-Concurrency.md | 1 + posts/2015-04-17-Enums-match-mutation-and-moves.md | 1 + posts/2015-04-24-Rust-Once-Run-Everywhere.md | 1 + posts/2015-05-11-traits.md | 1 + posts/2015-05-15-Rust-1.0.md | 1 + posts/2015-06-25-Rust-1.1.md | 1 + posts/2015-08-06-Rust-1.2.md | 1 + posts/2015-08-14-Next-year.md | 1 + posts/2015-09-17-Rust-1.3.md | 1 + posts/2015-10-29-Rust-1.4.md | 1 + posts/2015-12-10-Rust-1.5.md | 1 + posts/2016-01-21-Rust-1.6.md | 1 + posts/2016-03-02-Rust-1.7.md | 1 + posts/2016-04-14-Rust-1.8.md | 1 + posts/2016-04-19-MIR.md | 1 + posts/2016-05-05-cargo-pillars.md | 1 + posts/2016-05-09-survey.md | 1 + posts/2016-05-13-rustup.md | 1 + posts/2016-05-16-rust-at-one-year.md | 1 + posts/2016-05-26-Rust-1.9.md | 1 + posts/2016-06-30-State-of-Rust-Survey-2016.md | 1 + posts/2016-07-07-Rust-1.10.md | 1 + posts/2016-07-25-conf-lineup.md | 1 + posts/2016-08-10-Shape-of-errors-to-come.md | 1 + posts/2016-08-18-Rust-1.11.md | 1 + posts/2016-09-08-incremental.md | 1 + posts/2016-09-29-Rust-1.12.md | 1 + posts/2016-10-20-Rust-1.12.1.md | 1 + posts/2016-11-10-Rust-1.13.md | 1 + posts/2016-12-15-Underhanded-Rust.md | 1 + posts/2016-12-22-Rust-1.14.md | 1 + posts/2017-02-02-Rust-1.15.md | 1 + posts/2017-02-06-roadmap.md | 1 + posts/2017-02-09-Rust-1.15.1.md | 1 + posts/2017-03-02-lang-ergonomics.md | 1 + posts/2017-03-16-Rust-1.16.md | 1 + posts/2017-04-27-Rust-1.17.md | 1 + posts/2017-05-03-survey.md | 1 + posts/2017-05-05-libz-blitz.md | 1 + posts/2017-05-15-rust-at-two-years.md | 1 + posts/2017-06-08-Rust-1.18.md | 1 + posts/2017-06-27-Increasing-Rusts-Reach.md | 1 + posts/2017-07-05-Rust-Roadmap-Update.md | 1 + posts/2017-07-18-conf-lineup.md | 1 + posts/2017-07-20-Rust-1.19.md | 1 + posts/2017-08-31-Rust-1.20.md | 1 + posts/2017-09-05-Rust-2017-Survey-Results.md | 1 + posts/2017-09-18-impl-future-for-rust.md | 1 + posts/2017-10-12-Rust-1.21.md | 1 + posts/2017-11-14-Fearless-Concurrency-In-Firefox-Quantum.md | 1 + posts/2017-11-22-Rust-1.22.md | 1 + posts/2017-12-21-rust-in-2017.md | 1 + .../2018-01-03-new-years-rust-a-call-for-community-blogposts.md | 1 + posts/2018-01-04-Rust-1.23.md | 1 + posts/2018-01-31-The-2018-Rust-Event-Lineup.md | 1 + posts/2018-02-15-Rust-1.24.md | 1 + posts/2018-03-01-Rust-1.24.1.md | 1 + posts/2018-03-12-roadmap.md | 1 + posts/2018-03-29-Rust-1.25.md | 1 + posts/2018-04-02-Increasing-Rusts-Reach-2018.md | 1 + posts/2018-04-06-all-hands.md | 1 + posts/2018-05-10-Rust-1.26.md | 1 + posts/2018-05-15-Rust-turns-three.md | 1 + posts/2018-05-29-Rust-1.26.1.md | 1 + posts/2018-06-05-Rust-1.26.2.md | 1 + posts/2018-06-21-Rust-1.27.md | 1 + posts/2018-07-06-security-advisory-for-rustdoc.md | 1 + posts/2018-07-10-Rust-1.27.1.md | 1 + posts/2018-07-20-Rust-1.27.2.md | 1 + posts/2018-07-27-what-is-rust-2018.md | 1 + posts/2018-08-02-Rust-1.28.md | 1 + posts/2018-08-08-survey.md | 1 + posts/2018-09-13-Rust-1.29.md | 1 + posts/2018-09-21-Security-advisory-for-std.md | 1 + posts/2018-09-25-Rust-1.29.1.md | 1 + posts/2018-10-12-Rust-1.29.2.md | 1 + posts/2018-10-19-Update-on-crates.io-incident.md | 1 + posts/2018-10-25-Rust-1.30.0.md | 1 + posts/2018-10-30-help-test-rust-2018.md | 1 + posts/2018-11-08-Rust-1.30.1.md | 1 + posts/2018-11-27-Rust-survey-2018.md | 1 + posts/2018-11-29-a-new-look-for-rust-lang-org.md | 1 + posts/2018-12-06-Rust-1.31-and-rust-2018.md | 1 + posts/2018-12-06-call-for-rust-2019-roadmap-blogposts.md | 1 + posts/2018-12-17-Rust-2018-dev-tools.md | 1 + posts/2018-12-20-Rust-1.31.1.md | 1 + posts/2018-12-21-Procedural-Macros-in-Rust-2018.md | 1 + posts/2019-01-17-Rust-1.32.0.md | 1 + posts/2019-02-22-Core-team-changes.md | 1 + posts/2019-02-28-Rust-1.33.0.md | 1 + posts/2019-04-11-Rust-1.34.0.md | 1 + posts/2019-04-23-roadmap.md | 1 + posts/2019-04-25-Rust-1.34.1.md | 1 + posts/2019-04-26-Mozilla-IRC-Sunset-and-the-Rust-Channel.md | 1 + posts/2019-05-13-Security-advisory.md | 1 + posts/2019-05-14-Rust-1.34.2.md | 1 + posts/2019-05-15-4-Years-Of-Rust.md | 1 + posts/2019-05-20-The-2019-Rust-Event-Lineup.md | 1 + posts/2019-05-23-Rust-1.35.0.md | 1 + posts/2019-06-03-governance-wg-announcement.md | 1 + posts/2019-07-04-Rust-1.36.0.md | 1 + posts/2019-08-15-Rust-1.37.0.md | 1 + posts/2019-09-18-upcoming-docsrs-changes.md | 1 + posts/2019-09-26-Rust-1.38.0.md | 1 + posts/2019-09-30-Async-await-hits-beta.md | 1 + posts/2019-09-30-Security-advisory-for-cargo.md | 1 + posts/2019-10-03-inside-rust-blog.md | 1 + posts/2019-10-15-Rustup-1.20.0.md | 1 + posts/2019-10-29-A-call-for-blogs-2020.md | 1 + posts/2019-11-01-nll-hard-errors.md | 1 + posts/2019-11-07-Async-await-stable.md | 1 + posts/2019-11-07-Rust-1.39.0.md | 1 + posts/2019-12-03-survey-launch.md | 1 + posts/2019-12-19-Rust-1.40.0.md | 1 + posts/2020-01-03-reducing-support-for-32-bit-apple-targets.md | 1 + posts/2020-01-30-Rust-1.41.0.md | 1 + posts/2020-01-31-conf-lineup.md | 1 + posts/2020-02-27-Rust-1.41.1.md | 1 + posts/2020-03-10-rustconf-cfp.md | 1 + posts/2020-03-12-Rust-1.42.md | 1 + posts/2020-03-15-docs-rs-opt-into-fewer-targets.md | 1 + posts/2020-04-17-Rust-survey-2019.md | 1 + posts/2020-04-23-Rust-1.43.0.md | 1 + posts/2020-05-07-Rust.1.43.1.md | 1 + posts/2020-05-15-five-years-of-rust.md | 1 + posts/2020-06-04-Rust-1.44.0.md | 1 + posts/2020-06-10-event-lineup-update.md | 1 + posts/2020-06-18-Rust.1.44.1.md | 1 + posts/2020-07-06-Rustup-1.22.0.md | 1 + posts/2020-07-08-Rustup-1.22.1.md | 1 + posts/2020-07-14-crates-io-security-advisory.md | 1 + posts/2020-07-16-Rust-1.45.0.md | 1 + posts/2020-07-30-Rust-1.45.1.md | 1 + posts/2020-08-03-Rust-1.45.2.md | 1 + posts/2020-08-18-laying-the-foundation-for-rusts-future.md | 1 + posts/2020-08-27-Rust-1.46.0.md | 1 + posts/2020-09-03-Planning-2021-Roadmap.md | 1 + posts/2020-09-10-survey-launch.md | 1 + posts/2020-09-14-wg-prio-call-for-contributors.md | 1 + posts/2020-09-21-Scheduling-2021-Roadmap.md | 1 + posts/2020-10-08-Rust-1.47.md | 1 + posts/2020-10-20-regression-labels.md | 1 + posts/2020-11-19-Rust-1.48.md | 1 + posts/2020-11-27-Rustup-1.23.0.md | 1 + posts/2020-12-07-the-foundation-conversation.md | 1 + posts/2020-12-11-lock-poisoning-survey.md | 1 + posts/2020-12-14-Next-steps-for-the-foundation-conversation.md | 1 + posts/2020-12-16-rust-survey-2020.md | 1 + posts/2020-12-31-Rust-1.49.0.md | 1 + posts/2021-01-04-mdbook-security-advisory.md | 1 + posts/2021-02-11-Rust-1.50.0.md | 1 + posts/2021-02-26-const-generics-mvp-beta.md | 1 + posts/2021-03-18-async-vision-doc.md | 1 + posts/2021-03-25-Rust-1.51.0.md | 1 + posts/2021-04-14-async-vision-doc-shiny-future.md | 1 + posts/2021-04-27-Rustup-1.24.0.md | 1 + posts/2021-04-29-Rustup-1.24.1.md | 1 + posts/2021-05-06-Rust-1.52.0.md | 1 + posts/2021-05-10-Rust-1.52.1.md | 1 + posts/2021-05-11-edition-2021.md | 1 + posts/2021-05-15-six-years-of-rust.md | 1 + posts/2021-05-17-Rustup-1.24.2.md | 1 + posts/2021-06-08-Rustup-1.24.3.md | 1 + posts/2021-06-17-Rust-1.53.0.md | 1 + posts/2021-07-21-Rust-2021-public-testing.md | 1 + posts/2021-07-29-Rust-1.54.0.md | 1 + posts/2021-08-03-GATs-stabilization-push.md | 1 + posts/2021-09-09-Rust-1.55.0.md | 1 + posts/2021-09-27-Core-team-membership-updates.md | 1 + posts/2021-10-21-Rust-1.56.0.md | 1 + posts/2021-11-01-Rust-1.56.1.md | 1 + posts/2021-11-01-cve-2021-42574.md | 1 + posts/2021-12-02-Rust-1.57.0.md | 1 + posts/2021-12-08-survey-launch.md | 1 + posts/2022-01-13-Rust-1.58.0.md | 1 + posts/2022-01-20-Rust-1.58.1.md | 1 + posts/2022-01-20-cve-2022-21658.md | 1 + posts/2022-01-31-changes-in-the-core-team.md | 1 + posts/2022-02-14-crates-io-snapshot-branches.md | 1 + posts/2022-02-15-Rust-Survey-2021.md | 1 + posts/2022-02-21-rust-analyzer-joins-rust-org.md | 1 + posts/2022-02-24-Rust-1.59.0.md | 1 + posts/2022-03-08-cve-2022-24713.md | 1 + posts/2022-04-07-Rust-1.60.0.md | 1 + posts/2022-05-10-malicious-crate-rustdecimal.md | 1 + posts/2022-05-19-Rust-1.61.0.md | 1 + posts/2022-06-22-sparse-registry-testing.md | 1 + posts/2022-06-28-rust-unconference.md | 1 + posts/2022-06-30-Rust-1.62.0.md | 1 + posts/2022-07-01-RLS-deprecation.md | 1 + posts/2022-07-11-Rustup-1.25.0.md | 1 + posts/2022-07-12-Rustup-1.25.1.md | 1 + posts/2022-07-12-changes-in-the-core-team.md | 1 + posts/2022-07-19-Rust-1.62.1.md | 1 + posts/2022-08-01-Increasing-glibc-kernel-requirements.md | 1 + posts/2022-08-05-nll-by-default.md | 1 + posts/2022-08-11-Rust-1.63.0.md | 1 + posts/2022-09-14-cargo-cves.md | 1 + posts/2022-09-15-const-eval-safety-rule-revision.md | 1 + posts/2022-09-22-Rust-1.64.0.md | 1 + posts/2022-10-28-gats-stabilization.md | 1 + posts/2022-11-03-Rust-1.65.0.md | 1 + posts/2022-12-05-survey-launch.md | 1 + posts/2022-12-15-Rust-1.66.0.md | 1 + posts/2023-01-09-android-ndk-update-r25.md | 1 + posts/2023-01-10-Rust-1.66.1.md | 1 + posts/2023-01-10-cve-2022-46176.md | 1 + posts/2023-01-20-types-announcement.md | 1 + posts/2023-01-26-Rust-1.67.0.md | 1 + posts/2023-02-01-Rustup-1.25.2.md | 1 + posts/2023-02-09-Rust-1.67.1.md | 1 + posts/2023-03-09-Rust-1.68.0.md | 1 + posts/2023-03-23-Rust-1.68.1.md | 1 + posts/2023-03-28-Rust-1.68.2.md | 1 + posts/2023-04-20-Rust-1.69.0.md | 1 + posts/2023-04-25-Rustup-1.26.0.md | 1 + posts/2023-05-09-Updating-musl-targets.md | 1 + posts/2023-05-29-RustConf.md | 1 + posts/2023-06-01-Rust-1.70.0.md | 1 + posts/2023-06-20-introducing-leadership-council.md | 1 + posts/2023-06-23-improved-api-tokens-for-crates-io.md | 1 + posts/2023-07-01-rustfmt-supports-let-else-statements.md | 1 + posts/2023-07-05-regex-1.9.md | 1 + posts/2023-07-13-Rust-1.71.0.md | 1 + posts/2023-08-03-Rust-1.71.1.md | 1 + posts/2023-08-03-cve-2023-38497.md | 1 + posts/2023-08-07-Rust-Survey-2023-Results.md | 1 + posts/2023-08-24-Rust-1.72.0.md | 1 + posts/2023-08-29-committing-lockfiles.md | 1 + posts/2023-08-30-electing-new-project-directors.md | 1 + posts/2023-09-19-Rust-1.72.1.md | 1 + posts/2023-09-22-crates-io-usage-policy-rfc.md | 1 + posts/2023-09-25-Increasing-Apple-Version-Requirements.md | 1 + posts/2023-10-05-Rust-1.73.0.md | 1 + posts/2023-10-19-announcing-the-new-rust-project-directors.md | 1 + posts/2023-10-26-broken-badges-and-23k-keywords.md | 1 + posts/2023-10-27-crates-io-non-canonical-downloads.md | 1 + posts/2023-11-09-parallel-rustc.md | 1 + posts/2023-11-16-Rust-1.74.0.md | 1 + posts/2023-12-07-Rust-1.74.1.md | 1 + posts/2023-12-11-cargo-cache-cleaning.md | 1 + posts/2023-12-15-2024-Edition-CFP.md | 1 + posts/2023-12-18-survey-launch.md | 1 + posts/2023-12-21-async-fn-rpit-in-traits.md | 1 + posts/2023-12-28-Rust-1.75.0.md | 1 + posts/2024-02-06-crates-io-status-codes.md | 1 + posts/2024-02-08-Rust-1.76.0.md | 1 + posts/2024-02-19-2023-Rust-Annual-Survey-2023-results.md | 1 + posts/2024-02-21-Rust-participates-in-GSoC-2024.md | 1 + posts/2024-02-26-Windows-7.md | 1 + posts/2024-02-28-Clippy-deprecating-feature-cargo-clippy.md | 1 + posts/2024-03-11-Rustup-1.27.0.md | 1 + posts/2024-03-11-crates-io-download-changes.md | 1 + posts/2024-03-21-Rust-1.77.0.md | 1 + posts/2024-03-28-Rust-1.77.1.md | 1 + posts/2024-03-30-i128-layout-update.md | 1 + posts/2024-04-09-Rust-1.77.2.md | 1 + posts/2024-04-09-cve-2024-24576.md | 1 + posts/2024-04-09-updates-to-rusts-wasi-targets.md | 1 + posts/2024-05-01-gsoc-2024-selected-projects.md | 1 + posts/2024-05-02-Rust-1.78.0.md | 1 + posts/2024-05-06-Rustup-1.27.1.md | 1 + posts/2024-05-06-check-cfg.md | 1 + posts/2024-05-07-OSPP-2024.md | 1 + posts/2024-05-17-enabling-rust-lld-on-linux.md | 1 + posts/2024-06-13-Rust-1.79.0.md | 1 + posts/2024-06-26-types-team-update.md | 1 + posts/2024-07-25-Rust-1.80.0.md | 1 + posts/2024-07-29-crates-io-development-update.md | 1 + posts/2024-08-08-Rust-1.80.1.md | 1 + posts/2024-08-12-Project-goals.md | 1 + posts/2024-08-26-council-survey.md | 1 + posts/2024-09-04-cve-2024-43402.md | 1 + posts/2024-09-05-Rust-1.81.0.md | 1 + posts/2024-09-05-impl-trait-capture-rules.md | 1 + posts/2024-09-23-Project-Goals-Sep-Update.md | 1 + ...9-24-webassembly-targets-change-in-default-target-features.md | 1 + posts/2024-10-17-Rust-1.82.0.md | 1 + posts/2024-10-31-project-goals-oct-update.md | 1 + posts/2024-11-06-trademark-update.md | 1 + posts/2024-11-07-gccrs-an-alternative-compiler-for-rust.md | 1 + posts/2024-11-07-gsoc-2024-results.md | 1 + posts/2024-11-26-wasip2-tier-2.md | 1 + posts/2024-11-27-Rust-2024-public-testing.md | 1 + posts/2024-11-28-Rust-1.83.0.md | 1 + posts/2024-12-05-annual-survey-2024-launch.md | 1 + posts/2024-12-16-project-goals-nov-update.md | 1 + posts/2025-01-09-Rust-1.84.0.md | 1 + posts/2025-01-22-rust-2024-beta.md | 1 + posts/2025-01-23-Project-Goals-Dec-Update.md | 1 + posts/2025-01-30-Rust-1.84.1.md | 1 + posts/2025-02-05-crates-io-development-update.md | 1 + posts/2025-02-13-2024-State-Of-Rust-Survey-results.md | 1 + posts/2025-02-20-Rust-1.85.0.md | 1 + posts/2025-03-02-Rustup-1.28.0.md | 1 + posts/2025-03-03-Project-Goals-Feb-Update.md | 1 + posts/2025-03-03-Rust-participates-in-GSoC-2025.md | 1 + posts/2025-03-04-Rustup-1.28.1.md | 1 + posts/inside-rust/2019-09-25-Welcome.md | 1 + .../2019-10-03-Keeping-secure-with-cargo-audit-0.9.md | 1 + posts/inside-rust/2019-10-07-AsyncAwait-WG-Focus-Issues.md | 1 + .../2019-10-11-AsyncAwait-Not-Send-Error-Improvements.md | 1 + posts/inside-rust/2019-10-11-Lang-Team-Meeting.md | 1 + posts/inside-rust/2019-10-15-compiler-team-meeting.md | 1 + posts/inside-rust/2019-10-15-infra-team-meeting.md | 1 + .../2019-10-17-ecstatic-morse-for-compiler-contributors.md | 1 + posts/inside-rust/2019-10-21-compiler-team-meeting.md | 1 + posts/inside-rust/2019-10-22-LLVM-ICE-breakers.md | 1 + posts/inside-rust/2019-10-22-infra-team-meeting.md | 1 + posts/inside-rust/2019-10-24-docsrs-outage-postmortem.md | 1 + posts/inside-rust/2019-10-24-pnkfelix-compiler-team-co-lead.md | 1 + posts/inside-rust/2019-10-25-planning-meeting-update.md | 1 + .../2019-10-28-rustc-learning-working-group-introduction.md | 1 + posts/inside-rust/2019-10-29-infra-team-meeting.md | 1 + posts/inside-rust/2019-10-30-compiler-team-meeting.md | 1 + posts/inside-rust/2019-11-04-Clippy-removes-plugin-interface.md | 1 + posts/inside-rust/2019-11-06-infra-team-meeting.md | 1 + posts/inside-rust/2019-11-07-compiler-team-meeting.md | 1 + posts/inside-rust/2019-11-11-compiler-team-meeting.md | 1 + posts/inside-rust/2019-11-13-goverance-wg-cfp.md | 1 + posts/inside-rust/2019-11-14-evaluating-github-actions.md | 1 + posts/inside-rust/2019-11-18-infra-team-meeting.md | 1 + posts/inside-rust/2019-11-19-compiler-team-meeting.md | 1 + posts/inside-rust/2019-11-19-infra-team-meeting.md | 1 + posts/inside-rust/2019-11-22-Lang-team-meeting.md | 1 + .../2019-11-22-upcoming-compiler-team-design-meetings.md | 1 + posts/inside-rust/2019-11-25-const-if-match.md | 1 + posts/inside-rust/2019-12-02-const-prop-on-by-default.md | 1 + posts/inside-rust/2019-12-03-governance-wg-meeting.md | 1 + posts/inside-rust/2019-12-04-ide-future.md | 1 + posts/inside-rust/2019-12-09-announcing-the-docsrs-team.md | 1 + posts/inside-rust/2019-12-10-governance-wg-meeting.md | 1 + posts/inside-rust/2019-12-11-infra-team-meeting.md | 1 + posts/inside-rust/2019-12-18-bisecting-rust-compiler.md | 1 + .../2019-12-19-jasper-and-wiser-full-members-of-compiler-team.md | 1 + posts/inside-rust/2019-12-20-governance-wg-meeting.md | 1 + posts/inside-rust/2019-12-20-infra-team-meeting.md | 1 + posts/inside-rust/2019-12-20-wg-learning-update.md | 1 + posts/inside-rust/2019-12-23-formatting-the-compiler.md | 1 + posts/inside-rust/2020-01-10-cargo-in-2020.md | 1 + posts/inside-rust/2020-01-10-lang-team-design-meetings.md | 1 + posts/inside-rust/2020-01-14-Goverance-wg-cfp.md | 1 + .../2020-01-23-Introducing-cargo-audit-fix-and-more.md | 1 + posts/inside-rust/2020-01-24-feb-lang-team-design-meetings.md | 1 + .../2020-01-24-upcoming-compiler-team-design-meetings.md | 1 + posts/inside-rust/2020-02-06-Cleanup-Crew-ICE-breakers.md | 1 + posts/inside-rust/2020-02-07-compiler-team-meeting.md | 1 + posts/inside-rust/2020-02-11-Goverance-wg.md | 1 + .../2020-02-14-upcoming-compiler-team-design-meetings.md | 1 + posts/inside-rust/2020-02-20-jtgeibel-crates-io-co-lead.md | 1 + posts/inside-rust/2020-02-25-intro-rustc-self-profile.md | 1 + posts/inside-rust/2020-02-26-crates-io-incident-report.md | 1 + posts/inside-rust/2020-02-27-Goverance-wg.md | 1 + posts/inside-rust/2020-02-27-ffi-unwind-design-meeting.md | 1 + posts/inside-rust/2020-02-27-pietro-joins-core-team.md | 1 + .../2020-03-04-recent-future-pattern-matching-improvements.md | 1 + posts/inside-rust/2020-03-11-lang-team-design-meetings.md | 1 + posts/inside-rust/2020-03-13-rename-rustc-guide.md | 1 + posts/inside-rust/2020-03-13-twir-new-lead.md | 1 + .../2020-03-13-upcoming-compiler-team-design-meetings.md | 1 + posts/inside-rust/2020-03-17-governance-wg.md | 1 + posts/inside-rust/2020-03-18-all-hands-retrospective.md | 1 + posts/inside-rust/2020-03-19-terminating-rust.md | 1 + posts/inside-rust/2020-03-26-rustc-dev-guide-overview.md | 1 + posts/inside-rust/2020-03-27-goodbye-docs-team.md | 1 + posts/inside-rust/2020-03-28-traits-sprint-1.md | 1 + .../2020-04-07-update-on-the-github-actions-evaluation.md | 1 + posts/inside-rust/2020-04-10-lang-team-design-meetings.md | 1 + .../2020-04-10-upcoming-compiler-team-design-meeting.md | 1 + posts/inside-rust/2020-04-14-Governance-WG-updated.md | 1 + posts/inside-rust/2020-04-23-Governance-wg.md | 1 + posts/inside-rust/2020-05-08-lang-team-meetings-rescheduled.md | 1 + posts/inside-rust/2020-05-18-traits-sprint-2.md | 1 + posts/inside-rust/2020-05-26-website-retrospective.md | 1 + posts/inside-rust/2020-05-27-contributor-survey.md | 1 + posts/inside-rust/2020-06-08-new-inline-asm.md | 1 + .../2020-06-08-upcoming-compiler-team-design-meeting.md | 1 + posts/inside-rust/2020-06-09-windows-notification-group.md | 1 + posts/inside-rust/2020-06-29-lto-improvements.md | 1 + posts/inside-rust/2020-07-02-Ownership-Std-Implementation.md | 1 + posts/inside-rust/2020-07-08-lang-team-design-meeting-update.md | 1 + posts/inside-rust/2020-07-09-lang-team-path-to-membership.md | 1 + posts/inside-rust/2020-07-17-traits-sprint-3.md | 1 + .../2020-07-23-rust-ci-is-moving-to-github-actions.md | 1 + posts/inside-rust/2020-07-27-1.45.1-prerelease.md | 1 + posts/inside-rust/2020-07-27-opening-up-the-core-team-agenda.md | 1 + .../2020-07-29-lang-team-design-meeting-min-const-generics.md | 1 + .../inside-rust/2020-07-29-lang-team-design-meeting-wf-types.md | 1 + posts/inside-rust/2020-08-24-1.46.0-prerelease.md | 1 + .../2020-08-28-upcoming-compiler-team-design-meetings.md | 1 + posts/inside-rust/2020-08-30-changes-to-x-py-defaults.md | 1 + posts/inside-rust/2020-09-17-stabilizing-intra-doc-links.md | 1 + posts/inside-rust/2020-09-18-error-handling-wg-announcement.md | 1 + posts/inside-rust/2020-09-29-Portable-SIMD-PG.md | 1 + posts/inside-rust/2020-10-06-1.47.0-prerelease.md | 1 + posts/inside-rust/2020-10-07-1.47.0-prerelease-2.md | 1 + posts/inside-rust/2020-10-16-Backlog-Bonanza.md | 1 + posts/inside-rust/2020-10-23-Core-team-membership.md | 1 + .../2020-11-11-exploring-pgo-for-the-rust-compiler.md | 1 + posts/inside-rust/2020-11-12-source-based-code-coverage.md | 1 + posts/inside-rust/2020-11-15-Using-rustc_codegen_cranelift.md | 1 + posts/inside-rust/2020-11-16-1.48.0-prerelease.md | 1 + ...-11-23-What-the-error-handling-project-group-is-working-on.md | 1 + posts/inside-rust/2020-12-14-changes-to-compiler-team.md | 1 + ...020-12-28-cjgillot-and-nadrieril-for-compiler-contributors.md | 1 + posts/inside-rust/2020-12-29-1.49.0-prerelease.md | 1 + posts/inside-rust/2021-01-15-rustdoc-performance-improvements.md | 1 + posts/inside-rust/2021-01-19-changes-to-rustdoc-team.md | 1 + posts/inside-rust/2021-01-26-ffi-unwind-longjmp.md | 1 + .../2021-02-01-davidtwco-jackhuey-compiler-members.md | 1 + posts/inside-rust/2021-02-03-lang-team-feb-update.md | 1 + posts/inside-rust/2021-02-09-1.50.0-prerelease.md | 1 + posts/inside-rust/2021-02-15-shrinkmem-rustc-sprint.md | 1 + posts/inside-rust/2021-03-03-lang-team-mar-update.md | 1 + posts/inside-rust/2021-03-04-planning-rust-2021.md | 1 + posts/inside-rust/2021-03-23-1.51.0-prerelease.md | 1 + posts/inside-rust/2021-04-03-core-team-updates.md | 1 + .../inside-rust/2021-04-15-compiler-team-april-steering-cycle.md | 1 + posts/inside-rust/2021-04-17-lang-team-apr-update.md | 1 + posts/inside-rust/2021-04-20-jsha-rustdoc-member.md | 1 + posts/inside-rust/2021-04-26-aaron-hill-compiler-team.md | 1 + posts/inside-rust/2021-04-28-rustup-1.24.0-incident-report.md | 1 + posts/inside-rust/2021-05-04-1.52.0-prerelease.md | 1 + posts/inside-rust/2021-05-04-core-team-update.md | 1 + posts/inside-rust/2021-06-15-1.53.0-prelease.md | 1 + ...6-15-boxyuwu-leseulartichaut-the8472-compiler-contributors.md | 1 + .../inside-rust/2021-06-23-compiler-team-june-steering-cycle.md | 1 + ...1-What-the-error-handling-project-group-is-working-towards.md | 1 + .../inside-rust/2021-07-02-compiler-team-july-steering-cycle.md | 1 + posts/inside-rust/2021-07-12-Lang-team-july-update.md | 1 + posts/inside-rust/2021-07-26-1.54.0-prerelease.md | 1 + .../2021-07-30-compiler-team-august-steering-cycle.md | 1 + posts/inside-rust/2021-08-04-lang-team-aug-update.md | 1 + posts/inside-rust/2021-09-06-Splitting-const-generics.md | 1 + posts/inside-rust/2021-09-07-1.55.0-prerelease.md | 1 + posts/inside-rust/2021-10-08-Lang-team-Oct-update.md | 1 + posts/inside-rust/2021-10-18-1.56.0-prerelease.md | 1 + .../inside-rust/2021-11-15-libs-contributors-the8472-kodraus.md | 1 + .../2021-11-25-in-response-to-the-moderation-team-resignation.md | 1 + posts/inside-rust/2021-11-30-1.57.0-prerelease.md | 1 + .../inside-rust/2021-12-17-follow-up-on-the-moderation-issue.md | 1 + posts/inside-rust/2022-01-11-1.58.0-prerelease.md | 1 + posts/inside-rust/2022-01-18-jan-steering-cycle.md | 1 + posts/inside-rust/2022-02-03-async-in-2022.md | 1 + posts/inside-rust/2022-02-11-CTCFT-february.md | 1 + posts/inside-rust/2022-02-17-feb-steering-cycle.md | 1 + posts/inside-rust/2022-02-18-lang-team-feb-update.md | 1 + posts/inside-rust/2022-02-22-1.59.0-prerelease.md | 1 + posts/inside-rust/2022-02-22-compiler-team-ambitions-2022.md | 1 + posts/inside-rust/2022-03-09-lang-team-mar-update.md | 1 + posts/inside-rust/2022-03-11-mar-steering-cycle.md | 1 + posts/inside-rust/2022-03-16-CTCFT-march.md | 1 + posts/inside-rust/2022-03-31-cargo-team-changes.md | 1 + posts/inside-rust/2022-04-04-1.60.0-prerelease.md | 1 + posts/inside-rust/2022-04-04-lang-roadmap-2024.md | 1 + posts/inside-rust/2022-04-06-lang-team-april-update.md | 1 + posts/inside-rust/2022-04-12-CTCFT-april.md | 1 + posts/inside-rust/2022-04-15-apr-steering-cycle.md | 1 + posts/inside-rust/2022-04-18-libs-contributors.md | 1 + posts/inside-rust/2022-04-19-imposter-syndrome.md | 1 + posts/inside-rust/2022-04-20-libs-aspirations.md | 1 + posts/inside-rust/2022-05-10-CTCFT-may.md | 1 + posts/inside-rust/2022-05-16-1.61.0-prerelease.md | 1 + posts/inside-rust/2022-05-19-governance-update.md | 1 + posts/inside-rust/2022-05-26-Concluding-events-mods.md | 1 + posts/inside-rust/2022-06-03-jun-steering-cycle.md | 1 + posts/inside-rust/2022-06-21-survey-2021-report.md | 1 + posts/inside-rust/2022-06-28-1.62.0-prerelease.md | 1 + posts/inside-rust/2022-07-13-clippy-team-changes.md | 1 + posts/inside-rust/2022-07-16-1.62.1-prerelease.md | 1 + posts/inside-rust/2022-07-27-keyword-generics.md | 1 + .../inside-rust/2022-08-08-compiler-team-2022-midyear-report.md | 1 + posts/inside-rust/2022-08-09-1.63.0-prerelease.md | 1 + posts/inside-rust/2022-08-10-libs-contributors.md | 1 + posts/inside-rust/2022-08-16-diagnostic-effort.md | 1 + posts/inside-rust/2022-09-19-1.64.0-prerelease.md | 1 + .../2022-09-23-compiler-team-sep-oct-steering-cycle.md | 1 + posts/inside-rust/2022-09-29-announcing-the-rust-style-team.md | 1 + posts/inside-rust/2022-10-06-governance-update.md | 1 + posts/inside-rust/2022-10-31-1.65.0-prerelease.md | 1 + posts/inside-rust/2022-11-17-async-fn-in-trait-nightly.md | 1 + posts/inside-rust/2022-11-29-libs-member.md | 1 + posts/inside-rust/2022-12-12-1.66.0-prerelease.md | 1 + posts/inside-rust/2023-01-24-content-delivery-networks.md | 1 + posts/inside-rust/2023-01-25-1.67.0-prerelease.md | 1 + posts/inside-rust/2023-01-30-cargo-sparse-protocol.md | 1 + posts/inside-rust/2023-02-07-1.67.1-prerelease.md | 1 + posts/inside-rust/2023-02-08-dns-outage-portmortem.md | 1 + posts/inside-rust/2023-02-10-compiler-team-feb-steering-cycle.md | 1 + posts/inside-rust/2023-02-14-lang-advisors.md | 1 + posts/inside-rust/2023-02-14-lang-team-membership-update.md | 1 + posts/inside-rust/2023-02-22-governance-reform-rfc.md | 1 + .../2023-02-23-keyword-generics-progress-report-feb-2023.md | 1 + posts/inside-rust/2023-03-06-1.68.0-prerelease.md | 1 + posts/inside-rust/2023-03-20-1.68.1-prerelease.md | 1 + posts/inside-rust/2023-03-27-1.68.2-prerelease.md | 1 + posts/inside-rust/2023-04-06-cargo-new-members.md | 1 + posts/inside-rust/2023-04-12-trademark-policy-draft-feedback.md | 1 + posts/inside-rust/2023-04-17-1.69.0-prerelease.md | 1 + posts/inside-rust/2023-05-01-cargo-postmortem.md | 1 + posts/inside-rust/2023-05-03-stabilizing-async-fn-in-trait.md | 1 + posts/inside-rust/2023-05-09-api-token-scopes.md | 1 + posts/inside-rust/2023-05-29-1.70.0-prerelease.md | 1 + posts/inside-rust/2023-07-10-1.71.0-prerelease.md | 1 + posts/inside-rust/2023-07-17-trait-system-refactor-initiative.md | 1 + posts/inside-rust/2023-07-21-crates-io-postmortem.md | 1 + posts/inside-rust/2023-07-25-leadership-council-update.md | 1 + posts/inside-rust/2023-08-01-1.71.1-prerelease.md | 1 + posts/inside-rust/2023-08-02-rotating-compiler-leads.md | 1 + posts/inside-rust/2023-08-21-1.72.0-prerelease.md | 1 + posts/inside-rust/2023-08-24-cargo-config-merging.md | 1 + posts/inside-rust/2023-08-25-leadership-initiatives.md | 1 + .../2023-08-29-leadership-council-membership-changes.md | 1 + posts/inside-rust/2023-09-01-crates-io-malware-postmortem.md | 1 + .../2023-09-04-keeping-secure-with-cargo-audit-0.18.md | 1 + posts/inside-rust/2023-09-08-infra-team-leadership-change.md | 1 + posts/inside-rust/2023-09-14-1.72.1-prerelease.md | 1 + posts/inside-rust/2023-09-22-project-director-nominees.md | 1 + posts/inside-rust/2023-10-03-1.73.0-prerelease.md | 1 + posts/inside-rust/2023-10-06-polonius-update.md | 1 + posts/inside-rust/2023-10-23-coroutines.md | 1 + posts/inside-rust/2023-11-13-1.74.0-prerelease.md | 1 + posts/inside-rust/2023-11-13-leadership-council-update.md | 1 + posts/inside-rust/2023-11-15-spec-vision.md | 1 + posts/inside-rust/2023-12-05-1.74.1-prerelease.md | 1 + posts/inside-rust/2023-12-21-1.75.0-prerelease.md | 1 + posts/inside-rust/2023-12-22-trait-system-refactor-initiative.md | 1 + .../2024-01-03-this-development-cycle-in-cargo-1-76.md | 1 + posts/inside-rust/2024-02-04-1.76.0-prerelease.md | 1 + posts/inside-rust/2024-02-13-lang-team-colead.md | 1 + posts/inside-rust/2024-02-13-leadership-council-update.md | 1 + .../2024-02-13-this-development-cycle-in-cargo-1-77.md | 1 + .../inside-rust/2024-02-19-leadership-council-repr-selection.md | 1 + posts/inside-rust/2024-03-17-1.77.0-prerelease.md | 1 + posts/inside-rust/2024-03-22-2024-edition-update.md | 1 + .../2024-03-26-this-development-cycle-in-cargo-1.78.md | 1 + posts/inside-rust/2024-03-27-1.77.1-prerelease.md | 1 + .../inside-rust/2024-04-01-leadership-council-repr-selection.md | 1 + posts/inside-rust/2024-04-12-types-team-leadership.md | 1 + posts/inside-rust/2024-05-07-announcing-project-goals.md | 1 + .../2024-05-07-this-development-cycle-in-cargo-1.79.md | 1 + posts/inside-rust/2024-05-09-rust-leads-summit.md | 1 + posts/inside-rust/2024-05-14-leadership-council-update.md | 1 + posts/inside-rust/2024-05-28-launching-pad-representative.md | 1 + .../2024-06-19-this-development-cycle-in-cargo-1.80.md | 1 + posts/inside-rust/2024-08-01-welcome-tc-to-the-lang-team.md | 1 + posts/inside-rust/2024-08-09-async-closures-call-for-testing.md | 1 + .../2024-08-15-this-development-cycle-in-cargo-1.81.md | 1 + .../inside-rust/2024-08-20-leadership-council-repr-selection.md | 1 + posts/inside-rust/2024-08-22-embedded-wg-micro-survey.md | 1 + posts/inside-rust/2024-09-02-all-hands.md | 1 + posts/inside-rust/2024-09-06-electing-new-project-directors.md | 1 + posts/inside-rust/2024-09-06-leadership-council-update.md | 1 + posts/inside-rust/2024-09-26-rtn-call-for-testing.md | 1 + .../inside-rust/2024-09-27-leadership-council-repr-selection.md | 1 + .../2024-10-01-this-development-cycle-in-cargo-1.82.md | 1 + posts/inside-rust/2024-10-10-test-infra-oct-2024.md | 1 + .../2024-10-31-this-development-cycle-in-cargo-1.83.md | 1 + posts/inside-rust/2024-11-01-compiler-team-reorg.md | 1 + .../2024-11-04-project-goals-2025h1-call-for-proposals.md | 1 + posts/inside-rust/2024-11-04-test-infra-oct-2024-2.md | 1 + posts/inside-rust/2024-11-12-compiler-team-new-members.md | 1 + posts/inside-rust/2024-12-04-trait-system-refactor-initiative.md | 1 + posts/inside-rust/2024-12-09-leadership-council-update.md | 1 + posts/inside-rust/2024-12-09-test-infra-nov-2024.md | 1 + .../2024-12-13-this-development-cycle-in-cargo-1.84.md | 1 + posts/inside-rust/2024-12-17-project-director-update.md | 1 + posts/inside-rust/2025-01-10-test-infra-dec-2024.md | 1 + .../2025-01-17-this-development-cycle-in-cargo-1.85.md | 1 + posts/inside-rust/2025-01-30-project-director-update.md | 1 + .../inside-rust/2025-02-14-leadership-council-repr-selection.md | 1 + posts/inside-rust/2025-02-24-project-director-update.md | 1 + posts/inside-rust/2025-02-27-relnotes-interest-group.md | 1 + .../2025-02-27-this-development-cycle-in-cargo-1.86.md | 1 + posts/inside-rust/2025-03-05-inferred-const-generic-arguments.md | 1 + 584 files changed, 584 insertions(+) diff --git a/posts/2014-09-15-Rust-1.0.md b/posts/2014-09-15-Rust-1.0.md index 45055a940..6fff70359 100644 --- a/posts/2014-09-15-Rust-1.0.md +++ b/posts/2014-09-15-Rust-1.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2014-09-15 title = "Road to Rust 1.0" author = "Niko Matsakis" description = "Rust 1.0 is on its way! We have nailed down a concrete list of features and are hard at work on implementing them." diff --git a/posts/2014-10-30-Stability.md b/posts/2014-10-30-Stability.md index fc8be71ab..7650226a8 100644 --- a/posts/2014-10-30-Stability.md +++ b/posts/2014-10-30-Stability.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2014-10-30 title = "Stability as a Deliverable" author = "Aaron Turon and Niko Matsakis" description = "The upcoming Rust 1.0 release means a lot, but most fundamentally it is a commitment to stability, alongside our long-running commitment to safety." diff --git a/posts/2014-11-20-Cargo.md b/posts/2014-11-20-Cargo.md index c8ce953fa..9a1dd5d72 100644 --- a/posts/2014-11-20-Cargo.md +++ b/posts/2014-11-20-Cargo.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2014-11-20 title = "Cargo: Rust's community crate host" author = "Alex Crichton" description = "Today it is my pleasure to announce that crates.io is online and ready for action." diff --git a/posts/2014-12-12-1.0-Timeline.md b/posts/2014-12-12-1.0-Timeline.md index 331778f4c..97e613572 100644 --- a/posts/2014-12-12-1.0-Timeline.md +++ b/posts/2014-12-12-1.0-Timeline.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2014-12-12 title = "Rust 1.0: Scheduling the trains" author = "Aaron Turon" description = "As 2014 is drawing to a close, it's time to begin the Rust 1.0 release cycle!" diff --git a/posts/2014-12-12-Core-Team.md b/posts/2014-12-12-Core-Team.md index 240ff79d7..59271b140 100644 --- a/posts/2014-12-12-Core-Team.md +++ b/posts/2014-12-12-Core-Team.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2014-12-12 title = "Yehuda Katz and Steve Klabnik are joining the Rust Core Team" author = "Niko Matsakis" description = "I'm pleased to announce that Yehuda Katz and Steve Klabnik are joining the Rust core team." diff --git a/posts/2015-01-09-Rust-1.0-alpha.md b/posts/2015-01-09-Rust-1.0-alpha.md index d082c6ac8..f6e32c15e 100644 --- a/posts/2015-01-09-Rust-1.0-alpha.md +++ b/posts/2015-01-09-Rust-1.0-alpha.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2015-01-09 title = "Announcing Rust 1.0 Alpha" author = "The Rust Core Team" +++ diff --git a/posts/2015-02-13-Final-1.0-timeline.md b/posts/2015-02-13-Final-1.0-timeline.md index 04ceccd2b..e88dc7676 100644 --- a/posts/2015-02-13-Final-1.0-timeline.md +++ b/posts/2015-02-13-Final-1.0-timeline.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2015-02-13 title = "Rust 1.0: status report and final timeline" author = "The Rust Core Team" +++ diff --git a/posts/2015-02-20-Rust-1.0-alpha2.md b/posts/2015-02-20-Rust-1.0-alpha2.md index ad909b6f4..8f1ea635c 100644 --- a/posts/2015-02-20-Rust-1.0-alpha2.md +++ b/posts/2015-02-20-Rust-1.0-alpha2.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2015-02-20 title = "Announcing Rust 1.0.0.alpha.2" author = "Steve Klabnik" description = "Rust 1.0.0.alpha.2 has been released." diff --git a/posts/2015-04-03-Rust-1.0-beta.md b/posts/2015-04-03-Rust-1.0-beta.md index dadee3c0f..53622d93d 100644 --- a/posts/2015-04-03-Rust-1.0-beta.md +++ b/posts/2015-04-03-Rust-1.0-beta.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2015-04-03 title = "Announcing Rust 1.0 Beta" author = "The Rust Core Team" +++ diff --git a/posts/2015-04-10-Fearless-Concurrency.md b/posts/2015-04-10-Fearless-Concurrency.md index 6f6c82e86..23600a2cb 100644 --- a/posts/2015-04-10-Fearless-Concurrency.md +++ b/posts/2015-04-10-Fearless-Concurrency.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2015-04-10 title = "Fearless Concurrency with Rust" author = "Aaron Turon" description = "Rust's vision for concurrency" diff --git a/posts/2015-04-17-Enums-match-mutation-and-moves.md b/posts/2015-04-17-Enums-match-mutation-and-moves.md index 52fdc7cd8..f8da05510 100644 --- a/posts/2015-04-17-Enums-match-mutation-and-moves.md +++ b/posts/2015-04-17-Enums-match-mutation-and-moves.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2015-04-17 title = "Mixing matching, mutation, and moves in Rust" author = "Felix S. Klock II" description = "A tour of matching and enums in Rust." diff --git a/posts/2015-04-24-Rust-Once-Run-Everywhere.md b/posts/2015-04-24-Rust-Once-Run-Everywhere.md index 1665d37ca..1637e1252 100644 --- a/posts/2015-04-24-Rust-Once-Run-Everywhere.md +++ b/posts/2015-04-24-Rust-Once-Run-Everywhere.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2015-04-24 title = "Rust Once, Run Everywhere" author = "Alex Crichton" description = "Zero-cost and safe FFI in Rust" diff --git a/posts/2015-05-11-traits.md b/posts/2015-05-11-traits.md index b4c3903b4..64949217d 100644 --- a/posts/2015-05-11-traits.md +++ b/posts/2015-05-11-traits.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2015-05-11 title = "Abstraction without overhead: traits in Rust" author = "Aaron Turon" description = "The vision of Rust's traits for zero-cost abstraction" diff --git a/posts/2015-05-15-Rust-1.0.md b/posts/2015-05-15-Rust-1.0.md index 5af676d08..2d55fe50d 100644 --- a/posts/2015-05-15-Rust-1.0.md +++ b/posts/2015-05-15-Rust-1.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2015-05-15 title = "Announcing Rust 1.0" author = "The Rust Core Team" release = true diff --git a/posts/2015-06-25-Rust-1.1.md b/posts/2015-06-25-Rust-1.1.md index 524ad9f7f..a3c5f9fe1 100644 --- a/posts/2015-06-25-Rust-1.1.md +++ b/posts/2015-06-25-Rust-1.1.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2015-06-25 title = "Rust 1.1 stable, the Community Subteam, and RustCamp" author = "The Rust Core Team" release = true diff --git a/posts/2015-08-06-Rust-1.2.md b/posts/2015-08-06-Rust-1.2.md index 15dc1266b..30dc12e4a 100644 --- a/posts/2015-08-06-Rust-1.2.md +++ b/posts/2015-08-06-Rust-1.2.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2015-08-06 title = "Announcing Rust 1.2" author = "The Rust Core Team" release = true diff --git a/posts/2015-08-14-Next-year.md b/posts/2015-08-14-Next-year.md index 65cbb832c..b289babc6 100644 --- a/posts/2015-08-14-Next-year.md +++ b/posts/2015-08-14-Next-year.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2015-08-14 title = "Rust in 2016" author = "Nicholas Matsakis and Aaron Turon" description = "Our vision for Rust's next year" diff --git a/posts/2015-09-17-Rust-1.3.md b/posts/2015-09-17-Rust-1.3.md index e12cd9aba..f86858cc1 100644 --- a/posts/2015-09-17-Rust-1.3.md +++ b/posts/2015-09-17-Rust-1.3.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2015-09-17 title = "Announcing Rust 1.3" author = "The Rust Core Team" release = true diff --git a/posts/2015-10-29-Rust-1.4.md b/posts/2015-10-29-Rust-1.4.md index d0cfffb04..7b5596f43 100644 --- a/posts/2015-10-29-Rust-1.4.md +++ b/posts/2015-10-29-Rust-1.4.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2015-10-29 title = "Announcing Rust 1.4" author = "The Rust Core Team" release = true diff --git a/posts/2015-12-10-Rust-1.5.md b/posts/2015-12-10-Rust-1.5.md index 5a44774fa..4c96aa5f9 100644 --- a/posts/2015-12-10-Rust-1.5.md +++ b/posts/2015-12-10-Rust-1.5.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2015-12-10 title = "Announcing Rust 1.5" author = "The Rust Core Team" release = true diff --git a/posts/2016-01-21-Rust-1.6.md b/posts/2016-01-21-Rust-1.6.md index e0f838d04..0f0804769 100644 --- a/posts/2016-01-21-Rust-1.6.md +++ b/posts/2016-01-21-Rust-1.6.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2016-01-21 title = "Announcing Rust 1.6" author = "The Rust Core Team" release = true diff --git a/posts/2016-03-02-Rust-1.7.md b/posts/2016-03-02-Rust-1.7.md index 510e2a9e1..9098a857f 100644 --- a/posts/2016-03-02-Rust-1.7.md +++ b/posts/2016-03-02-Rust-1.7.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2016-03-02 title = "Announcing Rust 1.7" author = "The Rust Core Team" release = true diff --git a/posts/2016-04-14-Rust-1.8.md b/posts/2016-04-14-Rust-1.8.md index 44618edf9..ea8b20913 100644 --- a/posts/2016-04-14-Rust-1.8.md +++ b/posts/2016-04-14-Rust-1.8.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2016-04-14 title = "Announcing Rust 1.8" author = "The Rust Core Team" release = true diff --git a/posts/2016-04-19-MIR.md b/posts/2016-04-19-MIR.md index 22b6c64ed..52574d30c 100644 --- a/posts/2016-04-19-MIR.md +++ b/posts/2016-04-19-MIR.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2016-04-19 title = "Introducing MIR" author = "Niko Matsakis" description = "The shift to use MIR in the compiler should unlock many exciting improvements." diff --git a/posts/2016-05-05-cargo-pillars.md b/posts/2016-05-05-cargo-pillars.md index 5f4b08dca..e183b0bbb 100644 --- a/posts/2016-05-05-cargo-pillars.md +++ b/posts/2016-05-05-cargo-pillars.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2016-05-05 title = "Cargo: predictable dependency management" author = "Yehuda Katz" description = "Cargo makes dependency management in Rust easy and predictable" diff --git a/posts/2016-05-09-survey.md b/posts/2016-05-09-survey.md index c02ab036c..129d99aa8 100644 --- a/posts/2016-05-09-survey.md +++ b/posts/2016-05-09-survey.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2016-05-09 title = "Launching the 2016 State of Rust Survey" author = "The Rust Community Team" description = "Hearing from you about the first year of Rust" diff --git a/posts/2016-05-13-rustup.md b/posts/2016-05-13-rustup.md index 91650a25d..d7ed6815f 100644 --- a/posts/2016-05-13-rustup.md +++ b/posts/2016-05-13-rustup.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2016-05-13 title = "Taking Rust everywhere with rustup" author = "Brian Anderson" description = "The rustup toolchain manager makes cross-compilation in Rust a breeze" diff --git a/posts/2016-05-16-rust-at-one-year.md b/posts/2016-05-16-rust-at-one-year.md index 37746b405..6ac566168 100644 --- a/posts/2016-05-16-rust-at-one-year.md +++ b/posts/2016-05-16-rust-at-one-year.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2016-05-16 title = "One year of Rust" author = "Aaron Turon" description = "Rust's trajectory one year after 1.0" diff --git a/posts/2016-05-26-Rust-1.9.md b/posts/2016-05-26-Rust-1.9.md index d297028cc..1781b8365 100644 --- a/posts/2016-05-26-Rust-1.9.md +++ b/posts/2016-05-26-Rust-1.9.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2016-05-26 title = "Announcing Rust 1.9" author = "The Rust Core Team" release = true diff --git a/posts/2016-06-30-State-of-Rust-Survey-2016.md b/posts/2016-06-30-State-of-Rust-Survey-2016.md index 5666816cb..4d11f8668 100644 --- a/posts/2016-06-30-State-of-Rust-Survey-2016.md +++ b/posts/2016-06-30-State-of-Rust-Survey-2016.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2016-06-30 title = "State of Rust Survey 2016" author = "Jonathan Turner" +++ diff --git a/posts/2016-07-07-Rust-1.10.md b/posts/2016-07-07-Rust-1.10.md index 024e5eae9..4d22961a9 100644 --- a/posts/2016-07-07-Rust-1.10.md +++ b/posts/2016-07-07-Rust-1.10.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2016-07-07 title = "Announcing Rust 1.10" author = "The Rust Core Team" release = true diff --git a/posts/2016-07-25-conf-lineup.md b/posts/2016-07-25-conf-lineup.md index 69e75a161..01f43213b 100644 --- a/posts/2016-07-25-conf-lineup.md +++ b/posts/2016-07-25-conf-lineup.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2016-07-25 title = "The 2016 Rust Conference Lineup" author = "Rust Community" description = "Three Rust conferences are coming up soon; join us at one near you!" diff --git a/posts/2016-08-10-Shape-of-errors-to-come.md b/posts/2016-08-10-Shape-of-errors-to-come.md index b200afea7..62684b15f 100644 --- a/posts/2016-08-10-Shape-of-errors-to-come.md +++ b/posts/2016-08-10-Shape-of-errors-to-come.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2016-08-10 title = "Shape of errors to come" author = "Sophia June Turner" +++ diff --git a/posts/2016-08-18-Rust-1.11.md b/posts/2016-08-18-Rust-1.11.md index e3a792922..bd2aa4dc5 100644 --- a/posts/2016-08-18-Rust-1.11.md +++ b/posts/2016-08-18-Rust-1.11.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2016-08-18 title = "Announcing Rust 1.11" author = "The Rust Core Team" release = true diff --git a/posts/2016-09-08-incremental.md b/posts/2016-09-08-incremental.md index a263afc67..c083e1163 100644 --- a/posts/2016-09-08-incremental.md +++ b/posts/2016-09-08-incremental.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2016-09-08 title = "Incremental Compilation" author = "Michael Woerister" description = "Incremental compilation for exponential joy and happiness." diff --git a/posts/2016-09-29-Rust-1.12.md b/posts/2016-09-29-Rust-1.12.md index bfdcff7e5..1d3b20df2 100644 --- a/posts/2016-09-29-Rust-1.12.md +++ b/posts/2016-09-29-Rust-1.12.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2016-09-29 title = "Announcing Rust 1.12" author = "The Rust Core Team" release = true diff --git a/posts/2016-10-20-Rust-1.12.1.md b/posts/2016-10-20-Rust-1.12.1.md index cef34f3bc..68f109ec8 100644 --- a/posts/2016-10-20-Rust-1.12.1.md +++ b/posts/2016-10-20-Rust-1.12.1.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2016-10-20 title = "Announcing Rust 1.12.1" author = "The Rust Core Team" release = true diff --git a/posts/2016-11-10-Rust-1.13.md b/posts/2016-11-10-Rust-1.13.md index cdf26234a..fd9739675 100644 --- a/posts/2016-11-10-Rust-1.13.md +++ b/posts/2016-11-10-Rust-1.13.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2016-11-10 title = "Announcing Rust 1.13" author = "The Rust Core Team" release = true diff --git a/posts/2016-12-15-Underhanded-Rust.md b/posts/2016-12-15-Underhanded-Rust.md index d29434acf..9e10df017 100644 --- a/posts/2016-12-15-Underhanded-Rust.md +++ b/posts/2016-12-15-Underhanded-Rust.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2016-12-15 title = "Announcing the First Underhanded Rust Contest" author = "The Rust Community Team" +++ diff --git a/posts/2016-12-22-Rust-1.14.md b/posts/2016-12-22-Rust-1.14.md index d3f0a0aae..02141011f 100644 --- a/posts/2016-12-22-Rust-1.14.md +++ b/posts/2016-12-22-Rust-1.14.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2016-12-22 title = "Announcing Rust 1.14" author = "The Rust Core Team" release = true diff --git a/posts/2017-02-02-Rust-1.15.md b/posts/2017-02-02-Rust-1.15.md index 74c17e165..23fd6bce8 100644 --- a/posts/2017-02-02-Rust-1.15.md +++ b/posts/2017-02-02-Rust-1.15.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2017-02-02 title = "Announcing Rust 1.15" author = "The Rust Core Team" release = true diff --git a/posts/2017-02-06-roadmap.md b/posts/2017-02-06-roadmap.md index a88f7301e..797235f0d 100644 --- a/posts/2017-02-06-roadmap.md +++ b/posts/2017-02-06-roadmap.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2017-02-06 title = "Rust's 2017 roadmap" author = "Aaron Turon" description = "What the Rust community hopes to get done in 2017" diff --git a/posts/2017-02-09-Rust-1.15.1.md b/posts/2017-02-09-Rust-1.15.1.md index 1c3fd23f7..80aeef0bf 100644 --- a/posts/2017-02-09-Rust-1.15.1.md +++ b/posts/2017-02-09-Rust-1.15.1.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2017-02-09 title = "Announcing Rust 1.15.1" author = "The Rust Core Team" release = true diff --git a/posts/2017-03-02-lang-ergonomics.md b/posts/2017-03-02-lang-ergonomics.md index f94e8b2aa..af835968d 100644 --- a/posts/2017-03-02-lang-ergonomics.md +++ b/posts/2017-03-02-lang-ergonomics.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2017-03-02 title = "Rust's language ergonomics initiative" author = "Aaron Turon" description = "Ergonomics, learnability, and the fact that sometimes implicit is better" diff --git a/posts/2017-03-16-Rust-1.16.md b/posts/2017-03-16-Rust-1.16.md index 4c36d2b47..b48fa9e6f 100644 --- a/posts/2017-03-16-Rust-1.16.md +++ b/posts/2017-03-16-Rust-1.16.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2017-03-16 title = "Announcing Rust 1.16" author = "The Rust Core Team" release = true diff --git a/posts/2017-04-27-Rust-1.17.md b/posts/2017-04-27-Rust-1.17.md index 1b85e5e6a..cb48f5f4b 100644 --- a/posts/2017-04-27-Rust-1.17.md +++ b/posts/2017-04-27-Rust-1.17.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2017-04-27 title = "Announcing Rust 1.17" author = "The Rust Core Team" release = true diff --git a/posts/2017-05-03-survey.md b/posts/2017-05-03-survey.md index 99111b003..e7f561e61 100644 --- a/posts/2017-05-03-survey.md +++ b/posts/2017-05-03-survey.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2017-05-03 title = "Launching the 2017 State of Rust Survey" author = "The Rust Community Team" description = "Hearing from you about the second year of Rust" diff --git a/posts/2017-05-05-libz-blitz.md b/posts/2017-05-05-libz-blitz.md index ef798bb3a..df507f48c 100644 --- a/posts/2017-05-05-libz-blitz.md +++ b/posts/2017-05-05-libz-blitz.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2017-05-05 title = "The Rust Libz Blitz" author = "Brian Anderson, David Tolnay, and Aaron Turon" description = "Improving the quality and maturity of Rust's core ecosystem" diff --git a/posts/2017-05-15-rust-at-two-years.md b/posts/2017-05-15-rust-at-two-years.md index e52447655..429f80b85 100644 --- a/posts/2017-05-15-rust-at-two-years.md +++ b/posts/2017-05-15-rust-at-two-years.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2017-05-15 title = "Two years of Rust" author = "Carol (Nichols || Goulding)" description = "Rust, two years after 1.0" diff --git a/posts/2017-06-08-Rust-1.18.md b/posts/2017-06-08-Rust-1.18.md index d373bbb52..a58dce5cf 100644 --- a/posts/2017-06-08-Rust-1.18.md +++ b/posts/2017-06-08-Rust-1.18.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2017-06-08 title = "Announcing Rust 1.18" author = "The Rust Core Team" release = true diff --git a/posts/2017-06-27-Increasing-Rusts-Reach.md b/posts/2017-06-27-Increasing-Rusts-Reach.md index ed3a2429a..2c1e446fe 100644 --- a/posts/2017-06-27-Increasing-Rusts-Reach.md +++ b/posts/2017-06-27-Increasing-Rusts-Reach.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2017-06-27 title = "Increasing Rust’s Reach" author = "Carol Nichols" +++ diff --git a/posts/2017-07-05-Rust-Roadmap-Update.md b/posts/2017-07-05-Rust-Roadmap-Update.md index ce09d1750..69f26ba99 100644 --- a/posts/2017-07-05-Rust-Roadmap-Update.md +++ b/posts/2017-07-05-Rust-Roadmap-Update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2017-07-05 title = "Rust's 2017 roadmap, six months in" author = "Nicholas Matsakis" +++ diff --git a/posts/2017-07-18-conf-lineup.md b/posts/2017-07-18-conf-lineup.md index 5b05b92be..cbea58493 100644 --- a/posts/2017-07-18-conf-lineup.md +++ b/posts/2017-07-18-conf-lineup.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2017-07-18 title = "The 2017 Rust Conference Lineup" author = "Rust Community" description = "Three Rust conferences are coming up soon; join us at one near you!" diff --git a/posts/2017-07-20-Rust-1.19.md b/posts/2017-07-20-Rust-1.19.md index 6336da132..125936c2c 100644 --- a/posts/2017-07-20-Rust-1.19.md +++ b/posts/2017-07-20-Rust-1.19.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2017-07-20 title = "Announcing Rust 1.19" author = "The Rust Core Team" release = true diff --git a/posts/2017-08-31-Rust-1.20.md b/posts/2017-08-31-Rust-1.20.md index a6fa7ef8a..468e4c710 100644 --- a/posts/2017-08-31-Rust-1.20.md +++ b/posts/2017-08-31-Rust-1.20.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2017-08-31 title = "Announcing Rust 1.20" author = "The Rust Core Team" release = true diff --git a/posts/2017-09-05-Rust-2017-Survey-Results.md b/posts/2017-09-05-Rust-2017-Survey-Results.md index 4ec18cb18..4635be47a 100644 --- a/posts/2017-09-05-Rust-2017-Survey-Results.md +++ b/posts/2017-09-05-Rust-2017-Survey-Results.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2017-09-05 title = "Rust 2017 Survey Results" author = "Jonathan Turner" +++ diff --git a/posts/2017-09-18-impl-future-for-rust.md b/posts/2017-09-18-impl-future-for-rust.md index dc738a2be..2df1561ca 100644 --- a/posts/2017-09-18-impl-future-for-rust.md +++ b/posts/2017-09-18-impl-future-for-rust.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2017-09-18 title = "impl Future for Rust" author = "Aaron Turon" description = "The Rust community is going to finish out its 2017 roadmap with a bang—and we want your help!" diff --git a/posts/2017-10-12-Rust-1.21.md b/posts/2017-10-12-Rust-1.21.md index 1905a249c..eb6ec3014 100644 --- a/posts/2017-10-12-Rust-1.21.md +++ b/posts/2017-10-12-Rust-1.21.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2017-10-12 title = "Announcing Rust 1.21" author = "The Rust Core Team" release = true diff --git a/posts/2017-11-14-Fearless-Concurrency-In-Firefox-Quantum.md b/posts/2017-11-14-Fearless-Concurrency-In-Firefox-Quantum.md index b9eebb48b..a3c6b4715 100644 --- a/posts/2017-11-14-Fearless-Concurrency-In-Firefox-Quantum.md +++ b/posts/2017-11-14-Fearless-Concurrency-In-Firefox-Quantum.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2017-11-14 title = "Fearless Concurrency in Firefox Quantum" author = "Manish Goregaokar" +++ diff --git a/posts/2017-11-22-Rust-1.22.md b/posts/2017-11-22-Rust-1.22.md index 41203a91d..1ba2ec3ac 100644 --- a/posts/2017-11-22-Rust-1.22.md +++ b/posts/2017-11-22-Rust-1.22.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2017-11-22 title = "Announcing Rust 1.22 (and 1.22.1)" author = "The Rust Core Team" release = true diff --git a/posts/2017-12-21-rust-in-2017.md b/posts/2017-12-21-rust-in-2017.md index 1a77270c7..acd8038e6 100644 --- a/posts/2017-12-21-rust-in-2017.md +++ b/posts/2017-12-21-rust-in-2017.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2017-12-21 title = "Rust in 2017: what we achieved" author = "Aaron Turon" +++ diff --git a/posts/2018-01-03-new-years-rust-a-call-for-community-blogposts.md b/posts/2018-01-03-new-years-rust-a-call-for-community-blogposts.md index 3f504c9ac..b0c2d49f3 100644 --- a/posts/2018-01-03-new-years-rust-a-call-for-community-blogposts.md +++ b/posts/2018-01-03-new-years-rust-a-call-for-community-blogposts.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2018-01-03 title = "New Year's Rust: A Call for Community Blogposts" author = "The Rust Core Team" +++ diff --git a/posts/2018-01-04-Rust-1.23.md b/posts/2018-01-04-Rust-1.23.md index dcebfea23..c9e2a9baf 100644 --- a/posts/2018-01-04-Rust-1.23.md +++ b/posts/2018-01-04-Rust-1.23.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2018-01-04 title = "Announcing Rust 1.23" author = "The Rust Core Team" release = true diff --git a/posts/2018-01-31-The-2018-Rust-Event-Lineup.md b/posts/2018-01-31-The-2018-Rust-Event-Lineup.md index 27273f4be..d66c51717 100644 --- a/posts/2018-01-31-The-2018-Rust-Event-Lineup.md +++ b/posts/2018-01-31-The-2018-Rust-Event-Lineup.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2018-01-31 title = "The 2018 Rust Event Lineup" author = "Rust Community" description = "Lots of Rust events are happening this year; join us at one near you!" diff --git a/posts/2018-02-15-Rust-1.24.md b/posts/2018-02-15-Rust-1.24.md index 8dd1e529b..b2bb8bd15 100644 --- a/posts/2018-02-15-Rust-1.24.md +++ b/posts/2018-02-15-Rust-1.24.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2018-02-15 title = "Announcing Rust 1.24" author = "The Rust Core Team" release = true diff --git a/posts/2018-03-01-Rust-1.24.1.md b/posts/2018-03-01-Rust-1.24.1.md index fdf947614..7ac16ff74 100644 --- a/posts/2018-03-01-Rust-1.24.1.md +++ b/posts/2018-03-01-Rust-1.24.1.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2018-03-01 title = "Announcing Rust 1.24.1" author = "The Rust Core Team" release = true diff --git a/posts/2018-03-12-roadmap.md b/posts/2018-03-12-roadmap.md index daac4af4e..4f7009266 100644 --- a/posts/2018-03-12-roadmap.md +++ b/posts/2018-03-12-roadmap.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2018-03-12 title = "Rust's 2018 roadmap" author = "The Rust Core Team" +++ diff --git a/posts/2018-03-29-Rust-1.25.md b/posts/2018-03-29-Rust-1.25.md index af88c40eb..daab60edf 100644 --- a/posts/2018-03-29-Rust-1.25.md +++ b/posts/2018-03-29-Rust-1.25.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2018-03-29 title = "Announcing Rust 1.25" author = "The Rust Core Team" release = true diff --git a/posts/2018-04-02-Increasing-Rusts-Reach-2018.md b/posts/2018-04-02-Increasing-Rusts-Reach-2018.md index 60b1c0d8b..eac87cef2 100644 --- a/posts/2018-04-02-Increasing-Rusts-Reach-2018.md +++ b/posts/2018-04-02-Increasing-Rusts-Reach-2018.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2018-04-02 title = "Increasing Rust’s Reach 2018" author = "Ashley Williams" +++ diff --git a/posts/2018-04-06-all-hands.md b/posts/2018-04-06-all-hands.md index cbb38dfa7..ee3e7221a 100644 --- a/posts/2018-04-06-all-hands.md +++ b/posts/2018-04-06-all-hands.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2018-04-06 title = "The Rust Team All Hands in Berlin: a Recap" author = "Aaron Turon" +++ diff --git a/posts/2018-05-10-Rust-1.26.md b/posts/2018-05-10-Rust-1.26.md index e1128cece..2b23321ac 100644 --- a/posts/2018-05-10-Rust-1.26.md +++ b/posts/2018-05-10-Rust-1.26.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2018-05-10 title = "Announcing Rust 1.26" author = "The Rust Core Team" release = true diff --git a/posts/2018-05-15-Rust-turns-three.md b/posts/2018-05-15-Rust-turns-three.md index 9a18841a8..de118de74 100644 --- a/posts/2018-05-15-Rust-turns-three.md +++ b/posts/2018-05-15-Rust-turns-three.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2018-05-15 title = "Rust turns three" author = "Aaron Turon" description = "Three years ago today, the Rust community released Rust 1.0 to the world, with our initial vision of fearless systems programming." diff --git a/posts/2018-05-29-Rust-1.26.1.md b/posts/2018-05-29-Rust-1.26.1.md index 3942cabe0..26e5ace23 100644 --- a/posts/2018-05-29-Rust-1.26.1.md +++ b/posts/2018-05-29-Rust-1.26.1.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2018-05-29 title = "Announcing Rust 1.26.1" author = "The Rust Core Team" release = true diff --git a/posts/2018-06-05-Rust-1.26.2.md b/posts/2018-06-05-Rust-1.26.2.md index 49cf5e956..dd9d9fe63 100644 --- a/posts/2018-06-05-Rust-1.26.2.md +++ b/posts/2018-06-05-Rust-1.26.2.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2018-06-05 title = "Announcing Rust 1.26.2" author = "The Rust Core Team" release = true diff --git a/posts/2018-06-21-Rust-1.27.md b/posts/2018-06-21-Rust-1.27.md index ea9d415c3..85366af75 100644 --- a/posts/2018-06-21-Rust-1.27.md +++ b/posts/2018-06-21-Rust-1.27.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2018-06-21 title = "Announcing Rust 1.27" author = "The Rust Core Team" release = true diff --git a/posts/2018-07-06-security-advisory-for-rustdoc.md b/posts/2018-07-06-security-advisory-for-rustdoc.md index 127cebfc6..24c9b42cc 100644 --- a/posts/2018-07-06-security-advisory-for-rustdoc.md +++ b/posts/2018-07-06-security-advisory-for-rustdoc.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2018-07-06 title = "Security Advisory for rustdoc" author = "The Rust Core Team" +++ diff --git a/posts/2018-07-10-Rust-1.27.1.md b/posts/2018-07-10-Rust-1.27.1.md index 756b95d0a..680863d89 100644 --- a/posts/2018-07-10-Rust-1.27.1.md +++ b/posts/2018-07-10-Rust-1.27.1.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2018-07-10 title = "Announcing Rust 1.27.1" author = "The Rust Core Team" release = true diff --git a/posts/2018-07-20-Rust-1.27.2.md b/posts/2018-07-20-Rust-1.27.2.md index d72ff40e6..df9abccf6 100644 --- a/posts/2018-07-20-Rust-1.27.2.md +++ b/posts/2018-07-20-Rust-1.27.2.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2018-07-20 title = "Announcing Rust 1.27.2" author = "The Rust Core Team" release = true diff --git a/posts/2018-07-27-what-is-rust-2018.md b/posts/2018-07-27-what-is-rust-2018.md index 415624bc9..07e083a3c 100644 --- a/posts/2018-07-27-what-is-rust-2018.md +++ b/posts/2018-07-27-what-is-rust-2018.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2018-07-27 title = "What is Rust 2018?" author = "The Rust Core Team" +++ diff --git a/posts/2018-08-02-Rust-1.28.md b/posts/2018-08-02-Rust-1.28.md index 96dbd77d6..97932d9f5 100644 --- a/posts/2018-08-02-Rust-1.28.md +++ b/posts/2018-08-02-Rust-1.28.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2018-08-02 title = "Announcing Rust 1.28" author = "The Rust Core Team" release = true diff --git a/posts/2018-08-08-survey.md b/posts/2018-08-08-survey.md index 334c2914e..38bd2c4f7 100644 --- a/posts/2018-08-08-survey.md +++ b/posts/2018-08-08-survey.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2018-08-08 title = "Launching the 2018 State of Rust Survey" author = "The Rust Community Team" description = "Hearing from you about the third year of Rust" diff --git a/posts/2018-09-13-Rust-1.29.md b/posts/2018-09-13-Rust-1.29.md index 5a3e657ac..d4d8c4104 100644 --- a/posts/2018-09-13-Rust-1.29.md +++ b/posts/2018-09-13-Rust-1.29.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2018-09-13 title = "Announcing Rust 1.29" author = "The Rust Core Team" release = true diff --git a/posts/2018-09-21-Security-advisory-for-std.md b/posts/2018-09-21-Security-advisory-for-std.md index d6aa0ee52..db2acbd93 100644 --- a/posts/2018-09-21-Security-advisory-for-std.md +++ b/posts/2018-09-21-Security-advisory-for-std.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2018-09-21 title = "Security advisory for the standard library" author = "The Rust Core Team" +++ diff --git a/posts/2018-09-25-Rust-1.29.1.md b/posts/2018-09-25-Rust-1.29.1.md index 4b9ba5029..8a8d875b4 100644 --- a/posts/2018-09-25-Rust-1.29.1.md +++ b/posts/2018-09-25-Rust-1.29.1.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2018-09-25 title = "Announcing Rust 1.29.1" author = "The Rust Core Team" release = true diff --git a/posts/2018-10-12-Rust-1.29.2.md b/posts/2018-10-12-Rust-1.29.2.md index 1f636ee29..01a82f2a1 100644 --- a/posts/2018-10-12-Rust-1.29.2.md +++ b/posts/2018-10-12-Rust-1.29.2.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2018-10-12 title = "Announcing Rust 1.29.2" author = "The Rust Release Team" release = true diff --git a/posts/2018-10-19-Update-on-crates.io-incident.md b/posts/2018-10-19-Update-on-crates.io-incident.md index 3f796e662..61bbcafc9 100644 --- a/posts/2018-10-19-Update-on-crates.io-incident.md +++ b/posts/2018-10-19-Update-on-crates.io-incident.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2018-10-19 title = "Update on the October 15, 2018 incident on crates.io" author = "The Crates.io Team" +++ diff --git a/posts/2018-10-25-Rust-1.30.0.md b/posts/2018-10-25-Rust-1.30.0.md index bc73f4950..351c0eb94 100644 --- a/posts/2018-10-25-Rust-1.30.0.md +++ b/posts/2018-10-25-Rust-1.30.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2018-10-25 title = "Announcing Rust 1.30" author = "The Rust Core Team" release = true diff --git a/posts/2018-10-30-help-test-rust-2018.md b/posts/2018-10-30-help-test-rust-2018.md index 88955d23c..772c096ba 100644 --- a/posts/2018-10-30-help-test-rust-2018.md +++ b/posts/2018-10-30-help-test-rust-2018.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2018-10-30 title = "Help test Rust 2018" author = "The Rust Core Team" +++ diff --git a/posts/2018-11-08-Rust-1.30.1.md b/posts/2018-11-08-Rust-1.30.1.md index 59799ba21..20b6afa85 100644 --- a/posts/2018-11-08-Rust-1.30.1.md +++ b/posts/2018-11-08-Rust-1.30.1.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2018-11-08 title = "Announcing Rust 1.30.1" author = "The Rust Release Team" release = true diff --git a/posts/2018-11-27-Rust-survey-2018.md b/posts/2018-11-27-Rust-survey-2018.md index bdee1a934..b7653427b 100644 --- a/posts/2018-11-27-Rust-survey-2018.md +++ b/posts/2018-11-27-Rust-survey-2018.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2018-11-27 title = "Rust Survey 2018 Results" author = "The Rust Survey Team" +++ diff --git a/posts/2018-11-29-a-new-look-for-rust-lang-org.md b/posts/2018-11-29-a-new-look-for-rust-lang-org.md index f4a79d2a8..1ea8161a6 100644 --- a/posts/2018-11-29-a-new-look-for-rust-lang-org.md +++ b/posts/2018-11-29-a-new-look-for-rust-lang-org.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2018-11-29 title = "A new look for rust-lang.org" author = "The Rust Core Team" +++ diff --git a/posts/2018-12-06-Rust-1.31-and-rust-2018.md b/posts/2018-12-06-Rust-1.31-and-rust-2018.md index e5bf7d415..169fed0c5 100644 --- a/posts/2018-12-06-Rust-1.31-and-rust-2018.md +++ b/posts/2018-12-06-Rust-1.31-and-rust-2018.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2018-12-06 title = "Announcing Rust 1.31 and Rust 2018" author = "The Rust Core Team" release = true diff --git a/posts/2018-12-06-call-for-rust-2019-roadmap-blogposts.md b/posts/2018-12-06-call-for-rust-2019-roadmap-blogposts.md index 70c2ff779..9fc8e7ae1 100644 --- a/posts/2018-12-06-call-for-rust-2019-roadmap-blogposts.md +++ b/posts/2018-12-06-call-for-rust-2019-roadmap-blogposts.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2018-12-06 title = "A call for Rust 2019 Roadmap blog posts" author = "The Rust Core Team" +++ diff --git a/posts/2018-12-17-Rust-2018-dev-tools.md b/posts/2018-12-17-Rust-2018-dev-tools.md index e59caf0c1..e5e6f6b8f 100644 --- a/posts/2018-12-17-Rust-2018-dev-tools.md +++ b/posts/2018-12-17-Rust-2018-dev-tools.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2018-12-17 title = "Tools in the 2018 edition" author = "The Dev-tools team" +++ diff --git a/posts/2018-12-20-Rust-1.31.1.md b/posts/2018-12-20-Rust-1.31.1.md index 88b23315b..924a52f21 100644 --- a/posts/2018-12-20-Rust-1.31.1.md +++ b/posts/2018-12-20-Rust-1.31.1.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2018-12-20 title = "Announcing Rust 1.31.1" author = "The Rust Release Team" release = true diff --git a/posts/2018-12-21-Procedural-Macros-in-Rust-2018.md b/posts/2018-12-21-Procedural-Macros-in-Rust-2018.md index 03bf575cb..243b57f71 100644 --- a/posts/2018-12-21-Procedural-Macros-in-Rust-2018.md +++ b/posts/2018-12-21-Procedural-Macros-in-Rust-2018.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2018-12-21 title = "Procedural Macros in Rust 2018" author = "Alex Crichton" +++ diff --git a/posts/2019-01-17-Rust-1.32.0.md b/posts/2019-01-17-Rust-1.32.0.md index 855a93989..426341d3b 100644 --- a/posts/2019-01-17-Rust-1.32.0.md +++ b/posts/2019-01-17-Rust-1.32.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-01-17 title = "Announcing Rust 1.32.0" author = "The Rust Release Team" release = true diff --git a/posts/2019-02-22-Core-team-changes.md b/posts/2019-02-22-Core-team-changes.md index 3bb5148dd..03b77abe6 100644 --- a/posts/2019-02-22-Core-team-changes.md +++ b/posts/2019-02-22-Core-team-changes.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-02-22 title = "Changes in the core team" author = "The Rust Core Team" +++ diff --git a/posts/2019-02-28-Rust-1.33.0.md b/posts/2019-02-28-Rust-1.33.0.md index 24119c55e..6bb038c95 100644 --- a/posts/2019-02-28-Rust-1.33.0.md +++ b/posts/2019-02-28-Rust-1.33.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-02-28 title = "Announcing Rust 1.33.0" author = "The Rust Release Team" release = true diff --git a/posts/2019-04-11-Rust-1.34.0.md b/posts/2019-04-11-Rust-1.34.0.md index 9b7729bf4..28b9dacc9 100644 --- a/posts/2019-04-11-Rust-1.34.0.md +++ b/posts/2019-04-11-Rust-1.34.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-04-11 title = "Announcing Rust 1.34.0" author = "The Rust Release Team" release = true diff --git a/posts/2019-04-23-roadmap.md b/posts/2019-04-23-roadmap.md index 812f913dd..8d92c2a42 100644 --- a/posts/2019-04-23-roadmap.md +++ b/posts/2019-04-23-roadmap.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-04-23 title = "Rust's 2019 roadmap" author = "The Rust Core Team" +++ diff --git a/posts/2019-04-25-Rust-1.34.1.md b/posts/2019-04-25-Rust-1.34.1.md index 483099209..4c11c0a00 100644 --- a/posts/2019-04-25-Rust-1.34.1.md +++ b/posts/2019-04-25-Rust-1.34.1.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-04-25 title = "Announcing Rust 1.34.1" author = "The Rust Release Team" release = true diff --git a/posts/2019-04-26-Mozilla-IRC-Sunset-and-the-Rust-Channel.md b/posts/2019-04-26-Mozilla-IRC-Sunset-and-the-Rust-Channel.md index 28e960d20..a87aa564d 100644 --- a/posts/2019-04-26-Mozilla-IRC-Sunset-and-the-Rust-Channel.md +++ b/posts/2019-04-26-Mozilla-IRC-Sunset-and-the-Rust-Channel.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-04-26 title = "Mozilla IRC Sunset and the Rust Channel" author = "The Rust Core Team" +++ diff --git a/posts/2019-05-13-Security-advisory.md b/posts/2019-05-13-Security-advisory.md index 4d32473be..3493057b7 100644 --- a/posts/2019-05-13-Security-advisory.md +++ b/posts/2019-05-13-Security-advisory.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-05-13 title = "Security advisory for the standard library" author = "The Rust Core Team" +++ diff --git a/posts/2019-05-14-Rust-1.34.2.md b/posts/2019-05-14-Rust-1.34.2.md index 47f619285..cda5d82af 100644 --- a/posts/2019-05-14-Rust-1.34.2.md +++ b/posts/2019-05-14-Rust-1.34.2.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-05-14 title = "Announcing Rust 1.34.2" author = "The Rust Release Team" release = true diff --git a/posts/2019-05-15-4-Years-Of-Rust.md b/posts/2019-05-15-4-Years-Of-Rust.md index 276efe5a7..72c69fb5c 100644 --- a/posts/2019-05-15-4-Years-Of-Rust.md +++ b/posts/2019-05-15-4-Years-Of-Rust.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-05-15 title = "4 years of Rust" author = "The Rust Core Team" +++ diff --git a/posts/2019-05-20-The-2019-Rust-Event-Lineup.md b/posts/2019-05-20-The-2019-Rust-Event-Lineup.md index aca840bdc..9bc3e7a38 100644 --- a/posts/2019-05-20-The-2019-Rust-Event-Lineup.md +++ b/posts/2019-05-20-The-2019-Rust-Event-Lineup.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-05-20 title = "The 2019 Rust Event Lineup" author = "Rust Community Team" description = "Lots of Rust events are happening this year; join us at one near you!" diff --git a/posts/2019-05-23-Rust-1.35.0.md b/posts/2019-05-23-Rust-1.35.0.md index b09c7d97f..1e4019f1f 100644 --- a/posts/2019-05-23-Rust-1.35.0.md +++ b/posts/2019-05-23-Rust-1.35.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-05-23 title = "Announcing Rust 1.35.0" author = "The Rust Release Team" release = true diff --git a/posts/2019-06-03-governance-wg-announcement.md b/posts/2019-06-03-governance-wg-announcement.md index d338f9b72..c0c16394f 100644 --- a/posts/2019-06-03-governance-wg-announcement.md +++ b/posts/2019-06-03-governance-wg-announcement.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-06-03 title = "The Governance WG is going public" author = "The Rust Governance WG" +++ diff --git a/posts/2019-07-04-Rust-1.36.0.md b/posts/2019-07-04-Rust-1.36.0.md index 682b88367..79d934273 100644 --- a/posts/2019-07-04-Rust-1.36.0.md +++ b/posts/2019-07-04-Rust-1.36.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-07-04 title = "Announcing Rust 1.36.0" author = "The Rust Release Team" release = true diff --git a/posts/2019-08-15-Rust-1.37.0.md b/posts/2019-08-15-Rust-1.37.0.md index 13190060a..928b74d21 100644 --- a/posts/2019-08-15-Rust-1.37.0.md +++ b/posts/2019-08-15-Rust-1.37.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-08-15 title = "Announcing Rust 1.37.0" author = "The Rust Release Team" release = true diff --git a/posts/2019-09-18-upcoming-docsrs-changes.md b/posts/2019-09-18-upcoming-docsrs-changes.md index af994a03c..d7d32e44b 100644 --- a/posts/2019-09-18-upcoming-docsrs-changes.md +++ b/posts/2019-09-18-upcoming-docsrs-changes.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-09-18 title = "Upcoming docs.rs changes" author = "The Rust Infrastructure Team" +++ diff --git a/posts/2019-09-26-Rust-1.38.0.md b/posts/2019-09-26-Rust-1.38.0.md index d4ad0bae2..8714fb410 100644 --- a/posts/2019-09-26-Rust-1.38.0.md +++ b/posts/2019-09-26-Rust-1.38.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-09-26 title = "Announcing Rust 1.38.0" author = "The Rust Release Team" release = true diff --git a/posts/2019-09-30-Async-await-hits-beta.md b/posts/2019-09-30-Async-await-hits-beta.md index d1f44197c..534e73b5b 100644 --- a/posts/2019-09-30-Async-await-hits-beta.md +++ b/posts/2019-09-30-Async-await-hits-beta.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-09-30 title = "Async-await hits beta!" author = "Niko Matsakis" +++ diff --git a/posts/2019-09-30-Security-advisory-for-cargo.md b/posts/2019-09-30-Security-advisory-for-cargo.md index 40d262488..9c7bd9b03 100644 --- a/posts/2019-09-30-Security-advisory-for-cargo.md +++ b/posts/2019-09-30-Security-advisory-for-cargo.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-09-30 title = "Security advisory for Cargo" author = "The Rust Security Team" +++ diff --git a/posts/2019-10-03-inside-rust-blog.md b/posts/2019-10-03-inside-rust-blog.md index 52eff0b6d..0092faced 100644 --- a/posts/2019-10-03-inside-rust-blog.md +++ b/posts/2019-10-03-inside-rust-blog.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-10-03 title = "Announcing the Inside Rust blog" author = "Niko Matsakis" +++ diff --git a/posts/2019-10-15-Rustup-1.20.0.md b/posts/2019-10-15-Rustup-1.20.0.md index 807b1260d..66b5920bf 100644 --- a/posts/2019-10-15-Rustup-1.20.0.md +++ b/posts/2019-10-15-Rustup-1.20.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-10-15 title = "Announcing Rustup 1.20.0" author = "The Rustup Working Group" +++ diff --git a/posts/2019-10-29-A-call-for-blogs-2020.md b/posts/2019-10-29-A-call-for-blogs-2020.md index 32159b2b8..931495ff7 100644 --- a/posts/2019-10-29-A-call-for-blogs-2020.md +++ b/posts/2019-10-29-A-call-for-blogs-2020.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-10-29 title = "A call for blogs 2020" author = "The Rust Core Team" +++ diff --git a/posts/2019-11-01-nll-hard-errors.md b/posts/2019-11-01-nll-hard-errors.md index 79c13f841..dba9dd2cc 100644 --- a/posts/2019-11-01-nll-hard-errors.md +++ b/posts/2019-11-01-nll-hard-errors.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-11-01 title = "Completing the transition to the new borrow checker" author = "Niko Matsakis" +++ diff --git a/posts/2019-11-07-Async-await-stable.md b/posts/2019-11-07-Async-await-stable.md index 6a5f6ac26..daadbe0a5 100644 --- a/posts/2019-11-07-Async-await-stable.md +++ b/posts/2019-11-07-Async-await-stable.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-11-07 title = "Async-await on stable Rust!" author = "Niko Matsakis" +++ diff --git a/posts/2019-11-07-Rust-1.39.0.md b/posts/2019-11-07-Rust-1.39.0.md index 4ee774eb6..5c6f93280 100644 --- a/posts/2019-11-07-Rust-1.39.0.md +++ b/posts/2019-11-07-Rust-1.39.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-11-07 title = "Announcing Rust 1.39.0" author = "The Rust Release Team" release = true diff --git a/posts/2019-12-03-survey-launch.md b/posts/2019-12-03-survey-launch.md index b96bc30e5..f7f47c7ca 100644 --- a/posts/2019-12-03-survey-launch.md +++ b/posts/2019-12-03-survey-launch.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-12-03 title = "Launching the 2019 State of Rust Survey" author = "The Rust Community Team" description = "Hearing from you about the fourth year of Rust" diff --git a/posts/2019-12-19-Rust-1.40.0.md b/posts/2019-12-19-Rust-1.40.0.md index b80140e6a..0c18b8027 100644 --- a/posts/2019-12-19-Rust-1.40.0.md +++ b/posts/2019-12-19-Rust-1.40.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-12-19 title = "Announcing Rust 1.40.0" author = "The Rust Release Team" release = true diff --git a/posts/2020-01-03-reducing-support-for-32-bit-apple-targets.md b/posts/2020-01-03-reducing-support-for-32-bit-apple-targets.md index 7aca44b41..28ffd0bac 100644 --- a/posts/2020-01-03-reducing-support-for-32-bit-apple-targets.md +++ b/posts/2020-01-03-reducing-support-for-32-bit-apple-targets.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-01-03 title = "Reducing support for 32-bit Apple targets" author = "Pietro Albini" +++ diff --git a/posts/2020-01-30-Rust-1.41.0.md b/posts/2020-01-30-Rust-1.41.0.md index 276e6a851..6f62bac18 100644 --- a/posts/2020-01-30-Rust-1.41.0.md +++ b/posts/2020-01-30-Rust-1.41.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-01-30 title = "Announcing Rust 1.41.0" author = "The Rust Release Team" release = true diff --git a/posts/2020-01-31-conf-lineup.md b/posts/2020-01-31-conf-lineup.md index 85bade2de..e382d1414 100644 --- a/posts/2020-01-31-conf-lineup.md +++ b/posts/2020-01-31-conf-lineup.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-01-31 title = "The 2020 Rust Event Lineup" author = "Rust Community" description = "Welcome to 2020; We are excited about the Rust conferences coming up; join us at one near you!" diff --git a/posts/2020-02-27-Rust-1.41.1.md b/posts/2020-02-27-Rust-1.41.1.md index 84b5d3fb3..d0dbe7015 100644 --- a/posts/2020-02-27-Rust-1.41.1.md +++ b/posts/2020-02-27-Rust-1.41.1.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-02-27 title = "Announcing Rust 1.41.1" author = "The Rust Release Team" release = true diff --git a/posts/2020-03-10-rustconf-cfp.md b/posts/2020-03-10-rustconf-cfp.md index e2198cf6e..dde5c8971 100644 --- a/posts/2020-03-10-rustconf-cfp.md +++ b/posts/2020-03-10-rustconf-cfp.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-03-10 title = "The 2020 RustConf CFP is Now Open!" author = "Rust Community" description = "The call for proposals for RustConf 202 is open; We want to hear from you!" diff --git a/posts/2020-03-12-Rust-1.42.md b/posts/2020-03-12-Rust-1.42.md index ffe4b04f5..c7997436d 100644 --- a/posts/2020-03-12-Rust-1.42.md +++ b/posts/2020-03-12-Rust-1.42.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-03-12 title = "Announcing Rust 1.42.0" author = "The Rust Release Team" release = true diff --git a/posts/2020-03-15-docs-rs-opt-into-fewer-targets.md b/posts/2020-03-15-docs-rs-opt-into-fewer-targets.md index 6c9062240..b6daec3ec 100644 --- a/posts/2020-03-15-docs-rs-opt-into-fewer-targets.md +++ b/posts/2020-03-15-docs-rs-opt-into-fewer-targets.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-03-15 title = "docs.rs now allows you to choose your build targets" author = "Jynn Nelson" team = "the docs.rs team " diff --git a/posts/2020-04-17-Rust-survey-2019.md b/posts/2020-04-17-Rust-survey-2019.md index 7ed4e26d3..f9fcdb221 100644 --- a/posts/2020-04-17-Rust-survey-2019.md +++ b/posts/2020-04-17-Rust-survey-2019.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-04-17 title = "Rust Survey 2019 Results" author = "The Rust Survey Team" +++ diff --git a/posts/2020-04-23-Rust-1.43.0.md b/posts/2020-04-23-Rust-1.43.0.md index a9ce92840..ef887685a 100644 --- a/posts/2020-04-23-Rust-1.43.0.md +++ b/posts/2020-04-23-Rust-1.43.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-04-23 title = "Announcing Rust 1.43.0" author = "The Rust Release Team" release = true diff --git a/posts/2020-05-07-Rust.1.43.1.md b/posts/2020-05-07-Rust.1.43.1.md index c0954c4d3..77129e9af 100644 --- a/posts/2020-05-07-Rust.1.43.1.md +++ b/posts/2020-05-07-Rust.1.43.1.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-05-07 title = "Announcing Rust 1.43.1" author = "The Rust Release Team" release = true diff --git a/posts/2020-05-15-five-years-of-rust.md b/posts/2020-05-15-five-years-of-rust.md index aa00e2471..654bc12b4 100644 --- a/posts/2020-05-15-five-years-of-rust.md +++ b/posts/2020-05-15-five-years-of-rust.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-05-15 title = "Five Years of Rust" author = "The Rust Core Team" +++ diff --git a/posts/2020-06-04-Rust-1.44.0.md b/posts/2020-06-04-Rust-1.44.0.md index a4d72cfe6..d4f672188 100644 --- a/posts/2020-06-04-Rust-1.44.0.md +++ b/posts/2020-06-04-Rust-1.44.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-06-04 title = "Announcing Rust 1.44.0" author = "The Rust Core Team" release = true diff --git a/posts/2020-06-10-event-lineup-update.md b/posts/2020-06-10-event-lineup-update.md index 728f8095a..d8f2739cd 100644 --- a/posts/2020-06-10-event-lineup-update.md +++ b/posts/2020-06-10-event-lineup-update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-06-10 title = "2020 Event Lineup - Update" author = "The Rust Community Team" description = "Join Rust events online" diff --git a/posts/2020-06-18-Rust.1.44.1.md b/posts/2020-06-18-Rust.1.44.1.md index 872a8acce..6cc346933 100644 --- a/posts/2020-06-18-Rust.1.44.1.md +++ b/posts/2020-06-18-Rust.1.44.1.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-06-18 title = "Announcing Rust 1.44.1" author = "The Rust Release Team" release = true diff --git a/posts/2020-07-06-Rustup-1.22.0.md b/posts/2020-07-06-Rustup-1.22.0.md index 353f7d119..92b73c267 100644 --- a/posts/2020-07-06-Rustup-1.22.0.md +++ b/posts/2020-07-06-Rustup-1.22.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-07-06 title = "Announcing Rustup 1.22.0" author = "The Rustup Working Group" +++ diff --git a/posts/2020-07-08-Rustup-1.22.1.md b/posts/2020-07-08-Rustup-1.22.1.md index 75a08dd68..b637958b7 100644 --- a/posts/2020-07-08-Rustup-1.22.1.md +++ b/posts/2020-07-08-Rustup-1.22.1.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-07-08 title = "Announcing Rustup 1.22.1" author = "The Rustup Working Group" +++ diff --git a/posts/2020-07-14-crates-io-security-advisory.md b/posts/2020-07-14-crates-io-security-advisory.md index c0189491b..52c10765d 100644 --- a/posts/2020-07-14-crates-io-security-advisory.md +++ b/posts/2020-07-14-crates-io-security-advisory.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-07-14 title = "crates.io security advisory" author = "Rust Security Response WG" +++ diff --git a/posts/2020-07-16-Rust-1.45.0.md b/posts/2020-07-16-Rust-1.45.0.md index 6b74e4556..396a4d9cb 100644 --- a/posts/2020-07-16-Rust-1.45.0.md +++ b/posts/2020-07-16-Rust-1.45.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-07-16 title = "Announcing Rust 1.45.0" author = "The Rust Release Team" release = true diff --git a/posts/2020-07-30-Rust-1.45.1.md b/posts/2020-07-30-Rust-1.45.1.md index 4eacda07e..8ff0a3ee9 100644 --- a/posts/2020-07-30-Rust-1.45.1.md +++ b/posts/2020-07-30-Rust-1.45.1.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-07-30 title = "Announcing Rust 1.45.1" author = "The Rust Release Team" release = true diff --git a/posts/2020-08-03-Rust-1.45.2.md b/posts/2020-08-03-Rust-1.45.2.md index 2f54ce606..ba2df28cb 100644 --- a/posts/2020-08-03-Rust-1.45.2.md +++ b/posts/2020-08-03-Rust-1.45.2.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-08-03 title = "Announcing Rust 1.45.2" author = "The Rust Release Team" release = true diff --git a/posts/2020-08-18-laying-the-foundation-for-rusts-future.md b/posts/2020-08-18-laying-the-foundation-for-rusts-future.md index 126e6e353..0a8a4885b 100644 --- a/posts/2020-08-18-laying-the-foundation-for-rusts-future.md +++ b/posts/2020-08-18-laying-the-foundation-for-rusts-future.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-08-18 title = "Laying the foundation for Rust's future" author = "The Rust Core Team" +++ diff --git a/posts/2020-08-27-Rust-1.46.0.md b/posts/2020-08-27-Rust-1.46.0.md index 470e15239..ae6ce6728 100644 --- a/posts/2020-08-27-Rust-1.46.0.md +++ b/posts/2020-08-27-Rust-1.46.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-08-27 title = "Announcing Rust 1.46.0" author = "The Rust Release Team" release = true diff --git a/posts/2020-09-03-Planning-2021-Roadmap.md b/posts/2020-09-03-Planning-2021-Roadmap.md index d28c54110..3d6274fd8 100644 --- a/posts/2020-09-03-Planning-2021-Roadmap.md +++ b/posts/2020-09-03-Planning-2021-Roadmap.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-09-03 title = "Planning the 2021 Roadmap" author = "The Rust Core Team" +++ diff --git a/posts/2020-09-10-survey-launch.md b/posts/2020-09-10-survey-launch.md index 0c2405a19..c4ce3331b 100644 --- a/posts/2020-09-10-survey-launch.md +++ b/posts/2020-09-10-survey-launch.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-09-10 title = "Launching the 2020 State of Rust Survey" author = "The Rust Community Team" description = "Hearing from you about the fifth year of Rust" diff --git a/posts/2020-09-14-wg-prio-call-for-contributors.md b/posts/2020-09-14-wg-prio-call-for-contributors.md index 3dff444b7..489b1bff3 100644 --- a/posts/2020-09-14-wg-prio-call-for-contributors.md +++ b/posts/2020-09-14-wg-prio-call-for-contributors.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-09-14 title = "A call for contributors from the WG-prioritization team" author = "The Rust WG-Prioritization Team" +++ diff --git a/posts/2020-09-21-Scheduling-2021-Roadmap.md b/posts/2020-09-21-Scheduling-2021-Roadmap.md index 5dd7130e5..39249e45c 100644 --- a/posts/2020-09-21-Scheduling-2021-Roadmap.md +++ b/posts/2020-09-21-Scheduling-2021-Roadmap.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-09-21 title = "Call for 2021 Roadmap Blogs Ending Soon" author = "The Rust Core Team" +++ diff --git a/posts/2020-10-08-Rust-1.47.md b/posts/2020-10-08-Rust-1.47.md index b549fe39e..3581716e5 100644 --- a/posts/2020-10-08-Rust-1.47.md +++ b/posts/2020-10-08-Rust-1.47.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-10-08 title = "Announcing Rust 1.47.0" author = "The Rust Release Team" release = true diff --git a/posts/2020-10-20-regression-labels.md b/posts/2020-10-20-regression-labels.md index 0927a3ed6..890cfc65f 100644 --- a/posts/2020-10-20-regression-labels.md +++ b/posts/2020-10-20-regression-labels.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-10-20 title = "Marking issues as regressions" author = "Camelid" description = "Now anyone can mark issues as regressions!" diff --git a/posts/2020-11-19-Rust-1.48.md b/posts/2020-11-19-Rust-1.48.md index a22c6a0bf..ec3e40660 100644 --- a/posts/2020-11-19-Rust-1.48.md +++ b/posts/2020-11-19-Rust-1.48.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-11-19 title = "Announcing Rust 1.48.0" author = "The Rust Release Team" release = true diff --git a/posts/2020-11-27-Rustup-1.23.0.md b/posts/2020-11-27-Rustup-1.23.0.md index 432ae402f..24cf9a35a 100644 --- a/posts/2020-11-27-Rustup-1.23.0.md +++ b/posts/2020-11-27-Rustup-1.23.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-11-27 title = "Announcing Rustup 1.23.0" author = "The Rustup Working Group" +++ diff --git a/posts/2020-12-07-the-foundation-conversation.md b/posts/2020-12-07-the-foundation-conversation.md index c6a7ce208..c66e6d652 100644 --- a/posts/2020-12-07-the-foundation-conversation.md +++ b/posts/2020-12-07-the-foundation-conversation.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-12-07 title = "The Foundation Conversation" author = "The Rust Core Team" +++ diff --git a/posts/2020-12-11-lock-poisoning-survey.md b/posts/2020-12-11-lock-poisoning-survey.md index 9941ec541..a8b0c10b8 100644 --- a/posts/2020-12-11-lock-poisoning-survey.md +++ b/posts/2020-12-11-lock-poisoning-survey.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-12-11 title = "Launching the Lock Poisoning Survey" author = "Ashley Mannix" team = "The Libs team " diff --git a/posts/2020-12-14-Next-steps-for-the-foundation-conversation.md b/posts/2020-12-14-Next-steps-for-the-foundation-conversation.md index 0bd0e04aa..c17f87a51 100644 --- a/posts/2020-12-14-Next-steps-for-the-foundation-conversation.md +++ b/posts/2020-12-14-Next-steps-for-the-foundation-conversation.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-12-14 title = "Next steps for the Foundation Conversation" author = "The Rust Core Team" +++ diff --git a/posts/2020-12-16-rust-survey-2020.md b/posts/2020-12-16-rust-survey-2020.md index c739fdd1b..7c86e929a 100644 --- a/posts/2020-12-16-rust-survey-2020.md +++ b/posts/2020-12-16-rust-survey-2020.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-12-16 title = "Rust Survey 2020 Results" author = "The Rust Survey Team" +++ diff --git a/posts/2020-12-31-Rust-1.49.0.md b/posts/2020-12-31-Rust-1.49.0.md index e7f665bc4..b8e8f5e26 100644 --- a/posts/2020-12-31-Rust-1.49.0.md +++ b/posts/2020-12-31-Rust-1.49.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-12-31 title = "Announcing Rust 1.49.0" author = "The Rust Release Team" release = true diff --git a/posts/2021-01-04-mdbook-security-advisory.md b/posts/2021-01-04-mdbook-security-advisory.md index 6d2ef3c8a..38ad934c4 100644 --- a/posts/2021-01-04-mdbook-security-advisory.md +++ b/posts/2021-01-04-mdbook-security-advisory.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-01-04 title = "mdBook security advisory" author = "Rust Security Response WG" +++ diff --git a/posts/2021-02-11-Rust-1.50.0.md b/posts/2021-02-11-Rust-1.50.0.md index 2b70a7366..f51b61d7c 100644 --- a/posts/2021-02-11-Rust-1.50.0.md +++ b/posts/2021-02-11-Rust-1.50.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-02-11 title = "Announcing Rust 1.50.0" author = "The Rust Release Team" release = true diff --git a/posts/2021-02-26-const-generics-mvp-beta.md b/posts/2021-02-26-const-generics-mvp-beta.md index c7948e1da..e92c58e25 100644 --- a/posts/2021-02-26-const-generics-mvp-beta.md +++ b/posts/2021-02-26-const-generics-mvp-beta.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-02-26 title = "Const generics MVP hits beta!" author = "The const generics project group" +++ diff --git a/posts/2021-03-18-async-vision-doc.md b/posts/2021-03-18-async-vision-doc.md index bbe24d820..d6988a816 100644 --- a/posts/2021-03-18-async-vision-doc.md +++ b/posts/2021-03-18-async-vision-doc.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-03-18 title = "Building a shared vision for Async Rust" author = "Niko Matsakis" description = "Building a shared vision for Async Rust" diff --git a/posts/2021-03-25-Rust-1.51.0.md b/posts/2021-03-25-Rust-1.51.0.md index 2bbad4da9..cc6728113 100644 --- a/posts/2021-03-25-Rust-1.51.0.md +++ b/posts/2021-03-25-Rust-1.51.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-03-25 title = "Announcing Rust 1.51.0" author = "The Rust Release Team" release = true diff --git a/posts/2021-04-14-async-vision-doc-shiny-future.md b/posts/2021-04-14-async-vision-doc-shiny-future.md index a9cbe38a7..c9867ff74 100644 --- a/posts/2021-04-14-async-vision-doc-shiny-future.md +++ b/posts/2021-04-14-async-vision-doc-shiny-future.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-04-14 title = "Brainstorming Async Rust's Shiny Future" author = "Niko Matsakis" description = "Brainstorming Async Rust's Shiny Future" diff --git a/posts/2021-04-27-Rustup-1.24.0.md b/posts/2021-04-27-Rustup-1.24.0.md index aef16a36b..3ef4423ca 100644 --- a/posts/2021-04-27-Rustup-1.24.0.md +++ b/posts/2021-04-27-Rustup-1.24.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-04-27 title = "Announcing Rustup 1.24.0" author = "The Rustup Working Group" +++ diff --git a/posts/2021-04-29-Rustup-1.24.1.md b/posts/2021-04-29-Rustup-1.24.1.md index 66d27043a..6f0e0f4b5 100644 --- a/posts/2021-04-29-Rustup-1.24.1.md +++ b/posts/2021-04-29-Rustup-1.24.1.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-04-29 title = "Announcing Rustup 1.24.1" author = "The Rustup Working Group" +++ diff --git a/posts/2021-05-06-Rust-1.52.0.md b/posts/2021-05-06-Rust-1.52.0.md index 69e5fc69f..77b002acd 100644 --- a/posts/2021-05-06-Rust-1.52.0.md +++ b/posts/2021-05-06-Rust-1.52.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-05-06 title = "Announcing Rust 1.52.0" author = "The Rust Release Team" release = true diff --git a/posts/2021-05-10-Rust-1.52.1.md b/posts/2021-05-10-Rust-1.52.1.md index 769570449..63a84a492 100644 --- a/posts/2021-05-10-Rust-1.52.1.md +++ b/posts/2021-05-10-Rust-1.52.1.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-05-10 title = "Announcing Rust 1.52.1" author = "Felix Klock, Mark Rousskov" team = "the compiler team " diff --git a/posts/2021-05-11-edition-2021.md b/posts/2021-05-11-edition-2021.md index 3df12be1d..f518464eb 100644 --- a/posts/2021-05-11-edition-2021.md +++ b/posts/2021-05-11-edition-2021.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-05-11 title = "The Plan for the Rust 2021 Edition" author = "Mara Bos" team = "The Rust 2021 Edition Working Group " diff --git a/posts/2021-05-15-six-years-of-rust.md b/posts/2021-05-15-six-years-of-rust.md index 8b181f512..11ac93b5e 100644 --- a/posts/2021-05-15-six-years-of-rust.md +++ b/posts/2021-05-15-six-years-of-rust.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-05-15 title = "Six Years of Rust" author = "The Rust Team" +++ diff --git a/posts/2021-05-17-Rustup-1.24.2.md b/posts/2021-05-17-Rustup-1.24.2.md index 76489e8b1..8cef5f5ea 100644 --- a/posts/2021-05-17-Rustup-1.24.2.md +++ b/posts/2021-05-17-Rustup-1.24.2.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-05-17 title = "Announcing Rustup 1.24.2" author = "The Rustup Working Group" +++ diff --git a/posts/2021-06-08-Rustup-1.24.3.md b/posts/2021-06-08-Rustup-1.24.3.md index 314c9cba4..f2eb46677 100644 --- a/posts/2021-06-08-Rustup-1.24.3.md +++ b/posts/2021-06-08-Rustup-1.24.3.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-06-08 title = "Announcing Rustup 1.24.3" author = "The Rustup Working Group" +++ diff --git a/posts/2021-06-17-Rust-1.53.0.md b/posts/2021-06-17-Rust-1.53.0.md index 125c8bb18..29dd336da 100644 --- a/posts/2021-06-17-Rust-1.53.0.md +++ b/posts/2021-06-17-Rust-1.53.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-06-17 title = "Announcing Rust 1.53.0" author = "The Rust Release Team" release = true diff --git a/posts/2021-07-21-Rust-2021-public-testing.md b/posts/2021-07-21-Rust-2021-public-testing.md index f7ee0ff92..4381f6285 100644 --- a/posts/2021-07-21-Rust-2021-public-testing.md +++ b/posts/2021-07-21-Rust-2021-public-testing.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-07-21 title = "Rust 2021 public testing period" author = "Niko Matsakis" team = "the Edition 2021 Project Group " diff --git a/posts/2021-07-29-Rust-1.54.0.md b/posts/2021-07-29-Rust-1.54.0.md index 7c8a34b38..fdd69dc37 100644 --- a/posts/2021-07-29-Rust-1.54.0.md +++ b/posts/2021-07-29-Rust-1.54.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-07-29 title = "Announcing Rust 1.54.0" author = "The Rust Release Team" release = true diff --git a/posts/2021-08-03-GATs-stabilization-push.md b/posts/2021-08-03-GATs-stabilization-push.md index 5d1b64f73..7a3805dbe 100644 --- a/posts/2021-08-03-GATs-stabilization-push.md +++ b/posts/2021-08-03-GATs-stabilization-push.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-08-03 title = "The push for GATs stabilization" author = "Jack Huey" team = "the Traits Working Group " diff --git a/posts/2021-09-09-Rust-1.55.0.md b/posts/2021-09-09-Rust-1.55.0.md index 35d09b647..4bb617b20 100644 --- a/posts/2021-09-09-Rust-1.55.0.md +++ b/posts/2021-09-09-Rust-1.55.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-09-09 title = "Announcing Rust 1.55.0" author = "The Rust Release Team" release = true diff --git a/posts/2021-09-27-Core-team-membership-updates.md b/posts/2021-09-27-Core-team-membership-updates.md index 6ce7bf3be..d62ba995a 100644 --- a/posts/2021-09-27-Core-team-membership-updates.md +++ b/posts/2021-09-27-Core-team-membership-updates.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-09-27 title = "Core team membership updates" author = "The Rust Core Team" +++ diff --git a/posts/2021-10-21-Rust-1.56.0.md b/posts/2021-10-21-Rust-1.56.0.md index cc7ac9c3e..beabd1423 100644 --- a/posts/2021-10-21-Rust-1.56.0.md +++ b/posts/2021-10-21-Rust-1.56.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-10-21 title = "Announcing Rust 1.56.0 and Rust 2021" author = "The Rust Release Team" release = true diff --git a/posts/2021-11-01-Rust-1.56.1.md b/posts/2021-11-01-Rust-1.56.1.md index 4b18e1810..bebf00092 100644 --- a/posts/2021-11-01-Rust-1.56.1.md +++ b/posts/2021-11-01-Rust-1.56.1.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-11-01 title = "Announcing Rust 1.56.1" author = "The Rust Security Response WG" release = true diff --git a/posts/2021-11-01-cve-2021-42574.md b/posts/2021-11-01-cve-2021-42574.md index 541eb395c..d73db3ea7 100644 --- a/posts/2021-11-01-cve-2021-42574.md +++ b/posts/2021-11-01-cve-2021-42574.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-11-01 title = "Security advisory for rustc (CVE-2021-42574)" author = "The Rust Security Response WG" +++ diff --git a/posts/2021-12-02-Rust-1.57.0.md b/posts/2021-12-02-Rust-1.57.0.md index 43fa1f985..08c58c040 100644 --- a/posts/2021-12-02-Rust-1.57.0.md +++ b/posts/2021-12-02-Rust-1.57.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-12-02 title = "Announcing Rust 1.57.0" author = "The Rust Release Team" release = true diff --git a/posts/2021-12-08-survey-launch.md b/posts/2021-12-08-survey-launch.md index 8251b4a0d..4b014d147 100644 --- a/posts/2021-12-08-survey-launch.md +++ b/posts/2021-12-08-survey-launch.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-12-08 title = "Launching the 2021 State of Rust Survey" author = "The Rust Community Team" description = "Hearing from you about the sixth year of Rust" diff --git a/posts/2022-01-13-Rust-1.58.0.md b/posts/2022-01-13-Rust-1.58.0.md index 61e618e9b..14145cfdf 100644 --- a/posts/2022-01-13-Rust-1.58.0.md +++ b/posts/2022-01-13-Rust-1.58.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-01-13 title = "Announcing Rust 1.58.0" author = "The Rust Release Team" release = true diff --git a/posts/2022-01-20-Rust-1.58.1.md b/posts/2022-01-20-Rust-1.58.1.md index bd6ca47b7..cb8b95788 100644 --- a/posts/2022-01-20-Rust-1.58.1.md +++ b/posts/2022-01-20-Rust-1.58.1.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-01-20 title = "Announcing Rust 1.58.1" author = "The Rust Release Team" release = true diff --git a/posts/2022-01-20-cve-2022-21658.md b/posts/2022-01-20-cve-2022-21658.md index 2fe6976a5..306b9e169 100644 --- a/posts/2022-01-20-cve-2022-21658.md +++ b/posts/2022-01-20-cve-2022-21658.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-01-20 title = "Security advisory for the standard library (CVE-2022-21658)" author = "The Rust Security Response WG" +++ diff --git a/posts/2022-01-31-changes-in-the-core-team.md b/posts/2022-01-31-changes-in-the-core-team.md index 66eca8e86..0e0575f8a 100644 --- a/posts/2022-01-31-changes-in-the-core-team.md +++ b/posts/2022-01-31-changes-in-the-core-team.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-01-31 title = "Changes in the Core Team" author = "The Rust Core Team" +++ diff --git a/posts/2022-02-14-crates-io-snapshot-branches.md b/posts/2022-02-14-crates-io-snapshot-branches.md index 0b392ecea..4280632c4 100644 --- a/posts/2022-02-14-crates-io-snapshot-branches.md +++ b/posts/2022-02-14-crates-io-snapshot-branches.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-02-14 title = "Crates.io Index Snapshot Branches Moving" author = "The Crates.io Team" +++ diff --git a/posts/2022-02-15-Rust-Survey-2021.md b/posts/2022-02-15-Rust-Survey-2021.md index fbc119abf..a0130db72 100644 --- a/posts/2022-02-15-Rust-Survey-2021.md +++ b/posts/2022-02-15-Rust-Survey-2021.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-02-15 title = "Rust Survey 2021 Results" author = "The Rust Survey Team" +++ diff --git a/posts/2022-02-21-rust-analyzer-joins-rust-org.md b/posts/2022-02-21-rust-analyzer-joins-rust-org.md index 0526fc318..f0fe066da 100644 --- a/posts/2022-02-21-rust-analyzer-joins-rust-org.md +++ b/posts/2022-02-21-rust-analyzer-joins-rust-org.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-02-21 title = "rust-analyzer joins the Rust organization!" author = "The rust-analyzer Team on behalf of the entire Rust Team" +++ diff --git a/posts/2022-02-24-Rust-1.59.0.md b/posts/2022-02-24-Rust-1.59.0.md index e01ab7d5c..197c389d7 100644 --- a/posts/2022-02-24-Rust-1.59.0.md +++ b/posts/2022-02-24-Rust-1.59.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-02-24 title = "Announcing Rust 1.59.0" author = "The Rust Team" release = true diff --git a/posts/2022-03-08-cve-2022-24713.md b/posts/2022-03-08-cve-2022-24713.md index 47661e451..9e8df828b 100644 --- a/posts/2022-03-08-cve-2022-24713.md +++ b/posts/2022-03-08-cve-2022-24713.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-03-08 title = "Security advisory for the regex crate (CVE-2022-24713)" author = "The Rust Security Response WG" +++ diff --git a/posts/2022-04-07-Rust-1.60.0.md b/posts/2022-04-07-Rust-1.60.0.md index 1a75fe0e6..ad1e6f2cf 100644 --- a/posts/2022-04-07-Rust-1.60.0.md +++ b/posts/2022-04-07-Rust-1.60.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-04-07 title = "Announcing Rust 1.60.0" author = "The Rust Release Team" release = true diff --git a/posts/2022-05-10-malicious-crate-rustdecimal.md b/posts/2022-05-10-malicious-crate-rustdecimal.md index 62ddaaaf0..4ce4ef70e 100644 --- a/posts/2022-05-10-malicious-crate-rustdecimal.md +++ b/posts/2022-05-10-malicious-crate-rustdecimal.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-05-10 title = "Security advisory: malicious crate rustdecimal" author = "The Rust Security Response WG" +++ diff --git a/posts/2022-05-19-Rust-1.61.0.md b/posts/2022-05-19-Rust-1.61.0.md index 141d33cd9..67f62a2cd 100644 --- a/posts/2022-05-19-Rust-1.61.0.md +++ b/posts/2022-05-19-Rust-1.61.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-05-19 title = "Announcing Rust 1.61.0" author = "The Rust Release Team" release = true diff --git a/posts/2022-06-22-sparse-registry-testing.md b/posts/2022-06-22-sparse-registry-testing.md index c22b344d8..cdeae933e 100644 --- a/posts/2022-06-22-sparse-registry-testing.md +++ b/posts/2022-06-22-sparse-registry-testing.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-06-22 title = "Call for testing: Cargo sparse-registry" author = "Arlo Siemsen" team = "The Cargo Team " diff --git a/posts/2022-06-28-rust-unconference.md b/posts/2022-06-28-rust-unconference.md index 37fd6b5cc..3cac65657 100644 --- a/posts/2022-06-28-rust-unconference.md +++ b/posts/2022-06-28-rust-unconference.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-06-28 title = "Announcing The RustConf PostConf UnConf" author = "Jane Lusby, on behalf of The Rust Project Teams" +++ diff --git a/posts/2022-06-30-Rust-1.62.0.md b/posts/2022-06-30-Rust-1.62.0.md index 72bf9d58f..4a6eea59d 100644 --- a/posts/2022-06-30-Rust-1.62.0.md +++ b/posts/2022-06-30-Rust-1.62.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-06-30 title = "Announcing Rust 1.62.0" author = "The Rust Release Team" release = true diff --git a/posts/2022-07-01-RLS-deprecation.md b/posts/2022-07-01-RLS-deprecation.md index 732eecc43..6f3fae720 100644 --- a/posts/2022-07-01-RLS-deprecation.md +++ b/posts/2022-07-01-RLS-deprecation.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-07-01 title = "RLS Deprecation" author = "The Rust Dev Tools Team" +++ diff --git a/posts/2022-07-11-Rustup-1.25.0.md b/posts/2022-07-11-Rustup-1.25.0.md index 0f2f48e51..351bc30cb 100644 --- a/posts/2022-07-11-Rustup-1.25.0.md +++ b/posts/2022-07-11-Rustup-1.25.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-07-11 title = "Announcing Rustup 1.25.0" author = "The Rustup Working Group" +++ diff --git a/posts/2022-07-12-Rustup-1.25.1.md b/posts/2022-07-12-Rustup-1.25.1.md index a466c0e03..df76edcfc 100644 --- a/posts/2022-07-12-Rustup-1.25.1.md +++ b/posts/2022-07-12-Rustup-1.25.1.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-07-12 title = "Announcing Rustup 1.25.1" author = "The Rustup Working Group" +++ diff --git a/posts/2022-07-12-changes-in-the-core-team.md b/posts/2022-07-12-changes-in-the-core-team.md index 38e318df4..2410846fa 100644 --- a/posts/2022-07-12-changes-in-the-core-team.md +++ b/posts/2022-07-12-changes-in-the-core-team.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-07-12 title = "Changes in the Core Team" author = "The Rust Core Team" +++ diff --git a/posts/2022-07-19-Rust-1.62.1.md b/posts/2022-07-19-Rust-1.62.1.md index 85a271923..c24216458 100644 --- a/posts/2022-07-19-Rust-1.62.1.md +++ b/posts/2022-07-19-Rust-1.62.1.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-07-19 title = "Announcing Rust 1.62.1" author = "The Rust Release Team" release = true diff --git a/posts/2022-08-01-Increasing-glibc-kernel-requirements.md b/posts/2022-08-01-Increasing-glibc-kernel-requirements.md index cb86366c7..6d03e1a69 100644 --- a/posts/2022-08-01-Increasing-glibc-kernel-requirements.md +++ b/posts/2022-08-01-Increasing-glibc-kernel-requirements.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-08-01 title = "Increasing the glibc and Linux kernel requirements" author = "Nikita Popov" +++ diff --git a/posts/2022-08-05-nll-by-default.md b/posts/2022-08-05-nll-by-default.md index 87661a143..7cd8ff95c 100644 --- a/posts/2022-08-05-nll-by-default.md +++ b/posts/2022-08-05-nll-by-default.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-08-05 title = "Non-lexical lifetimes (NLL) fully stable" author = "Niko Matsakis" team = "the NLL working group " diff --git a/posts/2022-08-11-Rust-1.63.0.md b/posts/2022-08-11-Rust-1.63.0.md index d98123d21..da79c1be8 100644 --- a/posts/2022-08-11-Rust-1.63.0.md +++ b/posts/2022-08-11-Rust-1.63.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-08-11 title = "Announcing Rust 1.63.0" author = "The Rust Release Team" release = true diff --git a/posts/2022-09-14-cargo-cves.md b/posts/2022-09-14-cargo-cves.md index fec865242..05f3f8d2d 100644 --- a/posts/2022-09-14-cargo-cves.md +++ b/posts/2022-09-14-cargo-cves.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-09-14 title = "Security advisories for Cargo (CVE-2022-36113, CVE-2022-36114)" author = "The Rust Security Response WG" +++ diff --git a/posts/2022-09-15-const-eval-safety-rule-revision.md b/posts/2022-09-15-const-eval-safety-rule-revision.md index 2766a4fa6..c5d8e8eb1 100644 --- a/posts/2022-09-15-const-eval-safety-rule-revision.md +++ b/posts/2022-09-15-const-eval-safety-rule-revision.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-09-15 title = "Const Eval (Un)Safety Rules" author = "Felix Klock" description = "Various ways const-eval can change between Rust versions" diff --git a/posts/2022-09-22-Rust-1.64.0.md b/posts/2022-09-22-Rust-1.64.0.md index ed195d333..42b5b644a 100644 --- a/posts/2022-09-22-Rust-1.64.0.md +++ b/posts/2022-09-22-Rust-1.64.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-09-22 title = "Announcing Rust 1.64.0" author = "The Rust Release Team" release = true diff --git a/posts/2022-10-28-gats-stabilization.md b/posts/2022-10-28-gats-stabilization.md index 383506d4d..1510584d7 100644 --- a/posts/2022-10-28-gats-stabilization.md +++ b/posts/2022-10-28-gats-stabilization.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-10-28 title = "Generic associated types to be stable in Rust 1.65" author = "Jack Huey" description = "Generic associated types will stabilize in Rust 1.65" diff --git a/posts/2022-11-03-Rust-1.65.0.md b/posts/2022-11-03-Rust-1.65.0.md index f09d07e23..da39c47e6 100644 --- a/posts/2022-11-03-Rust-1.65.0.md +++ b/posts/2022-11-03-Rust-1.65.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-11-03 title = "Announcing Rust 1.65.0" author = "The Rust Release Team" release = true diff --git a/posts/2022-12-05-survey-launch.md b/posts/2022-12-05-survey-launch.md index 4b20a058b..a13cbf86c 100644 --- a/posts/2022-12-05-survey-launch.md +++ b/posts/2022-12-05-survey-launch.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-12-05 title = "Launching the 2022 State of Rust Survey" author = "The Rust Survey Working Group" description = "Hearing from you about the seventh year of Rust" diff --git a/posts/2022-12-15-Rust-1.66.0.md b/posts/2022-12-15-Rust-1.66.0.md index ff70f7a12..cfae68bf9 100644 --- a/posts/2022-12-15-Rust-1.66.0.md +++ b/posts/2022-12-15-Rust-1.66.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-12-15 title = "Announcing Rust 1.66.0" author = "The Rust Release Team" release = true diff --git a/posts/2023-01-09-android-ndk-update-r25.md b/posts/2023-01-09-android-ndk-update-r25.md index c1ab2f9ba..a4c184444 100644 --- a/posts/2023-01-09-android-ndk-update-r25.md +++ b/posts/2023-01-09-android-ndk-update-r25.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-01-09 title = "Updating the Android NDK in Rust 1.68" author = "Android Platform Team" description = "Modernizing Android support in Rust" diff --git a/posts/2023-01-10-Rust-1.66.1.md b/posts/2023-01-10-Rust-1.66.1.md index badfcffb9..32ef2dfa6 100644 --- a/posts/2023-01-10-Rust-1.66.1.md +++ b/posts/2023-01-10-Rust-1.66.1.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-01-10 title = "Announcing Rust 1.66.1" author = "The Rust Release Team" release = true diff --git a/posts/2023-01-10-cve-2022-46176.md b/posts/2023-01-10-cve-2022-46176.md index 0a2a30761..93404dccb 100644 --- a/posts/2023-01-10-cve-2022-46176.md +++ b/posts/2023-01-10-cve-2022-46176.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-01-10 title = "Security advisory for Cargo (CVE-2022-46176)" author = "The Rust Security Response WG" +++ diff --git a/posts/2023-01-20-types-announcement.md b/posts/2023-01-20-types-announcement.md index f9fe4d1a1..962eaeb02 100644 --- a/posts/2023-01-20-types-announcement.md +++ b/posts/2023-01-20-types-announcement.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-01-20 title = "Officially announcing the types team" author = "Jack Huey" description = "An overview of the new types team" diff --git a/posts/2023-01-26-Rust-1.67.0.md b/posts/2023-01-26-Rust-1.67.0.md index 37d0fe31a..6de8aea3e 100644 --- a/posts/2023-01-26-Rust-1.67.0.md +++ b/posts/2023-01-26-Rust-1.67.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-01-26 title = "Announcing Rust 1.67.0" author = "The Rust Release Team" release = true diff --git a/posts/2023-02-01-Rustup-1.25.2.md b/posts/2023-02-01-Rustup-1.25.2.md index aad0ca2c5..ce4db99f6 100644 --- a/posts/2023-02-01-Rustup-1.25.2.md +++ b/posts/2023-02-01-Rustup-1.25.2.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-02-01 title = "Announcing Rustup 1.25.2" author = "The rustup working group" +++ diff --git a/posts/2023-02-09-Rust-1.67.1.md b/posts/2023-02-09-Rust-1.67.1.md index db3e5f773..f9fe7ff55 100644 --- a/posts/2023-02-09-Rust-1.67.1.md +++ b/posts/2023-02-09-Rust-1.67.1.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-02-09 title = "Announcing Rust 1.67.1" author = "The Rust Release Team" release = true diff --git a/posts/2023-03-09-Rust-1.68.0.md b/posts/2023-03-09-Rust-1.68.0.md index 4da0a91ad..ed571e4db 100644 --- a/posts/2023-03-09-Rust-1.68.0.md +++ b/posts/2023-03-09-Rust-1.68.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-03-09 title = "Announcing Rust 1.68.0" author = "The Rust Release Team" release = true diff --git a/posts/2023-03-23-Rust-1.68.1.md b/posts/2023-03-23-Rust-1.68.1.md index f4db51437..68fa78e7f 100644 --- a/posts/2023-03-23-Rust-1.68.1.md +++ b/posts/2023-03-23-Rust-1.68.1.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-03-23 title = "Announcing Rust 1.68.1" author = "The Rust Release Team" release = true diff --git a/posts/2023-03-28-Rust-1.68.2.md b/posts/2023-03-28-Rust-1.68.2.md index db678d66c..be65c7062 100644 --- a/posts/2023-03-28-Rust-1.68.2.md +++ b/posts/2023-03-28-Rust-1.68.2.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-03-28 title = "Announcing Rust 1.68.2" author = "The Rust Release Team" release = true diff --git a/posts/2023-04-20-Rust-1.69.0.md b/posts/2023-04-20-Rust-1.69.0.md index 9ad2b1119..ac4d98a7c 100644 --- a/posts/2023-04-20-Rust-1.69.0.md +++ b/posts/2023-04-20-Rust-1.69.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-04-20 title = "Announcing Rust 1.69.0" author = "The Rust Release Team" release = true diff --git a/posts/2023-04-25-Rustup-1.26.0.md b/posts/2023-04-25-Rustup-1.26.0.md index 56f3eb10c..70f9a5cb9 100644 --- a/posts/2023-04-25-Rustup-1.26.0.md +++ b/posts/2023-04-25-Rustup-1.26.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-04-25 title = "Announcing Rustup 1.26.0" author = "The Rustup Working Group" +++ diff --git a/posts/2023-05-09-Updating-musl-targets.md b/posts/2023-05-09-Updating-musl-targets.md index df5d18890..2ad8ca65b 100644 --- a/posts/2023-05-09-Updating-musl-targets.md +++ b/posts/2023-05-09-Updating-musl-targets.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-05-09 title = "Updating Rust's Linux musl targets" author = "Wesley Wiser" description = "musl targets will soon ship with musl 1.2" diff --git a/posts/2023-05-29-RustConf.md b/posts/2023-05-29-RustConf.md index 20ecfe311..3372995b8 100644 --- a/posts/2023-05-29-RustConf.md +++ b/posts/2023-05-29-RustConf.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-05-29 title = "On the RustConf keynote" author = "leadership chat membership" team = "leadership chat " diff --git a/posts/2023-06-01-Rust-1.70.0.md b/posts/2023-06-01-Rust-1.70.0.md index 0d45d9808..14ccfbc0f 100644 --- a/posts/2023-06-01-Rust-1.70.0.md +++ b/posts/2023-06-01-Rust-1.70.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-06-01 title = "Announcing Rust 1.70.0" author = "The Rust Release Team" release = true diff --git a/posts/2023-06-20-introducing-leadership-council.md b/posts/2023-06-20-introducing-leadership-council.md index 45f4146ae..8ccfdb5fb 100644 --- a/posts/2023-06-20-introducing-leadership-council.md +++ b/posts/2023-06-20-introducing-leadership-council.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-06-20 title = "Introducing the Rust Leadership Council" author = "Leadership Council" team = "Leadership Council " diff --git a/posts/2023-06-23-improved-api-tokens-for-crates-io.md b/posts/2023-06-23-improved-api-tokens-for-crates-io.md index c298b3bbe..fced5457d 100644 --- a/posts/2023-06-23-improved-api-tokens-for-crates-io.md +++ b/posts/2023-06-23-improved-api-tokens-for-crates-io.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-06-23 title = "Improved API tokens for crates.io" author = "Tobias Bieniek" team = "the crates.io team " diff --git a/posts/2023-07-01-rustfmt-supports-let-else-statements.md b/posts/2023-07-01-rustfmt-supports-let-else-statements.md index 42a594749..3f0e8143e 100644 --- a/posts/2023-07-01-rustfmt-supports-let-else-statements.md +++ b/posts/2023-07-01-rustfmt-supports-let-else-statements.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-07-01 title = "Rustfmt support for let-else statements" author = "Caleb Cartwright" team = "the style team and the rustfmt team " diff --git a/posts/2023-07-05-regex-1.9.md b/posts/2023-07-05-regex-1.9.md index a082e4e3f..cc1a5aee9 100644 --- a/posts/2023-07-05-regex-1.9.md +++ b/posts/2023-07-05-regex-1.9.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-07-05 title = "Announcing regex 1.9" author = "Andrew Gallant" team = "The regex crate team " diff --git a/posts/2023-07-13-Rust-1.71.0.md b/posts/2023-07-13-Rust-1.71.0.md index 1184ac329..3a083616f 100644 --- a/posts/2023-07-13-Rust-1.71.0.md +++ b/posts/2023-07-13-Rust-1.71.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-07-13 title = "Announcing Rust 1.71.0" author = "The Rust Release Team" release = true diff --git a/posts/2023-08-03-Rust-1.71.1.md b/posts/2023-08-03-Rust-1.71.1.md index bd8369439..64d78db60 100644 --- a/posts/2023-08-03-Rust-1.71.1.md +++ b/posts/2023-08-03-Rust-1.71.1.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-08-03 title = "Announcing Rust 1.71.1" author = "The Rust Release Team" release = true diff --git a/posts/2023-08-03-cve-2023-38497.md b/posts/2023-08-03-cve-2023-38497.md index d35b8de50..997fc3651 100644 --- a/posts/2023-08-03-cve-2023-38497.md +++ b/posts/2023-08-03-cve-2023-38497.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-08-03 title = "Security advisory for Cargo (CVE-2023-38497)" author = "The Rust Security Response WG" +++ diff --git a/posts/2023-08-07-Rust-Survey-2023-Results.md b/posts/2023-08-07-Rust-Survey-2023-Results.md index 493ef6679..ccdc5a37d 100644 --- a/posts/2023-08-07-Rust-Survey-2023-Results.md +++ b/posts/2023-08-07-Rust-Survey-2023-Results.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-08-07 title = "2022 Annual Rust Survey Results" author = "The Rust Survey Working Group in partnership with the Rust Foundation" +++ diff --git a/posts/2023-08-24-Rust-1.72.0.md b/posts/2023-08-24-Rust-1.72.0.md index 1f8eec400..acdae1748 100644 --- a/posts/2023-08-24-Rust-1.72.0.md +++ b/posts/2023-08-24-Rust-1.72.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-08-24 title = "Announcing Rust 1.72.0" author = "The Rust Release Team" release = true diff --git a/posts/2023-08-29-committing-lockfiles.md b/posts/2023-08-29-committing-lockfiles.md index 446715e1e..ec33d648e 100644 --- a/posts/2023-08-29-committing-lockfiles.md +++ b/posts/2023-08-29-committing-lockfiles.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-08-29 title = "Change in Guidance on Committing Lockfiles" author = "Ed Page" team = "The Cargo Team " diff --git a/posts/2023-08-30-electing-new-project-directors.md b/posts/2023-08-30-electing-new-project-directors.md index 8c2a2bfc2..864a968ec 100644 --- a/posts/2023-08-30-electing-new-project-directors.md +++ b/posts/2023-08-30-electing-new-project-directors.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-08-30 title = "Electing New Project Directors" author = "Leadership Council" team = "Leadership Council " diff --git a/posts/2023-09-19-Rust-1.72.1.md b/posts/2023-09-19-Rust-1.72.1.md index cdf222c77..f3ddaedd0 100644 --- a/posts/2023-09-19-Rust-1.72.1.md +++ b/posts/2023-09-19-Rust-1.72.1.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-09-19 title = "Announcing Rust 1.72.1" author = "The Rust Release Team" release = true diff --git a/posts/2023-09-22-crates-io-usage-policy-rfc.md b/posts/2023-09-22-crates-io-usage-policy-rfc.md index 681e1236a..895fd94bc 100644 --- a/posts/2023-09-22-crates-io-usage-policy-rfc.md +++ b/posts/2023-09-22-crates-io-usage-policy-rfc.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-09-22 title = "crates.io Policy Update RFC" author = "Tobias Bieniek" team = "the crates.io team " diff --git a/posts/2023-09-25-Increasing-Apple-Version-Requirements.md b/posts/2023-09-25-Increasing-Apple-Version-Requirements.md index f5f9a5c2f..cd080ae9c 100644 --- a/posts/2023-09-25-Increasing-Apple-Version-Requirements.md +++ b/posts/2023-09-25-Increasing-Apple-Version-Requirements.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-09-25 title = "Increasing the minimum supported Apple platform versions" author = "BlackHoleFox" description = "Modernizing and improving Apple platform support for Rust" diff --git a/posts/2023-10-05-Rust-1.73.0.md b/posts/2023-10-05-Rust-1.73.0.md index 879cdf655..3efe5b5d3 100644 --- a/posts/2023-10-05-Rust-1.73.0.md +++ b/posts/2023-10-05-Rust-1.73.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-10-05 title = "Announcing Rust 1.73.0" author = "The Rust Release Team" release = true diff --git a/posts/2023-10-19-announcing-the-new-rust-project-directors.md b/posts/2023-10-19-announcing-the-new-rust-project-directors.md index 98f0a14fd..ab5d5a799 100644 --- a/posts/2023-10-19-announcing-the-new-rust-project-directors.md +++ b/posts/2023-10-19-announcing-the-new-rust-project-directors.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-10-19 title = "Announcing the New Rust Project Directors" author = "Leadership Council" team = "Leadership Council " diff --git a/posts/2023-10-26-broken-badges-and-23k-keywords.md b/posts/2023-10-26-broken-badges-and-23k-keywords.md index 771d49ac2..9c4165db5 100644 --- a/posts/2023-10-26-broken-badges-and-23k-keywords.md +++ b/posts/2023-10-26-broken-badges-and-23k-keywords.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-10-26 title = "A tale of broken badges and 23,000 features" author = "Tobias Bieniek" team = "the crates.io team " diff --git a/posts/2023-10-27-crates-io-non-canonical-downloads.md b/posts/2023-10-27-crates-io-non-canonical-downloads.md index 37679b2de..a0d297c9f 100644 --- a/posts/2023-10-27-crates-io-non-canonical-downloads.md +++ b/posts/2023-10-27-crates-io-non-canonical-downloads.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-10-27 title = "crates.io: Dropping support for non-canonical downloads" author = "Tobias Bieniek" team = "the crates.io team " diff --git a/posts/2023-11-09-parallel-rustc.md b/posts/2023-11-09-parallel-rustc.md index 251f145c4..a64944e1a 100644 --- a/posts/2023-11-09-parallel-rustc.md +++ b/posts/2023-11-09-parallel-rustc.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-11-09 title = "Faster compilation with the parallel front-end in nightly" author = "Nicholas Nethercote" team = "The Parallel Rustc Working Group " diff --git a/posts/2023-11-16-Rust-1.74.0.md b/posts/2023-11-16-Rust-1.74.0.md index d5c4be80b..57cfd35fa 100644 --- a/posts/2023-11-16-Rust-1.74.0.md +++ b/posts/2023-11-16-Rust-1.74.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-11-16 title = "Announcing Rust 1.74.0" author = "The Rust Release Team" release = true diff --git a/posts/2023-12-07-Rust-1.74.1.md b/posts/2023-12-07-Rust-1.74.1.md index 6e9bb3526..35d9026ea 100644 --- a/posts/2023-12-07-Rust-1.74.1.md +++ b/posts/2023-12-07-Rust-1.74.1.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-12-07 title = "Announcing Rust 1.74.1" author = "The Rust Release Team" release = true diff --git a/posts/2023-12-11-cargo-cache-cleaning.md b/posts/2023-12-11-cargo-cache-cleaning.md index e8ca6e1e0..e944717f2 100644 --- a/posts/2023-12-11-cargo-cache-cleaning.md +++ b/posts/2023-12-11-cargo-cache-cleaning.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-12-11 title = "Cargo cache cleaning" author = "Eric Huss" team = "The Cargo Team " diff --git a/posts/2023-12-15-2024-Edition-CFP.md b/posts/2023-12-15-2024-Edition-CFP.md index c4fa13e87..7b45ceb88 100644 --- a/posts/2023-12-15-2024-Edition-CFP.md +++ b/posts/2023-12-15-2024-Edition-CFP.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-12-15 title = "A Call for Proposals for the Rust 2024 Edition" author = "Ben Striegel on behalf of the Edition 2024 Project Group" +++ diff --git a/posts/2023-12-18-survey-launch.md b/posts/2023-12-18-survey-launch.md index ead0f04cc..f83b08702 100644 --- a/posts/2023-12-18-survey-launch.md +++ b/posts/2023-12-18-survey-launch.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-12-18 title = "Launching the 2023 State of Rust Survey" author = "The Rust Survey Working Group" description = "Share your experience using Rust in the eighth edition of the State of Rust Survey" diff --git a/posts/2023-12-21-async-fn-rpit-in-traits.md b/posts/2023-12-21-async-fn-rpit-in-traits.md index 04179715b..8b02e1bf4 100644 --- a/posts/2023-12-21-async-fn-rpit-in-traits.md +++ b/posts/2023-12-21-async-fn-rpit-in-traits.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-12-21 title = "Announcing `async fn` and return-position `impl Trait` in traits" author = "Tyler Mandry" team = "The Async Working Group " diff --git a/posts/2023-12-28-Rust-1.75.0.md b/posts/2023-12-28-Rust-1.75.0.md index e16ff10c4..16839e752 100644 --- a/posts/2023-12-28-Rust-1.75.0.md +++ b/posts/2023-12-28-Rust-1.75.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-12-28 title = "Announcing Rust 1.75.0" author = "The Rust Release Team" release = true diff --git a/posts/2024-02-06-crates-io-status-codes.md b/posts/2024-02-06-crates-io-status-codes.md index 613934025..fa44e1d0d 100644 --- a/posts/2024-02-06-crates-io-status-codes.md +++ b/posts/2024-02-06-crates-io-status-codes.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-02-06 title = "crates.io: API status code changes" author = "Tobias Bieniek" team = "the crates.io team " diff --git a/posts/2024-02-08-Rust-1.76.0.md b/posts/2024-02-08-Rust-1.76.0.md index 7881c8a8e..002e0746b 100644 --- a/posts/2024-02-08-Rust-1.76.0.md +++ b/posts/2024-02-08-Rust-1.76.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-02-08 title = "Announcing Rust 1.76.0" author = "The Rust Release Team" release = true diff --git a/posts/2024-02-19-2023-Rust-Annual-Survey-2023-results.md b/posts/2024-02-19-2023-Rust-Annual-Survey-2023-results.md index 988824897..d83d5dbe7 100644 --- a/posts/2024-02-19-2023-Rust-Annual-Survey-2023-results.md +++ b/posts/2024-02-19-2023-Rust-Annual-Survey-2023-results.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-02-19 title = "2023 Annual Rust Survey Results" author = "The Rust Survey Team" +++ diff --git a/posts/2024-02-21-Rust-participates-in-GSoC-2024.md b/posts/2024-02-21-Rust-participates-in-GSoC-2024.md index 5b62857aa..a19584e71 100644 --- a/posts/2024-02-21-Rust-participates-in-GSoC-2024.md +++ b/posts/2024-02-21-Rust-participates-in-GSoC-2024.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-02-21 title = "Rust participates in Google Summer of Code 2024" author = "Jakub BerĂ¡nek, Jack Huey and Paul Lenz" +++ diff --git a/posts/2024-02-26-Windows-7.md b/posts/2024-02-26-Windows-7.md index ea57c68c8..031a7f437 100644 --- a/posts/2024-02-26-Windows-7.md +++ b/posts/2024-02-26-Windows-7.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-02-26 title = "Updated baseline standards for Windows targets" author = "Chris Denton on behalf of the Compiler Team" +++ diff --git a/posts/2024-02-28-Clippy-deprecating-feature-cargo-clippy.md b/posts/2024-02-28-Clippy-deprecating-feature-cargo-clippy.md index ce40c3802..da747ca2e 100644 --- a/posts/2024-02-28-Clippy-deprecating-feature-cargo-clippy.md +++ b/posts/2024-02-28-Clippy-deprecating-feature-cargo-clippy.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-02-28 title = 'Clippy: Deprecating `feature = "cargo-clippy"`' author = "The Clippy Team" +++ diff --git a/posts/2024-03-11-Rustup-1.27.0.md b/posts/2024-03-11-Rustup-1.27.0.md index 09e9fa9b9..d27506c04 100644 --- a/posts/2024-03-11-Rustup-1.27.0.md +++ b/posts/2024-03-11-Rustup-1.27.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-03-11 title = "Announcing Rustup 1.27.0" author = "The Rustup Team" +++ diff --git a/posts/2024-03-11-crates-io-download-changes.md b/posts/2024-03-11-crates-io-download-changes.md index 6ccf958ac..9473ce23e 100644 --- a/posts/2024-03-11-crates-io-download-changes.md +++ b/posts/2024-03-11-crates-io-download-changes.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-03-11 title = "crates.io: Download changes" author = "Tobias Bieniek" team = "the crates.io team " diff --git a/posts/2024-03-21-Rust-1.77.0.md b/posts/2024-03-21-Rust-1.77.0.md index acf6decc8..37790290b 100644 --- a/posts/2024-03-21-Rust-1.77.0.md +++ b/posts/2024-03-21-Rust-1.77.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-03-21 title = "Announcing Rust 1.77.0" author = "The Rust Release Team" release = true diff --git a/posts/2024-03-28-Rust-1.77.1.md b/posts/2024-03-28-Rust-1.77.1.md index 6082eb698..7f42ed1bc 100644 --- a/posts/2024-03-28-Rust-1.77.1.md +++ b/posts/2024-03-28-Rust-1.77.1.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-03-28 title = "Announcing Rust 1.77.1" author = "The Rust Release Team" release = true diff --git a/posts/2024-03-30-i128-layout-update.md b/posts/2024-03-30-i128-layout-update.md index 51b2b4eb4..1392ffda0 100644 --- a/posts/2024-03-30-i128-layout-update.md +++ b/posts/2024-03-30-i128-layout-update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-03-30 title = "Changes to `u128`/`i128` layout in 1.77 and 1.78" author = "Trevor Gross" team = "The Rust Lang Team " diff --git a/posts/2024-04-09-Rust-1.77.2.md b/posts/2024-04-09-Rust-1.77.2.md index 3aa735f40..be27f1393 100644 --- a/posts/2024-04-09-Rust-1.77.2.md +++ b/posts/2024-04-09-Rust-1.77.2.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-04-09 title = "Announcing Rust 1.77.2" author = "The Rust Security Response WG" release = true diff --git a/posts/2024-04-09-cve-2024-24576.md b/posts/2024-04-09-cve-2024-24576.md index 0e5b0968d..9d3fcdb51 100644 --- a/posts/2024-04-09-cve-2024-24576.md +++ b/posts/2024-04-09-cve-2024-24576.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-04-09 title = "Security advisory for the standard library (CVE-2024-24576)" author = "The Rust Security Response WG" +++ diff --git a/posts/2024-04-09-updates-to-rusts-wasi-targets.md b/posts/2024-04-09-updates-to-rusts-wasi-targets.md index e146ff182..f1ef05c8c 100644 --- a/posts/2024-04-09-updates-to-rusts-wasi-targets.md +++ b/posts/2024-04-09-updates-to-rusts-wasi-targets.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-04-09 title = "Changes to Rust's WASI targets" author = "Yosh Wuyts" +++ diff --git a/posts/2024-05-01-gsoc-2024-selected-projects.md b/posts/2024-05-01-gsoc-2024-selected-projects.md index bd9229e76..8840ee699 100644 --- a/posts/2024-05-01-gsoc-2024-selected-projects.md +++ b/posts/2024-05-01-gsoc-2024-selected-projects.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-05-01 title = "Announcing Google Summer of Code 2024 selected projects" author = "Jakub BerĂ¡nek, Jack Huey and Paul Lenz" +++ diff --git a/posts/2024-05-02-Rust-1.78.0.md b/posts/2024-05-02-Rust-1.78.0.md index baeb69d7a..4a654acef 100644 --- a/posts/2024-05-02-Rust-1.78.0.md +++ b/posts/2024-05-02-Rust-1.78.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-05-02 title = "Announcing Rust 1.78.0" author = "The Rust Release Team" release = true diff --git a/posts/2024-05-06-Rustup-1.27.1.md b/posts/2024-05-06-Rustup-1.27.1.md index 58d6c9b6d..25cd9d05f 100644 --- a/posts/2024-05-06-Rustup-1.27.1.md +++ b/posts/2024-05-06-Rustup-1.27.1.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-05-06 title = "Announcing Rustup 1.27.1" author = "The Rustup Team" +++ diff --git a/posts/2024-05-06-check-cfg.md b/posts/2024-05-06-check-cfg.md index f1e0e372a..91918c825 100644 --- a/posts/2024-05-06-check-cfg.md +++ b/posts/2024-05-06-check-cfg.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-05-06 title = "Automatic checking of cfgs at compile-time" author = "Urgau" team = "The Cargo Team " diff --git a/posts/2024-05-07-OSPP-2024.md b/posts/2024-05-07-OSPP-2024.md index 925fc2647..7ce2923e5 100644 --- a/posts/2024-05-07-OSPP-2024.md +++ b/posts/2024-05-07-OSPP-2024.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-05-07 title = "Rust participates in OSPP 2024" author = "Amanieu d'Antras, Jack Huey, and Jakub BerĂ¡nek" +++ diff --git a/posts/2024-05-17-enabling-rust-lld-on-linux.md b/posts/2024-05-17-enabling-rust-lld-on-linux.md index 356c8229c..659e9d66e 100644 --- a/posts/2024-05-17-enabling-rust-lld-on-linux.md +++ b/posts/2024-05-17-enabling-rust-lld-on-linux.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-05-17 title = "Faster linking times on nightly on Linux using `rust-lld`" author = "RĂ©my Rakic" team = "the compiler performance working group " diff --git a/posts/2024-06-13-Rust-1.79.0.md b/posts/2024-06-13-Rust-1.79.0.md index 8812c4abc..f548f8fcc 100644 --- a/posts/2024-06-13-Rust-1.79.0.md +++ b/posts/2024-06-13-Rust-1.79.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-06-13 title = "Announcing Rust 1.79.0" author = "The Rust Release Team" release = true diff --git a/posts/2024-06-26-types-team-update.md b/posts/2024-06-26-types-team-update.md index 7aa313c84..325cb1d70 100644 --- a/posts/2024-06-26-types-team-update.md +++ b/posts/2024-06-26-types-team-update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-06-26 title = "Types Team Update and Roadmap" author = "lcnr" team = "The Types Team " diff --git a/posts/2024-07-25-Rust-1.80.0.md b/posts/2024-07-25-Rust-1.80.0.md index d21f659c1..f248bab8d 100644 --- a/posts/2024-07-25-Rust-1.80.0.md +++ b/posts/2024-07-25-Rust-1.80.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-07-25 title = "Announcing Rust 1.80.0" author = "The Rust Release Team" release = true diff --git a/posts/2024-07-29-crates-io-development-update.md b/posts/2024-07-29-crates-io-development-update.md index 1aeb14423..f9bba6e3c 100644 --- a/posts/2024-07-29-crates-io-development-update.md +++ b/posts/2024-07-29-crates-io-development-update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-07-29 title = "crates.io: development update" author = "Tobias Bieniek" team = "the crates.io team " diff --git a/posts/2024-08-08-Rust-1.80.1.md b/posts/2024-08-08-Rust-1.80.1.md index b65309d9f..c04216f9e 100644 --- a/posts/2024-08-08-Rust-1.80.1.md +++ b/posts/2024-08-08-Rust-1.80.1.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-08-08 title = "Announcing Rust 1.80.1" author = "The Rust Release Team" release = true diff --git a/posts/2024-08-12-Project-goals.md b/posts/2024-08-12-Project-goals.md index b44213cce..713b1ddf6 100644 --- a/posts/2024-08-12-Project-goals.md +++ b/posts/2024-08-12-Project-goals.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-08-12 title = "Rust Project goals for 2024" author = "Niko Matsakis" team = "Leadership Council " diff --git a/posts/2024-08-26-council-survey.md b/posts/2024-08-26-council-survey.md index 6d5005c7d..b506c3462 100644 --- a/posts/2024-08-26-council-survey.md +++ b/posts/2024-08-26-council-survey.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-08-26 title = "2024 Leadership Council Survey" author = "The Leadership Council" +++ diff --git a/posts/2024-09-04-cve-2024-43402.md b/posts/2024-09-04-cve-2024-43402.md index 5fd74e250..03b021594 100644 --- a/posts/2024-09-04-cve-2024-43402.md +++ b/posts/2024-09-04-cve-2024-43402.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-09-04 title = "Security advisory for the standard library (CVE-2024-43402)" author = "The Rust Security Response WG" +++ diff --git a/posts/2024-09-05-Rust-1.81.0.md b/posts/2024-09-05-Rust-1.81.0.md index b9197f80e..24894af1b 100644 --- a/posts/2024-09-05-Rust-1.81.0.md +++ b/posts/2024-09-05-Rust-1.81.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-09-05 title = "Announcing Rust 1.81.0" author = "The Rust Release Team" release = true diff --git a/posts/2024-09-05-impl-trait-capture-rules.md b/posts/2024-09-05-impl-trait-capture-rules.md index c1bf4bda5..ba7e03eda 100644 --- a/posts/2024-09-05-impl-trait-capture-rules.md +++ b/posts/2024-09-05-impl-trait-capture-rules.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-09-05 title = "Changes to `impl Trait` in Rust 2024" author = "Niko Matsakis" team = "the language team " diff --git a/posts/2024-09-23-Project-Goals-Sep-Update.md b/posts/2024-09-23-Project-Goals-Sep-Update.md index 86f4aec62..c1c0dcb74 100644 --- a/posts/2024-09-23-Project-Goals-Sep-Update.md +++ b/posts/2024-09-23-Project-Goals-Sep-Update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-09-23 title = "September Project Goals Update" author = "Niko Matsakis" team = "Leadership Council " diff --git a/posts/2024-09-24-webassembly-targets-change-in-default-target-features.md b/posts/2024-09-24-webassembly-targets-change-in-default-target-features.md index 19748d157..6682fdf7c 100644 --- a/posts/2024-09-24-webassembly-targets-change-in-default-target-features.md +++ b/posts/2024-09-24-webassembly-targets-change-in-default-target-features.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-09-24 title = "WebAssembly targets: change in default target-features" author = "Alex Crichton" team = "The Compiler Team " diff --git a/posts/2024-10-17-Rust-1.82.0.md b/posts/2024-10-17-Rust-1.82.0.md index 00d026de9..7d3703657 100644 --- a/posts/2024-10-17-Rust-1.82.0.md +++ b/posts/2024-10-17-Rust-1.82.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-10-17 title = "Announcing Rust 1.82.0" author = "The Rust Release Team" release = true diff --git a/posts/2024-10-31-project-goals-oct-update.md b/posts/2024-10-31-project-goals-oct-update.md index 4ac74d7ea..85674a804 100644 --- a/posts/2024-10-31-project-goals-oct-update.md +++ b/posts/2024-10-31-project-goals-oct-update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-10-31 title = "October project goals update" author = "Niko Matsakis" team = "Leadership Council " diff --git a/posts/2024-11-06-trademark-update.md b/posts/2024-11-06-trademark-update.md index 36361a2bf..a4b276049 100644 --- a/posts/2024-11-06-trademark-update.md +++ b/posts/2024-11-06-trademark-update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-11-06 title = "Next Steps on the Rust Trademark Policy" author = "the Leadership Council" +++ diff --git a/posts/2024-11-07-gccrs-an-alternative-compiler-for-rust.md b/posts/2024-11-07-gccrs-an-alternative-compiler-for-rust.md index 036752443..fbedb22b2 100644 --- a/posts/2024-11-07-gccrs-an-alternative-compiler-for-rust.md +++ b/posts/2024-11-07-gccrs-an-alternative-compiler-for-rust.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-11-07 title = "gccrs: An alternative compiler for Rust" author = "Arthur Cohen on behalf of the gccrs project" +++ diff --git a/posts/2024-11-07-gsoc-2024-results.md b/posts/2024-11-07-gsoc-2024-results.md index d63be846f..b0afd1244 100644 --- a/posts/2024-11-07-gsoc-2024-results.md +++ b/posts/2024-11-07-gsoc-2024-results.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-11-07 title = "Google Summer of Code 2024 results" author = "Jakub BerĂ¡nek, Jack Huey and Paul Lenz" +++ diff --git a/posts/2024-11-26-wasip2-tier-2.md b/posts/2024-11-26-wasip2-tier-2.md index 7a985f503..0caf42b9e 100644 --- a/posts/2024-11-26-wasip2-tier-2.md +++ b/posts/2024-11-26-wasip2-tier-2.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-11-26 title = "The wasm32-wasip2 Target Has Reached Tier 2 Support" author = "Yosh Wuyts" +++ diff --git a/posts/2024-11-27-Rust-2024-public-testing.md b/posts/2024-11-27-Rust-2024-public-testing.md index ca1973da7..0aaeb973e 100644 --- a/posts/2024-11-27-Rust-2024-public-testing.md +++ b/posts/2024-11-27-Rust-2024-public-testing.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-11-27 title = "Rust 2024 call for testing" author = "Eric Huss & TC" team = "the Edition 2024 Project Group " diff --git a/posts/2024-11-28-Rust-1.83.0.md b/posts/2024-11-28-Rust-1.83.0.md index f5d5e8779..bec4e8242 100644 --- a/posts/2024-11-28-Rust-1.83.0.md +++ b/posts/2024-11-28-Rust-1.83.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-11-28 title = "Announcing Rust 1.83.0" author = "The Rust Release Team" release = true diff --git a/posts/2024-12-05-annual-survey-2024-launch.md b/posts/2024-12-05-annual-survey-2024-launch.md index 8af8e3ad5..d05161353 100644 --- a/posts/2024-12-05-annual-survey-2024-launch.md +++ b/posts/2024-12-05-annual-survey-2024-launch.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-12-05 title = "Launching the 2024 State of Rust Survey" author = "The Rust Survey Working Group" description = "Share your experience using Rust in the ninth edition of the State of Rust Survey" diff --git a/posts/2024-12-16-project-goals-nov-update.md b/posts/2024-12-16-project-goals-nov-update.md index 7ded73917..1c99df117 100644 --- a/posts/2024-12-16-project-goals-nov-update.md +++ b/posts/2024-12-16-project-goals-nov-update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-12-16 title = "November project goals update" author = "Niko Matsakis" team = "Leadership Council " diff --git a/posts/2025-01-09-Rust-1.84.0.md b/posts/2025-01-09-Rust-1.84.0.md index 31b6c5e36..4ac18cb87 100644 --- a/posts/2025-01-09-Rust-1.84.0.md +++ b/posts/2025-01-09-Rust-1.84.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2025-01-09 title = "Announcing Rust 1.84.0" author = "The Rust Release Team" release = true diff --git a/posts/2025-01-22-rust-2024-beta.md b/posts/2025-01-22-rust-2024-beta.md index ddea97264..c43d7185b 100644 --- a/posts/2025-01-22-rust-2024-beta.md +++ b/posts/2025-01-22-rust-2024-beta.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2025-01-22 title = "Rust 2024 in beta channel" author = "TC & Eric Huss" team = "the Edition 2024 Project Group " diff --git a/posts/2025-01-23-Project-Goals-Dec-Update.md b/posts/2025-01-23-Project-Goals-Dec-Update.md index 1e76397dc..3479b220e 100644 --- a/posts/2025-01-23-Project-Goals-Dec-Update.md +++ b/posts/2025-01-23-Project-Goals-Dec-Update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2025-01-23 title = "December Project Goals Update" author = "David Wood and Niko Matsakis" team = "Leadership Council " diff --git a/posts/2025-01-30-Rust-1.84.1.md b/posts/2025-01-30-Rust-1.84.1.md index 44fe93fa7..b873bf611 100644 --- a/posts/2025-01-30-Rust-1.84.1.md +++ b/posts/2025-01-30-Rust-1.84.1.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2025-01-30 title = "Announcing Rust 1.84.1" author = "The Rust Release Team" release = true diff --git a/posts/2025-02-05-crates-io-development-update.md b/posts/2025-02-05-crates-io-development-update.md index 39e3391ab..80cec9aaa 100644 --- a/posts/2025-02-05-crates-io-development-update.md +++ b/posts/2025-02-05-crates-io-development-update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2025-02-05 title = "crates.io: development update" author = "Tobias Bieniek" team = "the crates.io team " diff --git a/posts/2025-02-13-2024-State-Of-Rust-Survey-results.md b/posts/2025-02-13-2024-State-Of-Rust-Survey-results.md index 60a6deb19..fe7644c8f 100644 --- a/posts/2025-02-13-2024-State-Of-Rust-Survey-results.md +++ b/posts/2025-02-13-2024-State-Of-Rust-Survey-results.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2025-02-13 title = "2024 State of Rust Survey Results" author = "The Rust Survey Team" +++ diff --git a/posts/2025-02-20-Rust-1.85.0.md b/posts/2025-02-20-Rust-1.85.0.md index 16a9d6cb7..d002cf831 100644 --- a/posts/2025-02-20-Rust-1.85.0.md +++ b/posts/2025-02-20-Rust-1.85.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2025-02-20 title = "Announcing Rust 1.85.0 and Rust 2024" author = "The Rust Release Team" release = true diff --git a/posts/2025-03-02-Rustup-1.28.0.md b/posts/2025-03-02-Rustup-1.28.0.md index 7a21445d0..f0bd05608 100644 --- a/posts/2025-03-02-Rustup-1.28.0.md +++ b/posts/2025-03-02-Rustup-1.28.0.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2025-03-02 title = "Announcing Rustup 1.28.0" author = "The Rustup Team" +++ diff --git a/posts/2025-03-03-Project-Goals-Feb-Update.md b/posts/2025-03-03-Project-Goals-Feb-Update.md index 5c73acf1f..d5323d7b2 100644 --- a/posts/2025-03-03-Project-Goals-Feb-Update.md +++ b/posts/2025-03-03-Project-Goals-Feb-Update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2025-03-03 title = "February Project Goals Update" author = "RĂ©my Rakic, Niko Matsakis, Santiago Pastorino" team = "Goals Team " diff --git a/posts/2025-03-03-Rust-participates-in-GSoC-2025.md b/posts/2025-03-03-Rust-participates-in-GSoC-2025.md index 924aacad7..f2a9249a4 100644 --- a/posts/2025-03-03-Rust-participates-in-GSoC-2025.md +++ b/posts/2025-03-03-Rust-participates-in-GSoC-2025.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2025-03-03 title = "Rust participates in Google Summer of Code 2025" author = "Jakub BerĂ¡nek, Jack Huey and Paul Lenz" +++ diff --git a/posts/2025-03-04-Rustup-1.28.1.md b/posts/2025-03-04-Rustup-1.28.1.md index 6fdd3af47..7109333ea 100644 --- a/posts/2025-03-04-Rustup-1.28.1.md +++ b/posts/2025-03-04-Rustup-1.28.1.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2025-03-04 title = "Announcing rustup 1.28.1" author = "The Rustup Team" +++ diff --git a/posts/inside-rust/2019-09-25-Welcome.md b/posts/inside-rust/2019-09-25-Welcome.md index 81cdf9b33..ad9c1352a 100644 --- a/posts/inside-rust/2019-09-25-Welcome.md +++ b/posts/inside-rust/2019-09-25-Welcome.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-09-25 title = "Welcome to the Inside Rust blog!" author = "Niko Matsakis" description = "A new blog where the Rust team can post updates on the latest developments" diff --git a/posts/inside-rust/2019-10-03-Keeping-secure-with-cargo-audit-0.9.md b/posts/inside-rust/2019-10-03-Keeping-secure-with-cargo-audit-0.9.md index d2149427a..6b7cf47d7 100644 --- a/posts/inside-rust/2019-10-03-Keeping-secure-with-cargo-audit-0.9.md +++ b/posts/inside-rust/2019-10-03-Keeping-secure-with-cargo-audit-0.9.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-10-03 title = "Keeping Rust projects secure with cargo-audit 0.9: dependency trees, core advisories, unmaintained crates" author = "Tony Arcieri" description = "A look at the new features in cargo-audit 0.9 for ensuring dependencies are free of security advisories" diff --git a/posts/inside-rust/2019-10-07-AsyncAwait-WG-Focus-Issues.md b/posts/inside-rust/2019-10-07-AsyncAwait-WG-Focus-Issues.md index 73834ef71..7305ca228 100644 --- a/posts/inside-rust/2019-10-07-AsyncAwait-WG-Focus-Issues.md +++ b/posts/inside-rust/2019-10-07-AsyncAwait-WG-Focus-Issues.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-10-07 title = "Async Foundations Update: Time for polish!" author = "Niko Matsakis" description = "A new blog where the Rust team can post updates on the latest developments" diff --git a/posts/inside-rust/2019-10-11-AsyncAwait-Not-Send-Error-Improvements.md b/posts/inside-rust/2019-10-11-AsyncAwait-Not-Send-Error-Improvements.md index 377622209..57c7ec099 100644 --- a/posts/inside-rust/2019-10-11-AsyncAwait-Not-Send-Error-Improvements.md +++ b/posts/inside-rust/2019-10-11-AsyncAwait-Not-Send-Error-Improvements.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-10-11 title = '''Improving async-await's "Future is not Send" diagnostic''' author = "David Wood" description = "Highlighting a diagnostic improvement for async-await" diff --git a/posts/inside-rust/2019-10-11-Lang-Team-Meeting.md b/posts/inside-rust/2019-10-11-Lang-Team-Meeting.md index 1702e665a..16debbcb7 100644 --- a/posts/inside-rust/2019-10-11-Lang-Team-Meeting.md +++ b/posts/inside-rust/2019-10-11-Lang-Team-Meeting.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-10-11 title = "2019-10-10 Lang Team Triage Meeting" author = "Niko Matsakis" description = "2019-10-10 Lang Team Triage Meeting" diff --git a/posts/inside-rust/2019-10-15-compiler-team-meeting.md b/posts/inside-rust/2019-10-15-compiler-team-meeting.md index a7b75a9bd..efe6edaff 100644 --- a/posts/inside-rust/2019-10-15-compiler-team-meeting.md +++ b/posts/inside-rust/2019-10-15-compiler-team-meeting.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-10-15 title = "2019-10-10 Compiler Team Triage Meeting" author = "Wesley Wiser" description = "2019-10-10 Compiler Team Triage Meeting" diff --git a/posts/inside-rust/2019-10-15-infra-team-meeting.md b/posts/inside-rust/2019-10-15-infra-team-meeting.md index dc776c460..97767b71f 100644 --- a/posts/inside-rust/2019-10-15-infra-team-meeting.md +++ b/posts/inside-rust/2019-10-15-infra-team-meeting.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-10-15 title = "2019-10-10 Infrastructure Team Meeting" author = "Pietro Albini" team = "the infrastructure team " diff --git a/posts/inside-rust/2019-10-17-ecstatic-morse-for-compiler-contributors.md b/posts/inside-rust/2019-10-17-ecstatic-morse-for-compiler-contributors.md index 5789a6ae8..294419378 100644 --- a/posts/inside-rust/2019-10-17-ecstatic-morse-for-compiler-contributors.md +++ b/posts/inside-rust/2019-10-17-ecstatic-morse-for-compiler-contributors.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-10-17 title = "Please welcome ecstatic-morse to compiler-contributors" author = "Niko Matsakis" description = "Please welcome ecstatic-morse to compiler-contributors" diff --git a/posts/inside-rust/2019-10-21-compiler-team-meeting.md b/posts/inside-rust/2019-10-21-compiler-team-meeting.md index dd9fd7691..8bc7bcae3 100644 --- a/posts/inside-rust/2019-10-21-compiler-team-meeting.md +++ b/posts/inside-rust/2019-10-21-compiler-team-meeting.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-10-21 title = "2019-10-17 Compiler Team Triage Meeting" author = "Wesley Wiser" description = "2019-10-17 Compiler Team Triage Meeting" diff --git a/posts/inside-rust/2019-10-22-LLVM-ICE-breakers.md b/posts/inside-rust/2019-10-22-LLVM-ICE-breakers.md index e13e8ba62..f2574708d 100644 --- a/posts/inside-rust/2019-10-22-LLVM-ICE-breakers.md +++ b/posts/inside-rust/2019-10-22-LLVM-ICE-breakers.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-10-22 title = "Announcing the LLVM ICE-breaker group" author = "Niko Matsakis" description = "A new blog where the Rust team can post updates on the latest developments" diff --git a/posts/inside-rust/2019-10-22-infra-team-meeting.md b/posts/inside-rust/2019-10-22-infra-team-meeting.md index b847dbe81..328cb33db 100644 --- a/posts/inside-rust/2019-10-22-infra-team-meeting.md +++ b/posts/inside-rust/2019-10-22-infra-team-meeting.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-10-22 title = "2019-10-22 Infrastructure Team Meeting" author = "Pietro Albini" team = "the infrastructure team " diff --git a/posts/inside-rust/2019-10-24-docsrs-outage-postmortem.md b/posts/inside-rust/2019-10-24-docsrs-outage-postmortem.md index 5be322a1a..a7f393452 100644 --- a/posts/inside-rust/2019-10-24-docsrs-outage-postmortem.md +++ b/posts/inside-rust/2019-10-24-docsrs-outage-postmortem.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-10-24 title = "docs.rs outage postmortem" author = "Pietro Albini" team = "the infrastructure team " diff --git a/posts/inside-rust/2019-10-24-pnkfelix-compiler-team-co-lead.md b/posts/inside-rust/2019-10-24-pnkfelix-compiler-team-co-lead.md index b99fee2bb..5c8ba7804 100644 --- a/posts/inside-rust/2019-10-24-pnkfelix-compiler-team-co-lead.md +++ b/posts/inside-rust/2019-10-24-pnkfelix-compiler-team-co-lead.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-10-24 title = "Please welcome pnkfelix as compiler team co-lead!" author = "Niko Matsakis" description = "pnkfelix added as compiler-team co-lead" diff --git a/posts/inside-rust/2019-10-25-planning-meeting-update.md b/posts/inside-rust/2019-10-25-planning-meeting-update.md index d4bcffe48..e9c1511cb 100644 --- a/posts/inside-rust/2019-10-25-planning-meeting-update.md +++ b/posts/inside-rust/2019-10-25-planning-meeting-update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-10-25 title = "Planning meeting update" author = "Niko Matsakis" description = "Planning meeting update" diff --git a/posts/inside-rust/2019-10-28-rustc-learning-working-group-introduction.md b/posts/inside-rust/2019-10-28-rustc-learning-working-group-introduction.md index 60c69db1b..6deedbfea 100644 --- a/posts/inside-rust/2019-10-28-rustc-learning-working-group-introduction.md +++ b/posts/inside-rust/2019-10-28-rustc-learning-working-group-introduction.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-10-28 title = "The Rustc Dev Guide Working Group - An Introduction" author = "Amanjeev Sethi" description = "introduction rustc dev guide working group useful links" diff --git a/posts/inside-rust/2019-10-29-infra-team-meeting.md b/posts/inside-rust/2019-10-29-infra-team-meeting.md index ff0785380..3ad031ecb 100644 --- a/posts/inside-rust/2019-10-29-infra-team-meeting.md +++ b/posts/inside-rust/2019-10-29-infra-team-meeting.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-10-29 title = "2019-10-29 Infrastructure Team Meeting" author = "Pietro Albini" team = "the infrastructure team " diff --git a/posts/inside-rust/2019-10-30-compiler-team-meeting.md b/posts/inside-rust/2019-10-30-compiler-team-meeting.md index 72f521ab3..d10de84c5 100644 --- a/posts/inside-rust/2019-10-30-compiler-team-meeting.md +++ b/posts/inside-rust/2019-10-30-compiler-team-meeting.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-10-30 title = "2019-10-24 Compiler Team Triage Meeting" author = "Wesley Wiser" description = "2019-10-24 Compiler Team Triage Meeting" diff --git a/posts/inside-rust/2019-11-04-Clippy-removes-plugin-interface.md b/posts/inside-rust/2019-11-04-Clippy-removes-plugin-interface.md index fadfe223a..61654c3c9 100644 --- a/posts/inside-rust/2019-11-04-Clippy-removes-plugin-interface.md +++ b/posts/inside-rust/2019-11-04-Clippy-removes-plugin-interface.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-11-04 title = "Clippy is removing its plugin interface" author = "Philipp Krones" description = "Now that compiler plugins are deprecated, Clippy is removing its deprecated plugin interface" diff --git a/posts/inside-rust/2019-11-06-infra-team-meeting.md b/posts/inside-rust/2019-11-06-infra-team-meeting.md index 17a3b59d6..12220ac72 100644 --- a/posts/inside-rust/2019-11-06-infra-team-meeting.md +++ b/posts/inside-rust/2019-11-06-infra-team-meeting.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-11-06 title = "2019-11-05 Infrastructure Team Meeting" author = "Pietro Albini" team = "the infrastructure team " diff --git a/posts/inside-rust/2019-11-07-compiler-team-meeting.md b/posts/inside-rust/2019-11-07-compiler-team-meeting.md index 83a9db0e1..58196b0f1 100644 --- a/posts/inside-rust/2019-11-07-compiler-team-meeting.md +++ b/posts/inside-rust/2019-11-07-compiler-team-meeting.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-11-07 title = "2019-10-31 Compiler Team Triage Meeting" author = "Wesley Wiser" description = "2019-10-31 Compiler Team Triage Meeting" diff --git a/posts/inside-rust/2019-11-11-compiler-team-meeting.md b/posts/inside-rust/2019-11-11-compiler-team-meeting.md index 22bffeda9..9fa21d66c 100644 --- a/posts/inside-rust/2019-11-11-compiler-team-meeting.md +++ b/posts/inside-rust/2019-11-11-compiler-team-meeting.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-11-11 title = "2019-11-07 Compiler Team Triage Meeting" author = "Wesley Wiser" description = "2019-11-07 Compiler Team Triage Meeting" diff --git a/posts/inside-rust/2019-11-13-goverance-wg-cfp.md b/posts/inside-rust/2019-11-13-goverance-wg-cfp.md index d1fc82438..47b94cbc1 100644 --- a/posts/inside-rust/2019-11-13-goverance-wg-cfp.md +++ b/posts/inside-rust/2019-11-13-goverance-wg-cfp.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-11-13 title = "Governance WG Call For Participation" author = "Erin Power" team = "The Governance WG " diff --git a/posts/inside-rust/2019-11-14-evaluating-github-actions.md b/posts/inside-rust/2019-11-14-evaluating-github-actions.md index ec17abd96..7b33b4e4f 100644 --- a/posts/inside-rust/2019-11-14-evaluating-github-actions.md +++ b/posts/inside-rust/2019-11-14-evaluating-github-actions.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-11-14 title = "Evaluating GitHub Actions" author = "Pietro Albini" team = "the infrastructure team " diff --git a/posts/inside-rust/2019-11-18-infra-team-meeting.md b/posts/inside-rust/2019-11-18-infra-team-meeting.md index d86983a55..d5c567029 100644 --- a/posts/inside-rust/2019-11-18-infra-team-meeting.md +++ b/posts/inside-rust/2019-11-18-infra-team-meeting.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-11-18 title = "2019-11-12 Infrastructure Team Meeting" author = "Pietro Albini" team = "the infrastructure team " diff --git a/posts/inside-rust/2019-11-19-compiler-team-meeting.md b/posts/inside-rust/2019-11-19-compiler-team-meeting.md index 470dde2f7..deea5fa4e 100644 --- a/posts/inside-rust/2019-11-19-compiler-team-meeting.md +++ b/posts/inside-rust/2019-11-19-compiler-team-meeting.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-11-19 title = "2019-11-14 Compiler Team Triage Meeting" author = "Wesley Wiser" description = "2019-11-14 Compiler Team Triage Meeting" diff --git a/posts/inside-rust/2019-11-19-infra-team-meeting.md b/posts/inside-rust/2019-11-19-infra-team-meeting.md index bd3f0cf1b..7af6ff795 100644 --- a/posts/inside-rust/2019-11-19-infra-team-meeting.md +++ b/posts/inside-rust/2019-11-19-infra-team-meeting.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-11-19 title = "2019-11-19 Infrastructure Team Meeting" author = "Pietro Albini" team = "the infrastructure team " diff --git a/posts/inside-rust/2019-11-22-Lang-team-meeting.md b/posts/inside-rust/2019-11-22-Lang-team-meeting.md index 06f3cf16e..affb6b90c 100644 --- a/posts/inside-rust/2019-11-22-Lang-team-meeting.md +++ b/posts/inside-rust/2019-11-22-Lang-team-meeting.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-11-22 title = "2019-11-14 and 2019-11-21 Lang Team Triage Meetings" author = "Niko Matsakis" description = "2019-11-14 and 2019-11-21 Lang Team Triage Meetings" diff --git a/posts/inside-rust/2019-11-22-upcoming-compiler-team-design-meetings.md b/posts/inside-rust/2019-11-22-upcoming-compiler-team-design-meetings.md index 7a181f51a..1d9108ff1 100644 --- a/posts/inside-rust/2019-11-22-upcoming-compiler-team-design-meetings.md +++ b/posts/inside-rust/2019-11-22-upcoming-compiler-team-design-meetings.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-11-22 title = "Upcoming compiler-team design meetings" author = "Niko Matsakis" description = "Upcoming compiler-team design meetings" diff --git a/posts/inside-rust/2019-11-25-const-if-match.md b/posts/inside-rust/2019-11-25-const-if-match.md index d8300970e..786e6c518 100644 --- a/posts/inside-rust/2019-11-25-const-if-match.md +++ b/posts/inside-rust/2019-11-25-const-if-match.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-11-25 title = "`if` and `match` in constants on nightly rust" author = "Dylan MacKenzie" team = "WG const-eval " diff --git a/posts/inside-rust/2019-12-02-const-prop-on-by-default.md b/posts/inside-rust/2019-12-02-const-prop-on-by-default.md index 440817146..a78627712 100644 --- a/posts/inside-rust/2019-12-02-const-prop-on-by-default.md +++ b/posts/inside-rust/2019-12-02-const-prop-on-by-default.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-12-02 title = "Constant propagation is now on by default in nightly" author = "Wesley Wiser" description = "Constant propagation is now on by default in nightly" diff --git a/posts/inside-rust/2019-12-03-governance-wg-meeting.md b/posts/inside-rust/2019-12-03-governance-wg-meeting.md index aeaa2b071..53c5909de 100644 --- a/posts/inside-rust/2019-12-03-governance-wg-meeting.md +++ b/posts/inside-rust/2019-12-03-governance-wg-meeting.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-12-03 title = "Governance Working Group Update" author = "Nell Shamrell-Harrington" team = "the Governance WG " diff --git a/posts/inside-rust/2019-12-04-ide-future.md b/posts/inside-rust/2019-12-04-ide-future.md index cc283d5f6..70b44772d 100644 --- a/posts/inside-rust/2019-12-04-ide-future.md +++ b/posts/inside-rust/2019-12-04-ide-future.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-12-04 title = "2019-11-18 IDE team meeting" author = "Aleksey Kladov, Igor Matuszewski" team = "the IDE team " diff --git a/posts/inside-rust/2019-12-09-announcing-the-docsrs-team.md b/posts/inside-rust/2019-12-09-announcing-the-docsrs-team.md index 49aa572db..b0dc69b12 100644 --- a/posts/inside-rust/2019-12-09-announcing-the-docsrs-team.md +++ b/posts/inside-rust/2019-12-09-announcing-the-docsrs-team.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-12-09 title = "Announcing the Docs.rs Team" author = "QuietMisdreavus" team = "The Rustdoc Team " diff --git a/posts/inside-rust/2019-12-10-governance-wg-meeting.md b/posts/inside-rust/2019-12-10-governance-wg-meeting.md index c946a976d..c3445ca5c 100644 --- a/posts/inside-rust/2019-12-10-governance-wg-meeting.md +++ b/posts/inside-rust/2019-12-10-governance-wg-meeting.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-12-10 title = "Governance Working Group Update" author = "Niko Matsakis" team = "the Governance WG " diff --git a/posts/inside-rust/2019-12-11-infra-team-meeting.md b/posts/inside-rust/2019-12-11-infra-team-meeting.md index 0225f63f9..7e0f5166b 100644 --- a/posts/inside-rust/2019-12-11-infra-team-meeting.md +++ b/posts/inside-rust/2019-12-11-infra-team-meeting.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-12-11 title = "2019-12-10 Infrastructure Team Meeting" author = "Pietro Albini" team = "the infrastructure team " diff --git a/posts/inside-rust/2019-12-18-bisecting-rust-compiler.md b/posts/inside-rust/2019-12-18-bisecting-rust-compiler.md index d0bb9d906..eded446a7 100644 --- a/posts/inside-rust/2019-12-18-bisecting-rust-compiler.md +++ b/posts/inside-rust/2019-12-18-bisecting-rust-compiler.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-12-18 title = "Bisecting Rust Compiler Regressions with cargo-bisect-rustc" author = "Santiago Pastorino" team = "the compiler team " diff --git a/posts/inside-rust/2019-12-19-jasper-and-wiser-full-members-of-compiler-team.md b/posts/inside-rust/2019-12-19-jasper-and-wiser-full-members-of-compiler-team.md index 708e04327..59f98bd5d 100644 --- a/posts/inside-rust/2019-12-19-jasper-and-wiser-full-members-of-compiler-team.md +++ b/posts/inside-rust/2019-12-19-jasper-and-wiser-full-members-of-compiler-team.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-12-19 title = "Congrats to compiler team members matthewjasper and wesleywiser" author = "Felix S. Klock II" description = "Congrats to compiler team members matthewjasper and wesleywiser" diff --git a/posts/inside-rust/2019-12-20-governance-wg-meeting.md b/posts/inside-rust/2019-12-20-governance-wg-meeting.md index 4cf43d3ff..5adc96559 100644 --- a/posts/inside-rust/2019-12-20-governance-wg-meeting.md +++ b/posts/inside-rust/2019-12-20-governance-wg-meeting.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-12-20 title = "Governance Working Group Update: Meeting 17 December 2019" author = "Val Grimm" team = "The Governance WG " diff --git a/posts/inside-rust/2019-12-20-infra-team-meeting.md b/posts/inside-rust/2019-12-20-infra-team-meeting.md index 7bde3ae4b..1f8e09269 100644 --- a/posts/inside-rust/2019-12-20-infra-team-meeting.md +++ b/posts/inside-rust/2019-12-20-infra-team-meeting.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-12-20 title = "2019-12-17 Infrastructure Team Meeting" author = "Pietro Albini" team = "the infrastructure team " diff --git a/posts/inside-rust/2019-12-20-wg-learning-update.md b/posts/inside-rust/2019-12-20-wg-learning-update.md index d293c48cc..5faea698d 100644 --- a/posts/inside-rust/2019-12-20-wg-learning-update.md +++ b/posts/inside-rust/2019-12-20-wg-learning-update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-12-20 title = "An Update from WG-Learning" author = "mark-i-m" team = "the Rustc Dev Guide Working Group " diff --git a/posts/inside-rust/2019-12-23-formatting-the-compiler.md b/posts/inside-rust/2019-12-23-formatting-the-compiler.md index 4e9958d33..9e6914d4e 100644 --- a/posts/inside-rust/2019-12-23-formatting-the-compiler.md +++ b/posts/inside-rust/2019-12-23-formatting-the-compiler.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2019-12-23 title = "Formatting the compiler tree" author = "Mark Rousskov" description = "How to rebase and what happened" diff --git a/posts/inside-rust/2020-01-10-cargo-in-2020.md b/posts/inside-rust/2020-01-10-cargo-in-2020.md index 91d317ec8..9d2eab276 100644 --- a/posts/inside-rust/2020-01-10-cargo-in-2020.md +++ b/posts/inside-rust/2020-01-10-cargo-in-2020.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-01-10 title = "Cargo in 2020" author = "Eric Huss" description = "Roadmap for Cargo in 2020" diff --git a/posts/inside-rust/2020-01-10-lang-team-design-meetings.md b/posts/inside-rust/2020-01-10-lang-team-design-meetings.md index bebefaac3..5ca4702cd 100644 --- a/posts/inside-rust/2020-01-10-lang-team-design-meetings.md +++ b/posts/inside-rust/2020-01-10-lang-team-design-meetings.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-01-10 title = "Lang Team Design Meetings" author = "Niko Matsakis" description = "Lang Team Design Meetings" diff --git a/posts/inside-rust/2020-01-14-Goverance-wg-cfp.md b/posts/inside-rust/2020-01-14-Goverance-wg-cfp.md index b30356496..a661ffe1d 100644 --- a/posts/inside-rust/2020-01-14-Goverance-wg-cfp.md +++ b/posts/inside-rust/2020-01-14-Goverance-wg-cfp.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-01-14 title = "Governance Working Group Update: Meeting 14 January 2020" author = "Val Grimm" team = "The Governance WG " diff --git a/posts/inside-rust/2020-01-23-Introducing-cargo-audit-fix-and-more.md b/posts/inside-rust/2020-01-23-Introducing-cargo-audit-fix-and-more.md index 3b8fc9da9..3aaf533cf 100644 --- a/posts/inside-rust/2020-01-23-Introducing-cargo-audit-fix-and-more.md +++ b/posts/inside-rust/2020-01-23-Introducing-cargo-audit-fix-and-more.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-01-23 title = "cargo-audit v0.11: Introducing the `fix` feature, yanked crate detection, and more" author = "Tony Arcieri" description = "Release announcement for cargo-audit v0.11 describing the new features" diff --git a/posts/inside-rust/2020-01-24-feb-lang-team-design-meetings.md b/posts/inside-rust/2020-01-24-feb-lang-team-design-meetings.md index e6645af70..ddb11d034 100644 --- a/posts/inside-rust/2020-01-24-feb-lang-team-design-meetings.md +++ b/posts/inside-rust/2020-01-24-feb-lang-team-design-meetings.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-01-24 title = "February Lang Team Design Meetings" author = "Niko Matsakis" description = "Lang Team Design Meetings scheduled for February" diff --git a/posts/inside-rust/2020-01-24-upcoming-compiler-team-design-meetings.md b/posts/inside-rust/2020-01-24-upcoming-compiler-team-design-meetings.md index ea43ccfa5..53062718e 100644 --- a/posts/inside-rust/2020-01-24-upcoming-compiler-team-design-meetings.md +++ b/posts/inside-rust/2020-01-24-upcoming-compiler-team-design-meetings.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-01-24 title = "Upcoming compiler-team design meetings" author = "Niko Matsakis" description = "Upcoming compiler-team design meetings" diff --git a/posts/inside-rust/2020-02-06-Cleanup-Crew-ICE-breakers.md b/posts/inside-rust/2020-02-06-Cleanup-Crew-ICE-breakers.md index f18a251bb..6f7d47c05 100644 --- a/posts/inside-rust/2020-02-06-Cleanup-Crew-ICE-breakers.md +++ b/posts/inside-rust/2020-02-06-Cleanup-Crew-ICE-breakers.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-02-06 title = "Announcing the Cleanup Crew ICE-breaker group" author = "Santiago Pastorino" description = "A new blog where the Rust team can post updates on the latest developments" diff --git a/posts/inside-rust/2020-02-07-compiler-team-meeting.md b/posts/inside-rust/2020-02-07-compiler-team-meeting.md index d79778e75..130d3e952 100644 --- a/posts/inside-rust/2020-02-07-compiler-team-meeting.md +++ b/posts/inside-rust/2020-02-07-compiler-team-meeting.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-02-07 title = "2020-02-06 Compiler Team Triage Meeting" author = "Wesley Wiser" description = "2019-02-06 Compiler Team Triage Meeting" diff --git a/posts/inside-rust/2020-02-11-Goverance-wg.md b/posts/inside-rust/2020-02-11-Goverance-wg.md index 67b1b925c..80f2ba229 100644 --- a/posts/inside-rust/2020-02-11-Goverance-wg.md +++ b/posts/inside-rust/2020-02-11-Goverance-wg.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-02-11 title = "Governance Working Group Update: Meeting 11 February 2020" author = "Val Grimm" team = "The Governance WG " diff --git a/posts/inside-rust/2020-02-14-upcoming-compiler-team-design-meetings.md b/posts/inside-rust/2020-02-14-upcoming-compiler-team-design-meetings.md index be1de7641..497fd8050 100644 --- a/posts/inside-rust/2020-02-14-upcoming-compiler-team-design-meetings.md +++ b/posts/inside-rust/2020-02-14-upcoming-compiler-team-design-meetings.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-02-14 title = "Upcoming compiler-team design meetings" author = "Niko Matsakis" description = "Upcoming compiler-team design meetings" diff --git a/posts/inside-rust/2020-02-20-jtgeibel-crates-io-co-lead.md b/posts/inside-rust/2020-02-20-jtgeibel-crates-io-co-lead.md index 990e9c6ba..7bda121c8 100644 --- a/posts/inside-rust/2020-02-20-jtgeibel-crates-io-co-lead.md +++ b/posts/inside-rust/2020-02-20-jtgeibel-crates-io-co-lead.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-02-20 title = "Please welcome jtgeibel as crates.io team co-lead!" author = "Sean Griffin" description = "jtgeibel added as crates.io team co-lead" diff --git a/posts/inside-rust/2020-02-25-intro-rustc-self-profile.md b/posts/inside-rust/2020-02-25-intro-rustc-self-profile.md index 4b0708f5b..9dac2a0fa 100644 --- a/posts/inside-rust/2020-02-25-intro-rustc-self-profile.md +++ b/posts/inside-rust/2020-02-25-intro-rustc-self-profile.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-02-25 title = "Intro to rustc's self profiler" author = "Wesley Wiser" description = "Learn how to use the -Zself-profile rustc flag" diff --git a/posts/inside-rust/2020-02-26-crates-io-incident-report.md b/posts/inside-rust/2020-02-26-crates-io-incident-report.md index 1db31f1f0..8de0903c1 100644 --- a/posts/inside-rust/2020-02-26-crates-io-incident-report.md +++ b/posts/inside-rust/2020-02-26-crates-io-incident-report.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-02-26 title = "crates.io incident report for 2020-02-20" author = "Pietro Albini" team = "the crates.io team " diff --git a/posts/inside-rust/2020-02-27-Goverance-wg.md b/posts/inside-rust/2020-02-27-Goverance-wg.md index 9c78aec1a..13da05c8e 100644 --- a/posts/inside-rust/2020-02-27-Goverance-wg.md +++ b/posts/inside-rust/2020-02-27-Goverance-wg.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-02-27 title = "Governance Working Group Update: Meeting 27 February 2020" author = "Val Grimm" team = "The Governance WG " diff --git a/posts/inside-rust/2020-02-27-ffi-unwind-design-meeting.md b/posts/inside-rust/2020-02-27-ffi-unwind-design-meeting.md index 5db59970e..f8b217cd1 100644 --- a/posts/inside-rust/2020-02-27-ffi-unwind-design-meeting.md +++ b/posts/inside-rust/2020-02-27-ffi-unwind-design-meeting.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-02-27 title = "Announcing the first FFI-unwind project design meeting" author = "Kyle Strand, Niko Matsakis, and Amanieu d'Antras" description = "First design meeting for the FFI-unwind project" diff --git a/posts/inside-rust/2020-02-27-pietro-joins-core-team.md b/posts/inside-rust/2020-02-27-pietro-joins-core-team.md index 859c1c29f..9f6f9fd06 100644 --- a/posts/inside-rust/2020-02-27-pietro-joins-core-team.md +++ b/posts/inside-rust/2020-02-27-pietro-joins-core-team.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-02-27 title = "Pietro Albini has joined the core team" author = "Nick Cameron" team = "the core team " diff --git a/posts/inside-rust/2020-03-04-recent-future-pattern-matching-improvements.md b/posts/inside-rust/2020-03-04-recent-future-pattern-matching-improvements.md index eda99dfde..783762ff7 100644 --- a/posts/inside-rust/2020-03-04-recent-future-pattern-matching-improvements.md +++ b/posts/inside-rust/2020-03-04-recent-future-pattern-matching-improvements.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-03-04 title = "Recent and future pattern matching improvements" author = 'Mazdak "Centril" Farrokhzad' description = "Reviewing recent pattern matching improvements" diff --git a/posts/inside-rust/2020-03-11-lang-team-design-meetings.md b/posts/inside-rust/2020-03-11-lang-team-design-meetings.md index e3e72136e..62f1faadf 100644 --- a/posts/inside-rust/2020-03-11-lang-team-design-meetings.md +++ b/posts/inside-rust/2020-03-11-lang-team-design-meetings.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-03-11 title = "March Lang Team Design Meetings" author = "Niko Matsakis" description = "Lang Team Design Meetings scheduled for March" diff --git a/posts/inside-rust/2020-03-13-rename-rustc-guide.md b/posts/inside-rust/2020-03-13-rename-rustc-guide.md index 4375669e6..42f1166ee 100644 --- a/posts/inside-rust/2020-03-13-rename-rustc-guide.md +++ b/posts/inside-rust/2020-03-13-rename-rustc-guide.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-03-13 title = "The rustc-guide is now rustc-dev-guide" author = "mark-i-m" description = "the guide has been renamed" diff --git a/posts/inside-rust/2020-03-13-twir-new-lead.md b/posts/inside-rust/2020-03-13-twir-new-lead.md index cc594e34e..3fd6c1b78 100644 --- a/posts/inside-rust/2020-03-13-twir-new-lead.md +++ b/posts/inside-rust/2020-03-13-twir-new-lead.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-03-13 title = "This Week in Rust is looking for a new maintainer." author = "Erin Power" team = "the community team " diff --git a/posts/inside-rust/2020-03-13-upcoming-compiler-team-design-meetings.md b/posts/inside-rust/2020-03-13-upcoming-compiler-team-design-meetings.md index fc57e0b38..fd1882f06 100644 --- a/posts/inside-rust/2020-03-13-upcoming-compiler-team-design-meetings.md +++ b/posts/inside-rust/2020-03-13-upcoming-compiler-team-design-meetings.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-03-13 title = "Upcoming compiler-team design meetings" author = "Niko Matsakis" description = "Upcoming compiler-team design meetings" diff --git a/posts/inside-rust/2020-03-17-governance-wg.md b/posts/inside-rust/2020-03-17-governance-wg.md index 71a3bbda2..193700860 100644 --- a/posts/inside-rust/2020-03-17-governance-wg.md +++ b/posts/inside-rust/2020-03-17-governance-wg.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-03-17 title = "Governance Working Group Update: Meeting 12 March 2020" author = "Nell Shamrell-Harrington" team = "The Governance WG " diff --git a/posts/inside-rust/2020-03-18-all-hands-retrospective.md b/posts/inside-rust/2020-03-18-all-hands-retrospective.md index ec252ae50..a86da530f 100644 --- a/posts/inside-rust/2020-03-18-all-hands-retrospective.md +++ b/posts/inside-rust/2020-03-18-all-hands-retrospective.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-03-18 title = "All Hands Retrospective" author = "Erin Power" team = "The All Hands Organisers " diff --git a/posts/inside-rust/2020-03-19-terminating-rust.md b/posts/inside-rust/2020-03-19-terminating-rust.md index a7ac6f70f..ac20a4dde 100644 --- a/posts/inside-rust/2020-03-19-terminating-rust.md +++ b/posts/inside-rust/2020-03-19-terminating-rust.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-03-19 title = "Resolving Rust's forward progress guarantees" author = "Mark Rousskov" description = "Should side-effect be the fix?" diff --git a/posts/inside-rust/2020-03-26-rustc-dev-guide-overview.md b/posts/inside-rust/2020-03-26-rustc-dev-guide-overview.md index 0ba1e39be..f49014652 100644 --- a/posts/inside-rust/2020-03-26-rustc-dev-guide-overview.md +++ b/posts/inside-rust/2020-03-26-rustc-dev-guide-overview.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-03-26 title = "rustc-dev-guide Overview" author = "Chris Simpkins" description = "2020-03-26 rustc-dev-guide Overview" diff --git a/posts/inside-rust/2020-03-27-goodbye-docs-team.md b/posts/inside-rust/2020-03-27-goodbye-docs-team.md index e616cd404..b9554e639 100644 --- a/posts/inside-rust/2020-03-27-goodbye-docs-team.md +++ b/posts/inside-rust/2020-03-27-goodbye-docs-team.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-03-27 title = "Goodbye, docs team" author = "Steve Klabnik" description = "The docs team is winding down" diff --git a/posts/inside-rust/2020-03-28-traits-sprint-1.md b/posts/inside-rust/2020-03-28-traits-sprint-1.md index 40c3ef7b3..1db7ebdff 100644 --- a/posts/inside-rust/2020-03-28-traits-sprint-1.md +++ b/posts/inside-rust/2020-03-28-traits-sprint-1.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-03-28 title = "Traits working group 2020 sprint 1 summary" author = "Jack Huey" team = "The Traits WG " diff --git a/posts/inside-rust/2020-04-07-update-on-the-github-actions-evaluation.md b/posts/inside-rust/2020-04-07-update-on-the-github-actions-evaluation.md index 1f9b3fae3..54f02cc0a 100644 --- a/posts/inside-rust/2020-04-07-update-on-the-github-actions-evaluation.md +++ b/posts/inside-rust/2020-04-07-update-on-the-github-actions-evaluation.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-04-07 title = "Update on the GitHub Actions evaluation" author = "Pietro Albini" team = "the infrastructure team " diff --git a/posts/inside-rust/2020-04-10-lang-team-design-meetings.md b/posts/inside-rust/2020-04-10-lang-team-design-meetings.md index d0a4146b4..7edeec4ff 100644 --- a/posts/inside-rust/2020-04-10-lang-team-design-meetings.md +++ b/posts/inside-rust/2020-04-10-lang-team-design-meetings.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-04-10 title = "April Lang Team Design Meetings" author = "Josh Triplett" description = "Lang Team Design Meetings scheduled for April" diff --git a/posts/inside-rust/2020-04-10-upcoming-compiler-team-design-meeting.md b/posts/inside-rust/2020-04-10-upcoming-compiler-team-design-meeting.md index 1e3e8b78b..b70cfaa65 100644 --- a/posts/inside-rust/2020-04-10-upcoming-compiler-team-design-meeting.md +++ b/posts/inside-rust/2020-04-10-upcoming-compiler-team-design-meeting.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-04-10 title = "Upcoming compiler-team design meetings" author = "Niko Matsakis" description = "Upcoming compiler-team design meetings" diff --git a/posts/inside-rust/2020-04-14-Governance-WG-updated.md b/posts/inside-rust/2020-04-14-Governance-WG-updated.md index dfa4601bc..9e02e62c2 100644 --- a/posts/inside-rust/2020-04-14-Governance-WG-updated.md +++ b/posts/inside-rust/2020-04-14-Governance-WG-updated.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-04-14 title = "Governance Working Group Update: Meeting 09 April 2020" author = "Nell Shamrell-Harrington" team = "The Governance WG " diff --git a/posts/inside-rust/2020-04-23-Governance-wg.md b/posts/inside-rust/2020-04-23-Governance-wg.md index 27aa5ca17..23e36d86a 100644 --- a/posts/inside-rust/2020-04-23-Governance-wg.md +++ b/posts/inside-rust/2020-04-23-Governance-wg.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-04-23 title = "Governance Working Group Update: Meeting 23 April 2020" author = "Val Grimm" team = "The Governance WG " diff --git a/posts/inside-rust/2020-05-08-lang-team-meetings-rescheduled.md b/posts/inside-rust/2020-05-08-lang-team-meetings-rescheduled.md index 1ae3a32c9..728d723c3 100644 --- a/posts/inside-rust/2020-05-08-lang-team-meetings-rescheduled.md +++ b/posts/inside-rust/2020-05-08-lang-team-meetings-rescheduled.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-05-08 title = "Lang Team meetings moving to new time slots" author = "Josh Triplett" description = "The Rust language team design and triage meetings have moved to new time slots" diff --git a/posts/inside-rust/2020-05-18-traits-sprint-2.md b/posts/inside-rust/2020-05-18-traits-sprint-2.md index bd12a6b86..1a95ded76 100644 --- a/posts/inside-rust/2020-05-18-traits-sprint-2.md +++ b/posts/inside-rust/2020-05-18-traits-sprint-2.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-05-18 title = "Traits working group 2020 sprint 2 summary" author = "Jack Huey" team = "The Traits WG " diff --git a/posts/inside-rust/2020-05-26-website-retrospective.md b/posts/inside-rust/2020-05-26-website-retrospective.md index 56f66ce83..2779deb29 100644 --- a/posts/inside-rust/2020-05-26-website-retrospective.md +++ b/posts/inside-rust/2020-05-26-website-retrospective.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-05-26 title = "A retrospective on the 2018 rust-lang.org redesign" author = "Nick Cameron" team = "the core team " diff --git a/posts/inside-rust/2020-05-27-contributor-survey.md b/posts/inside-rust/2020-05-27-contributor-survey.md index fd2e4f942..066b71be9 100644 --- a/posts/inside-rust/2020-05-27-contributor-survey.md +++ b/posts/inside-rust/2020-05-27-contributor-survey.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-05-27 title = "2020 Contributor Survey" author = "Niko Matsakis and @mark-i-m" description = "We announce a new survey about the code contribution experience." diff --git a/posts/inside-rust/2020-06-08-new-inline-asm.md b/posts/inside-rust/2020-06-08-new-inline-asm.md index 3dc9b912e..c7bb21bed 100644 --- a/posts/inside-rust/2020-06-08-new-inline-asm.md +++ b/posts/inside-rust/2020-06-08-new-inline-asm.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-06-08 title = "New inline assembly syntax available in nightly" author = "Josh Triplett" description = "Rust has a new inline assembly syntax in nightly, please test" diff --git a/posts/inside-rust/2020-06-08-upcoming-compiler-team-design-meeting.md b/posts/inside-rust/2020-06-08-upcoming-compiler-team-design-meeting.md index 97c796391..26b8db5c3 100644 --- a/posts/inside-rust/2020-06-08-upcoming-compiler-team-design-meeting.md +++ b/posts/inside-rust/2020-06-08-upcoming-compiler-team-design-meeting.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-06-08 title = "Upcoming compiler-team design meetings" author = "Felix Klock" description = "Upcoming compiler-team design meetings" diff --git a/posts/inside-rust/2020-06-09-windows-notification-group.md b/posts/inside-rust/2020-06-09-windows-notification-group.md index 215b668a8..3032abc2e 100644 --- a/posts/inside-rust/2020-06-09-windows-notification-group.md +++ b/posts/inside-rust/2020-06-09-windows-notification-group.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-06-09 title = "Announcing the Windows and ARM notification groups" author = "Niko Matsakis" description = "Announcing the Windows and ARM notification groups" diff --git a/posts/inside-rust/2020-06-29-lto-improvements.md b/posts/inside-rust/2020-06-29-lto-improvements.md index 39d4aadbc..03ad2b48f 100644 --- a/posts/inside-rust/2020-06-29-lto-improvements.md +++ b/posts/inside-rust/2020-06-29-lto-improvements.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-06-29 title = "Disk space and LTO improvements" author = "Eric Huss" description = "Disk space and LTO improvements" diff --git a/posts/inside-rust/2020-07-02-Ownership-Std-Implementation.md b/posts/inside-rust/2020-07-02-Ownership-Std-Implementation.md index 3ce623753..7044c8a63 100644 --- a/posts/inside-rust/2020-07-02-Ownership-Std-Implementation.md +++ b/posts/inside-rust/2020-07-02-Ownership-Std-Implementation.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-07-02 title = "Ownership of the standard library implementation" author = "Ashley Mannix" team = "The Libs team " diff --git a/posts/inside-rust/2020-07-08-lang-team-design-meeting-update.md b/posts/inside-rust/2020-07-08-lang-team-design-meeting-update.md index be1878ef3..ea47b1497 100644 --- a/posts/inside-rust/2020-07-08-lang-team-design-meeting-update.md +++ b/posts/inside-rust/2020-07-08-lang-team-design-meeting-update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-07-08 title = "Lang team design meeting update" author = "Niko Matsakis" description = "Summary of some of the recent lang team design meetings" diff --git a/posts/inside-rust/2020-07-09-lang-team-path-to-membership.md b/posts/inside-rust/2020-07-09-lang-team-path-to-membership.md index 94c96de11..21d29072e 100644 --- a/posts/inside-rust/2020-07-09-lang-team-path-to-membership.md +++ b/posts/inside-rust/2020-07-09-lang-team-path-to-membership.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-07-09 title = "Lang team design meeting: path to membership" author = "Niko Matsakis" description = "Lang team design meeting: path to membership" diff --git a/posts/inside-rust/2020-07-17-traits-sprint-3.md b/posts/inside-rust/2020-07-17-traits-sprint-3.md index 2f31647fa..5d04b5c88 100644 --- a/posts/inside-rust/2020-07-17-traits-sprint-3.md +++ b/posts/inside-rust/2020-07-17-traits-sprint-3.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-07-17 title = "Traits working group 2020 sprint 3 summary" author = "Jack Huey" team = "The Traits WG " diff --git a/posts/inside-rust/2020-07-23-rust-ci-is-moving-to-github-actions.md b/posts/inside-rust/2020-07-23-rust-ci-is-moving-to-github-actions.md index 15f3a1193..49062a093 100644 --- a/posts/inside-rust/2020-07-23-rust-ci-is-moving-to-github-actions.md +++ b/posts/inside-rust/2020-07-23-rust-ci-is-moving-to-github-actions.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-07-23 title = "Rust's CI is moving to GitHub Actions" author = "Pietro Albini" team = "the infrastructure team " diff --git a/posts/inside-rust/2020-07-27-1.45.1-prerelease.md b/posts/inside-rust/2020-07-27-1.45.1-prerelease.md index 099a51f26..a783596d4 100644 --- a/posts/inside-rust/2020-07-27-1.45.1-prerelease.md +++ b/posts/inside-rust/2020-07-27-1.45.1-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-07-27 title = "1.45.1 prerelease testing" author = "Mark Rousskov" team = "The Release Team " diff --git a/posts/inside-rust/2020-07-27-opening-up-the-core-team-agenda.md b/posts/inside-rust/2020-07-27-opening-up-the-core-team-agenda.md index f0dd1e15a..66db38be5 100644 --- a/posts/inside-rust/2020-07-27-opening-up-the-core-team-agenda.md +++ b/posts/inside-rust/2020-07-27-opening-up-the-core-team-agenda.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-07-27 title = "Opening up the Core Team agenda" author = "Pietro Albini" team = "the Core Team " diff --git a/posts/inside-rust/2020-07-29-lang-team-design-meeting-min-const-generics.md b/posts/inside-rust/2020-07-29-lang-team-design-meeting-min-const-generics.md index 8c4e92a9c..31a0f2e4e 100644 --- a/posts/inside-rust/2020-07-29-lang-team-design-meeting-min-const-generics.md +++ b/posts/inside-rust/2020-07-29-lang-team-design-meeting-min-const-generics.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-07-29 title = "Lang team design meeting: minimal const generics" author = "Niko Matsakis" description = "Minimal const generics meeting report" diff --git a/posts/inside-rust/2020-07-29-lang-team-design-meeting-wf-types.md b/posts/inside-rust/2020-07-29-lang-team-design-meeting-wf-types.md index 7290bbe9e..c0644c727 100644 --- a/posts/inside-rust/2020-07-29-lang-team-design-meeting-wf-types.md +++ b/posts/inside-rust/2020-07-29-lang-team-design-meeting-wf-types.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-07-29 title = "Lang team design meeting: well-formedness and type aliases" author = "Niko Matsakis" description = "Well-formedness and type aliases meeting report" diff --git a/posts/inside-rust/2020-08-24-1.46.0-prerelease.md b/posts/inside-rust/2020-08-24-1.46.0-prerelease.md index 77af713d9..584e7e29d 100644 --- a/posts/inside-rust/2020-08-24-1.46.0-prerelease.md +++ b/posts/inside-rust/2020-08-24-1.46.0-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-08-24 title = "1.46.0 pre-release testing" author = "Pietro Albini" team = "The Release Team " diff --git a/posts/inside-rust/2020-08-28-upcoming-compiler-team-design-meetings.md b/posts/inside-rust/2020-08-28-upcoming-compiler-team-design-meetings.md index 078b92890..c187d90d3 100644 --- a/posts/inside-rust/2020-08-28-upcoming-compiler-team-design-meetings.md +++ b/posts/inside-rust/2020-08-28-upcoming-compiler-team-design-meetings.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-08-28 title = "Upcoming compiler-team design meetings" author = "Niko Matsakis" description = "Upcoming compiler-team design meetings" diff --git a/posts/inside-rust/2020-08-30-changes-to-x-py-defaults.md b/posts/inside-rust/2020-08-30-changes-to-x-py-defaults.md index 5bb42478e..c2cd04646 100644 --- a/posts/inside-rust/2020-08-30-changes-to-x-py-defaults.md +++ b/posts/inside-rust/2020-08-30-changes-to-x-py-defaults.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-08-30 title = "Changes to x.py defaults" author = "Jynn Nelson" team = "the compiler team " diff --git a/posts/inside-rust/2020-09-17-stabilizing-intra-doc-links.md b/posts/inside-rust/2020-09-17-stabilizing-intra-doc-links.md index 226232656..e7a1b8c98 100644 --- a/posts/inside-rust/2020-09-17-stabilizing-intra-doc-links.md +++ b/posts/inside-rust/2020-09-17-stabilizing-intra-doc-links.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-09-17 title = "Intra-doc links close to stabilization" author = "Manish Goregaokar and Jynn Nelson" team = "the rustdoc team " diff --git a/posts/inside-rust/2020-09-18-error-handling-wg-announcement.md b/posts/inside-rust/2020-09-18-error-handling-wg-announcement.md index bc3aa8db3..9b1ed172b 100644 --- a/posts/inside-rust/2020-09-18-error-handling-wg-announcement.md +++ b/posts/inside-rust/2020-09-18-error-handling-wg-announcement.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-09-18 title = "Announcing the Error Handling Project Group" author = "Sean Chen" description = "Announcing the Error Handling Project Group" diff --git a/posts/inside-rust/2020-09-29-Portable-SIMD-PG.md b/posts/inside-rust/2020-09-29-Portable-SIMD-PG.md index 3647167d3..44346383b 100644 --- a/posts/inside-rust/2020-09-29-Portable-SIMD-PG.md +++ b/posts/inside-rust/2020-09-29-Portable-SIMD-PG.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-09-29 title = "Announcing the Portable SIMD Project Group" author = "Jubilee and Lokathor" description = "Announcing the Portable SIMD Project Group" diff --git a/posts/inside-rust/2020-10-06-1.47.0-prerelease.md b/posts/inside-rust/2020-10-06-1.47.0-prerelease.md index 9bf610527..ad184660c 100644 --- a/posts/inside-rust/2020-10-06-1.47.0-prerelease.md +++ b/posts/inside-rust/2020-10-06-1.47.0-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-10-06 title = "1.47.0 pre-release testing" author = "Mark Rousskov" team = "The Release Team " diff --git a/posts/inside-rust/2020-10-07-1.47.0-prerelease-2.md b/posts/inside-rust/2020-10-07-1.47.0-prerelease-2.md index 93555c6c1..40a44fa84 100644 --- a/posts/inside-rust/2020-10-07-1.47.0-prerelease-2.md +++ b/posts/inside-rust/2020-10-07-1.47.0-prerelease-2.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-10-07 title = "1.47.0 second pre-release testing" author = "Pietro Albini" team = "The Release Team " diff --git a/posts/inside-rust/2020-10-16-Backlog-Bonanza.md b/posts/inside-rust/2020-10-16-Backlog-Bonanza.md index 67e3bd67a..3988f5abc 100644 --- a/posts/inside-rust/2020-10-16-Backlog-Bonanza.md +++ b/posts/inside-rust/2020-10-16-Backlog-Bonanza.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-10-16 title = "Lang team Backlog Bonanza and Project Proposals" author = "Nicholas Matsakis" team = "the lang team " diff --git a/posts/inside-rust/2020-10-23-Core-team-membership.md b/posts/inside-rust/2020-10-23-Core-team-membership.md index 8c1b514af..8ec9cfcfa 100644 --- a/posts/inside-rust/2020-10-23-Core-team-membership.md +++ b/posts/inside-rust/2020-10-23-Core-team-membership.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-10-23 title = "Core team membership changes" author = "Mark Rousskov" team = "The Core Team " diff --git a/posts/inside-rust/2020-11-11-exploring-pgo-for-the-rust-compiler.md b/posts/inside-rust/2020-11-11-exploring-pgo-for-the-rust-compiler.md index 5ff7ab139..ddff4587e 100644 --- a/posts/inside-rust/2020-11-11-exploring-pgo-for-the-rust-compiler.md +++ b/posts/inside-rust/2020-11-11-exploring-pgo-for-the-rust-compiler.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-11-11 title = "Exploring PGO for the Rust compiler" author = "Michael Woerister" description = "Investigate the effects that profile guided optimization has on rustc's performance" diff --git a/posts/inside-rust/2020-11-12-source-based-code-coverage.md b/posts/inside-rust/2020-11-12-source-based-code-coverage.md index f46de281e..e32a83044 100644 --- a/posts/inside-rust/2020-11-12-source-based-code-coverage.md +++ b/posts/inside-rust/2020-11-12-source-based-code-coverage.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-11-12 title = "Source-based code coverage in nightly" author = "Tyler Mandry" team = "The Compiler Team " diff --git a/posts/inside-rust/2020-11-15-Using-rustc_codegen_cranelift.md b/posts/inside-rust/2020-11-15-Using-rustc_codegen_cranelift.md index b103f7e74..ff52e2ee7 100644 --- a/posts/inside-rust/2020-11-15-Using-rustc_codegen_cranelift.md +++ b/posts/inside-rust/2020-11-15-Using-rustc_codegen_cranelift.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-11-15 title = "Using rustc_codegen_cranelift for debug builds" author = "Jynn Nelson" team = "The Compiler Team " diff --git a/posts/inside-rust/2020-11-16-1.48.0-prerelease.md b/posts/inside-rust/2020-11-16-1.48.0-prerelease.md index 0fea8323c..84d144676 100644 --- a/posts/inside-rust/2020-11-16-1.48.0-prerelease.md +++ b/posts/inside-rust/2020-11-16-1.48.0-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-11-16 title = "1.48.0 pre-release testing" author = "Pietro Albini" team = "The Release Team " diff --git a/posts/inside-rust/2020-11-23-What-the-error-handling-project-group-is-working-on.md b/posts/inside-rust/2020-11-23-What-the-error-handling-project-group-is-working-on.md index 1db45d21b..79b429659 100644 --- a/posts/inside-rust/2020-11-23-What-the-error-handling-project-group-is-working-on.md +++ b/posts/inside-rust/2020-11-23-What-the-error-handling-project-group-is-working-on.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-11-23 title = "What the Error Handling Project Group is Working On" author = "Sean Chen" team = "the library team " diff --git a/posts/inside-rust/2020-12-14-changes-to-compiler-team.md b/posts/inside-rust/2020-12-14-changes-to-compiler-team.md index 13abd5d43..03866ca7c 100644 --- a/posts/inside-rust/2020-12-14-changes-to-compiler-team.md +++ b/posts/inside-rust/2020-12-14-changes-to-compiler-team.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-12-14 title = "Changes to Rust compiler team" author = "Felix S. Klock II" description = "recent leadership and membership changes" diff --git a/posts/inside-rust/2020-12-28-cjgillot-and-nadrieril-for-compiler-contributors.md b/posts/inside-rust/2020-12-28-cjgillot-and-nadrieril-for-compiler-contributors.md index 1128f8eb6..2e44b0af4 100644 --- a/posts/inside-rust/2020-12-28-cjgillot-and-nadrieril-for-compiler-contributors.md +++ b/posts/inside-rust/2020-12-28-cjgillot-and-nadrieril-for-compiler-contributors.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-12-28 title = "Please welcome cjgillot and Nadrieril to compiler-contributors" author = "Wesley Wiser" description = "Please welcome cjgillot and Nadrieril to compiler-contributors" diff --git a/posts/inside-rust/2020-12-29-1.49.0-prerelease.md b/posts/inside-rust/2020-12-29-1.49.0-prerelease.md index c146d5409..4a51dcdbc 100644 --- a/posts/inside-rust/2020-12-29-1.49.0-prerelease.md +++ b/posts/inside-rust/2020-12-29-1.49.0-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2020-12-29 title = "1.49.0 pre-release testing" author = "Pietro Albini" team = "The Release Team " diff --git a/posts/inside-rust/2021-01-15-rustdoc-performance-improvements.md b/posts/inside-rust/2021-01-15-rustdoc-performance-improvements.md index 7fcb2e2e1..9dd55e33e 100644 --- a/posts/inside-rust/2021-01-15-rustdoc-performance-improvements.md +++ b/posts/inside-rust/2021-01-15-rustdoc-performance-improvements.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-01-15 title = "Rustdoc performance improvements" author = "Jynn Nelson and Guillaume Gomez" team = "The Rustdoc Team " diff --git a/posts/inside-rust/2021-01-19-changes-to-rustdoc-team.md b/posts/inside-rust/2021-01-19-changes-to-rustdoc-team.md index 2cb3bcf4e..f78662fa8 100644 --- a/posts/inside-rust/2021-01-19-changes-to-rustdoc-team.md +++ b/posts/inside-rust/2021-01-19-changes-to-rustdoc-team.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-01-19 title = "Changes to the Rustdoc team" author = "Guillaume Gomez" description = "leadership and membership additions" diff --git a/posts/inside-rust/2021-01-26-ffi-unwind-longjmp.md b/posts/inside-rust/2021-01-26-ffi-unwind-longjmp.md index 10b1c65e6..c3533afa3 100644 --- a/posts/inside-rust/2021-01-26-ffi-unwind-longjmp.md +++ b/posts/inside-rust/2021-01-26-ffi-unwind-longjmp.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-01-26 title = "Rust & the case of the disappearing stack frames" author = "Kyle Strand" description = "introducing an exploration of how `longjmp` and similar functions can be handled in Rust" diff --git a/posts/inside-rust/2021-02-01-davidtwco-jackhuey-compiler-members.md b/posts/inside-rust/2021-02-01-davidtwco-jackhuey-compiler-members.md index 72e3741d7..d7e403fe6 100644 --- a/posts/inside-rust/2021-02-01-davidtwco-jackhuey-compiler-members.md +++ b/posts/inside-rust/2021-02-01-davidtwco-jackhuey-compiler-members.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-02-01 title = "Welcoming David Wood to compiler team and Jack Huey to compiler-contributors" author = "Wesley Wiser" description = "Please welcome David Wood to the compiler team and Jack Huey to compiler-contributors" diff --git a/posts/inside-rust/2021-02-03-lang-team-feb-update.md b/posts/inside-rust/2021-02-03-lang-team-feb-update.md index 68df3eaa9..58d928e17 100644 --- a/posts/inside-rust/2021-02-03-lang-team-feb-update.md +++ b/posts/inside-rust/2021-02-03-lang-team-feb-update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-02-03 title = "Lang team February update" author = "Niko Matsakis" description = "Lang team February update" diff --git a/posts/inside-rust/2021-02-09-1.50.0-prerelease.md b/posts/inside-rust/2021-02-09-1.50.0-prerelease.md index ae6e2ddde..12d1cb1a9 100644 --- a/posts/inside-rust/2021-02-09-1.50.0-prerelease.md +++ b/posts/inside-rust/2021-02-09-1.50.0-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-02-09 title = "1.50.0 pre-release testing" author = "Pietro Albini" team = "The Release Team " diff --git a/posts/inside-rust/2021-02-15-shrinkmem-rustc-sprint.md b/posts/inside-rust/2021-02-15-shrinkmem-rustc-sprint.md index cc0370f2b..5f55b1c49 100644 --- a/posts/inside-rust/2021-02-15-shrinkmem-rustc-sprint.md +++ b/posts/inside-rust/2021-02-15-shrinkmem-rustc-sprint.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-02-15 title = "March Sprint for rustc: Shrink Memory Usage" author = "Felix Klock" team = "The Compiler Team " diff --git a/posts/inside-rust/2021-03-03-lang-team-mar-update.md b/posts/inside-rust/2021-03-03-lang-team-mar-update.md index 774d9586d..c6ea14be4 100644 --- a/posts/inside-rust/2021-03-03-lang-team-mar-update.md +++ b/posts/inside-rust/2021-03-03-lang-team-mar-update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-03-03 title = "Lang team March update" author = "Niko Matsakis" description = "Lang team March update" diff --git a/posts/inside-rust/2021-03-04-planning-rust-2021.md b/posts/inside-rust/2021-03-04-planning-rust-2021.md index 555a7323c..cbb1ea347 100644 --- a/posts/inside-rust/2021-03-04-planning-rust-2021.md +++ b/posts/inside-rust/2021-03-04-planning-rust-2021.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-03-04 title = "Planning the Rust 2021 Edition" author = "Ryan Levick" team = "The Rust 2021 Edition Working Group " diff --git a/posts/inside-rust/2021-03-23-1.51.0-prerelease.md b/posts/inside-rust/2021-03-23-1.51.0-prerelease.md index fc477f617..3599e0c10 100644 --- a/posts/inside-rust/2021-03-23-1.51.0-prerelease.md +++ b/posts/inside-rust/2021-03-23-1.51.0-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-03-23 title = "1.51.0 pre-release testing" author = "Mark Rousskov" team = "The Release Team " diff --git a/posts/inside-rust/2021-04-03-core-team-updates.md b/posts/inside-rust/2021-04-03-core-team-updates.md index f0b395031..c9290d2f5 100644 --- a/posts/inside-rust/2021-04-03-core-team-updates.md +++ b/posts/inside-rust/2021-04-03-core-team-updates.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-04-03 title = "Core Team updates" author = "Pietro Albini" team = "the Rust Core Team " diff --git a/posts/inside-rust/2021-04-15-compiler-team-april-steering-cycle.md b/posts/inside-rust/2021-04-15-compiler-team-april-steering-cycle.md index e4b694d32..52af5535d 100644 --- a/posts/inside-rust/2021-04-15-compiler-team-april-steering-cycle.md +++ b/posts/inside-rust/2021-04-15-compiler-team-april-steering-cycle.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-04-15 title = "Rust Compiler April Steering Cycle" author = "Felix Klock" description = "The compiler team's April steering cycle" diff --git a/posts/inside-rust/2021-04-17-lang-team-apr-update.md b/posts/inside-rust/2021-04-17-lang-team-apr-update.md index 3f4079c29..7eb2b8f4d 100644 --- a/posts/inside-rust/2021-04-17-lang-team-apr-update.md +++ b/posts/inside-rust/2021-04-17-lang-team-apr-update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-04-17 title = "Lang team April update" author = "Niko Matsakis" description = "Lang team April update" diff --git a/posts/inside-rust/2021-04-20-jsha-rustdoc-member.md b/posts/inside-rust/2021-04-20-jsha-rustdoc-member.md index d16de19b8..f85240269 100644 --- a/posts/inside-rust/2021-04-20-jsha-rustdoc-member.md +++ b/posts/inside-rust/2021-04-20-jsha-rustdoc-member.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-04-20 title = "Jacob Hoffman-Andrews joins the Rustdoc team" author = "Guillaume Gomez" description = "new rustdoc team member" diff --git a/posts/inside-rust/2021-04-26-aaron-hill-compiler-team.md b/posts/inside-rust/2021-04-26-aaron-hill-compiler-team.md index 361b0f361..dd8970f13 100644 --- a/posts/inside-rust/2021-04-26-aaron-hill-compiler-team.md +++ b/posts/inside-rust/2021-04-26-aaron-hill-compiler-team.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-04-26 title = "Congrats to compiler team member Aaron Hill" author = "Wesley Wiser" description = "Congrats to compiler team member Aaron Hill" diff --git a/posts/inside-rust/2021-04-28-rustup-1.24.0-incident-report.md b/posts/inside-rust/2021-04-28-rustup-1.24.0-incident-report.md index a892b5936..d502d737a 100644 --- a/posts/inside-rust/2021-04-28-rustup-1.24.0-incident-report.md +++ b/posts/inside-rust/2021-04-28-rustup-1.24.0-incident-report.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-04-28 title = "Rustup 1.24.0 release incident report for 2021-04-27" author = "Daniel Silverstone" team = "the Rustup team " diff --git a/posts/inside-rust/2021-05-04-1.52.0-prerelease.md b/posts/inside-rust/2021-05-04-1.52.0-prerelease.md index a01aabfb9..c7229049e 100644 --- a/posts/inside-rust/2021-05-04-1.52.0-prerelease.md +++ b/posts/inside-rust/2021-05-04-1.52.0-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-05-04 title = "1.52.0 pre-release testing" author = "Pietro Albini" team = "The Release Team " diff --git a/posts/inside-rust/2021-05-04-core-team-update.md b/posts/inside-rust/2021-05-04-core-team-update.md index 225439649..61e82d114 100644 --- a/posts/inside-rust/2021-05-04-core-team-update.md +++ b/posts/inside-rust/2021-05-04-core-team-update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-05-04 title = "Core Team Update: May 2021" author = "Steve Klabnik" team = "The Core Team " diff --git a/posts/inside-rust/2021-06-15-1.53.0-prelease.md b/posts/inside-rust/2021-06-15-1.53.0-prelease.md index af0dd3ebe..cc608bc03 100644 --- a/posts/inside-rust/2021-06-15-1.53.0-prelease.md +++ b/posts/inside-rust/2021-06-15-1.53.0-prelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-06-15 title = "1.53.0 pre-release testing" author = "Mark Rousskov" team = "The Release Team " diff --git a/posts/inside-rust/2021-06-15-boxyuwu-leseulartichaut-the8472-compiler-contributors.md b/posts/inside-rust/2021-06-15-boxyuwu-leseulartichaut-the8472-compiler-contributors.md index 642427bbd..242cb98f5 100644 --- a/posts/inside-rust/2021-06-15-boxyuwu-leseulartichaut-the8472-compiler-contributors.md +++ b/posts/inside-rust/2021-06-15-boxyuwu-leseulartichaut-the8472-compiler-contributors.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-06-15 title = "Please welcome Boxy, LĂ©o Lanteri Thauvin and the8472 to compiler-contributors" author = "Wesley Wiser" description = "Please welcome Boxy, LĂ©o Lanteri Thauvin and the8472 to compiler-contributors" diff --git a/posts/inside-rust/2021-06-23-compiler-team-june-steering-cycle.md b/posts/inside-rust/2021-06-23-compiler-team-june-steering-cycle.md index 7db539e94..5ce19105c 100644 --- a/posts/inside-rust/2021-06-23-compiler-team-june-steering-cycle.md +++ b/posts/inside-rust/2021-06-23-compiler-team-june-steering-cycle.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-06-23 title = "Rust Compiler June Steering Cycle" author = "Felix Klock" description = "The compiler team's June steering cycle" diff --git a/posts/inside-rust/2021-07-01-What-the-error-handling-project-group-is-working-towards.md b/posts/inside-rust/2021-07-01-What-the-error-handling-project-group-is-working-towards.md index e7d5a6d99..96cc42177 100644 --- a/posts/inside-rust/2021-07-01-What-the-error-handling-project-group-is-working-towards.md +++ b/posts/inside-rust/2021-07-01-What-the-error-handling-project-group-is-working-towards.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-07-01 title = "What the Error Handling Project Group is Working Towards" author = "Jane Lusby" team = "the library team " diff --git a/posts/inside-rust/2021-07-02-compiler-team-july-steering-cycle.md b/posts/inside-rust/2021-07-02-compiler-team-july-steering-cycle.md index f961a3e35..5f565664c 100644 --- a/posts/inside-rust/2021-07-02-compiler-team-july-steering-cycle.md +++ b/posts/inside-rust/2021-07-02-compiler-team-july-steering-cycle.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-07-02 title = "Rust Compiler July Steering Cycle" author = "Felix Klock" description = "The compiler team's July steering cycle" diff --git a/posts/inside-rust/2021-07-12-Lang-team-july-update.md b/posts/inside-rust/2021-07-12-Lang-team-july-update.md index 9df5d5ad7..77a982b92 100644 --- a/posts/inside-rust/2021-07-12-Lang-team-july-update.md +++ b/posts/inside-rust/2021-07-12-Lang-team-july-update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-07-12 title = "Lang team July update" author = "Niko Matsakis" description = "Lang team July update" diff --git a/posts/inside-rust/2021-07-26-1.54.0-prerelease.md b/posts/inside-rust/2021-07-26-1.54.0-prerelease.md index f252743e5..204efbc23 100644 --- a/posts/inside-rust/2021-07-26-1.54.0-prerelease.md +++ b/posts/inside-rust/2021-07-26-1.54.0-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-07-26 title = "1.54.0 pre-release testing" author = "Pietro Albini" team = "The Release Team " diff --git a/posts/inside-rust/2021-07-30-compiler-team-august-steering-cycle.md b/posts/inside-rust/2021-07-30-compiler-team-august-steering-cycle.md index db1e8c9ab..47c99176e 100644 --- a/posts/inside-rust/2021-07-30-compiler-team-august-steering-cycle.md +++ b/posts/inside-rust/2021-07-30-compiler-team-august-steering-cycle.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-07-30 title = "Rust Compiler August Steering Cycle" author = "Felix Klock" description = "The compiler team's August steering cycle" diff --git a/posts/inside-rust/2021-08-04-lang-team-aug-update.md b/posts/inside-rust/2021-08-04-lang-team-aug-update.md index c320e2647..0fcf0f185 100644 --- a/posts/inside-rust/2021-08-04-lang-team-aug-update.md +++ b/posts/inside-rust/2021-08-04-lang-team-aug-update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-08-04 title = "Lang team August update" author = "Josh Triplett" description = "Lang team August update" diff --git a/posts/inside-rust/2021-09-06-Splitting-const-generics.md b/posts/inside-rust/2021-09-06-Splitting-const-generics.md index 0e008308d..483bf65d5 100644 --- a/posts/inside-rust/2021-09-06-Splitting-const-generics.md +++ b/posts/inside-rust/2021-09-06-Splitting-const-generics.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-09-06 title = "Splitting the const generics features" author = "lcnr" description = "Splitting the const generics features" diff --git a/posts/inside-rust/2021-09-07-1.55.0-prerelease.md b/posts/inside-rust/2021-09-07-1.55.0-prerelease.md index 5abb4b500..ff7788b1b 100644 --- a/posts/inside-rust/2021-09-07-1.55.0-prerelease.md +++ b/posts/inside-rust/2021-09-07-1.55.0-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-09-07 title = "1.55.0 pre-release testing" author = "Mark Rousskov" team = "The Release Team " diff --git a/posts/inside-rust/2021-10-08-Lang-team-Oct-update.md b/posts/inside-rust/2021-10-08-Lang-team-Oct-update.md index e65eb8429..046a8430a 100644 --- a/posts/inside-rust/2021-10-08-Lang-team-Oct-update.md +++ b/posts/inside-rust/2021-10-08-Lang-team-Oct-update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-10-08 title = "Lang team October update" author = "Niko Matsakis" description = "Lang team October update" diff --git a/posts/inside-rust/2021-10-18-1.56.0-prerelease.md b/posts/inside-rust/2021-10-18-1.56.0-prerelease.md index 1e263e5fd..cc0b2d179 100644 --- a/posts/inside-rust/2021-10-18-1.56.0-prerelease.md +++ b/posts/inside-rust/2021-10-18-1.56.0-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-10-18 title = "1.56.0 pre-release testing" author = "Pietro Albini" team = "The Release Team " diff --git a/posts/inside-rust/2021-11-15-libs-contributors-the8472-kodraus.md b/posts/inside-rust/2021-11-15-libs-contributors-the8472-kodraus.md index a5e0dd9dc..fcf3949f8 100644 --- a/posts/inside-rust/2021-11-15-libs-contributors-the8472-kodraus.md +++ b/posts/inside-rust/2021-11-15-libs-contributors-the8472-kodraus.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-11-15 title = "Please welcome The 8472 and Ashley Mannix to Library Contributors" author = "Mara Bos" description = "Please welcome The 8472 and Ashley Mannix to Library Contributors" diff --git a/posts/inside-rust/2021-11-25-in-response-to-the-moderation-team-resignation.md b/posts/inside-rust/2021-11-25-in-response-to-the-moderation-team-resignation.md index f71c6b123..f4be272cb 100644 --- a/posts/inside-rust/2021-11-25-in-response-to-the-moderation-team-resignation.md +++ b/posts/inside-rust/2021-11-25-in-response-to-the-moderation-team-resignation.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-11-25 title = "In response to the moderation team resignation" author = "The undersigned" +++ diff --git a/posts/inside-rust/2021-11-30-1.57.0-prerelease.md b/posts/inside-rust/2021-11-30-1.57.0-prerelease.md index 066a3e575..53fe1e463 100644 --- a/posts/inside-rust/2021-11-30-1.57.0-prerelease.md +++ b/posts/inside-rust/2021-11-30-1.57.0-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-11-30 title = "1.57.0 pre-release testing" author = "Mark Rousskov" team = "The Release Team " diff --git a/posts/inside-rust/2021-12-17-follow-up-on-the-moderation-issue.md b/posts/inside-rust/2021-12-17-follow-up-on-the-moderation-issue.md index 1c297eb2d..f0c7d9236 100644 --- a/posts/inside-rust/2021-12-17-follow-up-on-the-moderation-issue.md +++ b/posts/inside-rust/2021-12-17-follow-up-on-the-moderation-issue.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2021-12-17 title = "Follow-up on the moderation issue" author = "Ryan Levick and Mara Bos" team = "the Rust Project " diff --git a/posts/inside-rust/2022-01-11-1.58.0-prerelease.md b/posts/inside-rust/2022-01-11-1.58.0-prerelease.md index 7a5738602..8ddddfc9a 100644 --- a/posts/inside-rust/2022-01-11-1.58.0-prerelease.md +++ b/posts/inside-rust/2022-01-11-1.58.0-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-01-11 title = "1.58.0 pre-release testing" author = "Pietro Albini" team = "The Release Team " diff --git a/posts/inside-rust/2022-01-18-jan-steering-cycle.md b/posts/inside-rust/2022-01-18-jan-steering-cycle.md index 16adc3d35..4d0f0a2b8 100644 --- a/posts/inside-rust/2022-01-18-jan-steering-cycle.md +++ b/posts/inside-rust/2022-01-18-jan-steering-cycle.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-01-18 title = "Rust Compiler January 2022 Steering Cycle" author = "Felix Klock" description = "The compiler team's January 2022 steering cycle" diff --git a/posts/inside-rust/2022-02-03-async-in-2022.md b/posts/inside-rust/2022-02-03-async-in-2022.md index 2b0077717..813a276c2 100644 --- a/posts/inside-rust/2022-02-03-async-in-2022.md +++ b/posts/inside-rust/2022-02-03-async-in-2022.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-02-03 title = "Async Rust in 2022" author = "Niko Matsakis and Tyler Mandry" description = "The async working group's goals in 2022" diff --git a/posts/inside-rust/2022-02-11-CTCFT-february.md b/posts/inside-rust/2022-02-11-CTCFT-february.md index e1ef08a8f..88f09091c 100644 --- a/posts/inside-rust/2022-02-11-CTCFT-february.md +++ b/posts/inside-rust/2022-02-11-CTCFT-february.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-02-11 title = "CTCFT 2022-02-21 Agenda" author = "Rust CTCFT Team" +++ diff --git a/posts/inside-rust/2022-02-17-feb-steering-cycle.md b/posts/inside-rust/2022-02-17-feb-steering-cycle.md index 51241586e..d96429413 100644 --- a/posts/inside-rust/2022-02-17-feb-steering-cycle.md +++ b/posts/inside-rust/2022-02-17-feb-steering-cycle.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-02-17 title = "Rust Compiler February 2022 Steering Cycle" author = "Felix Klock" description = "The compiler team's February 2022 steering cycle" diff --git a/posts/inside-rust/2022-02-18-lang-team-feb-update.md b/posts/inside-rust/2022-02-18-lang-team-feb-update.md index 667f21144..8017521b4 100644 --- a/posts/inside-rust/2022-02-18-lang-team-feb-update.md +++ b/posts/inside-rust/2022-02-18-lang-team-feb-update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-02-18 title = "Lang team February update" author = "Sean Chen" description = "Lang team February update" diff --git a/posts/inside-rust/2022-02-22-1.59.0-prerelease.md b/posts/inside-rust/2022-02-22-1.59.0-prerelease.md index e2bc443ad..16feb9985 100644 --- a/posts/inside-rust/2022-02-22-1.59.0-prerelease.md +++ b/posts/inside-rust/2022-02-22-1.59.0-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-02-22 title = "1.59.0 pre-release testing" author = "Mark Rousskov" team = "The Release Team " diff --git a/posts/inside-rust/2022-02-22-compiler-team-ambitions-2022.md b/posts/inside-rust/2022-02-22-compiler-team-ambitions-2022.md index 9b06b92f3..1c39467a0 100644 --- a/posts/inside-rust/2022-02-22-compiler-team-ambitions-2022.md +++ b/posts/inside-rust/2022-02-22-compiler-team-ambitions-2022.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-02-22 title = "Rust Compiler Ambitions for 2022" author = "Felix Klock, Wesley Wiser" description = "The compiler team's concrete initiatives and hopeful aspirations for this year." diff --git a/posts/inside-rust/2022-03-09-lang-team-mar-update.md b/posts/inside-rust/2022-03-09-lang-team-mar-update.md index f03d30e5a..4584522e8 100644 --- a/posts/inside-rust/2022-03-09-lang-team-mar-update.md +++ b/posts/inside-rust/2022-03-09-lang-team-mar-update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-03-09 title = "Lang team March update" author = "Niko Matsakis" description = "Lang team March update" diff --git a/posts/inside-rust/2022-03-11-mar-steering-cycle.md b/posts/inside-rust/2022-03-11-mar-steering-cycle.md index 707c563a0..f243c65e9 100644 --- a/posts/inside-rust/2022-03-11-mar-steering-cycle.md +++ b/posts/inside-rust/2022-03-11-mar-steering-cycle.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-03-11 title = "Rust Compiler March 2022 Steering Cycle" author = "Felix Klock" description = "The compiler team's March 2022 steering cycle" diff --git a/posts/inside-rust/2022-03-16-CTCFT-march.md b/posts/inside-rust/2022-03-16-CTCFT-march.md index 0ee920e85..6dec7e6a5 100644 --- a/posts/inside-rust/2022-03-16-CTCFT-march.md +++ b/posts/inside-rust/2022-03-16-CTCFT-march.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-03-16 title = "CTCFT 2022-03-21 Agenda" author = "Rust CTCFT Team" +++ diff --git a/posts/inside-rust/2022-03-31-cargo-team-changes.md b/posts/inside-rust/2022-03-31-cargo-team-changes.md index f6b64d73b..4d655f98f 100644 --- a/posts/inside-rust/2022-03-31-cargo-team-changes.md +++ b/posts/inside-rust/2022-03-31-cargo-team-changes.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-03-31 title = "Changes at the Cargo Team" author = "Eric Huss" team = "The Cargo Team " diff --git a/posts/inside-rust/2022-04-04-1.60.0-prerelease.md b/posts/inside-rust/2022-04-04-1.60.0-prerelease.md index cc2cf8bcb..752aa0a0d 100644 --- a/posts/inside-rust/2022-04-04-1.60.0-prerelease.md +++ b/posts/inside-rust/2022-04-04-1.60.0-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-04-04 title = "1.60.0 pre-release testing" author = "Pietro Albini" team = "The Release Team " diff --git a/posts/inside-rust/2022-04-04-lang-roadmap-2024.md b/posts/inside-rust/2022-04-04-lang-roadmap-2024.md index 6c65a9d2a..2edadc60f 100644 --- a/posts/inside-rust/2022-04-04-lang-roadmap-2024.md +++ b/posts/inside-rust/2022-04-04-lang-roadmap-2024.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-04-04 title = "Rust Lang Roadmap for 2024" author = "Josh Triplett, Niko Matsakis" description = "The language team's concrete initiatives and hopeful aspirations for the Rust 2024 edition." diff --git a/posts/inside-rust/2022-04-06-lang-team-april-update.md b/posts/inside-rust/2022-04-06-lang-team-april-update.md index a351183b4..8fdb60a6f 100644 --- a/posts/inside-rust/2022-04-06-lang-team-april-update.md +++ b/posts/inside-rust/2022-04-06-lang-team-april-update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-04-06 title = "Lang team April update" author = "Josh Triplett" description = "Lang team April update" diff --git a/posts/inside-rust/2022-04-12-CTCFT-april.md b/posts/inside-rust/2022-04-12-CTCFT-april.md index 6b8525578..c657f3984 100644 --- a/posts/inside-rust/2022-04-12-CTCFT-april.md +++ b/posts/inside-rust/2022-04-12-CTCFT-april.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-04-12 title = "CTCFT 2022-04-18 Agenda" author = "Rust CTCFT Team" +++ diff --git a/posts/inside-rust/2022-04-15-apr-steering-cycle.md b/posts/inside-rust/2022-04-15-apr-steering-cycle.md index c0f9db585..0763eac0a 100644 --- a/posts/inside-rust/2022-04-15-apr-steering-cycle.md +++ b/posts/inside-rust/2022-04-15-apr-steering-cycle.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-04-15 title = "Rust Compiler April 2022 Steering Cycle" author = "Felix Klock" description = "The compiler team's April 2022 steering cycle" diff --git a/posts/inside-rust/2022-04-18-libs-contributors.md b/posts/inside-rust/2022-04-18-libs-contributors.md index 9b847d5d9..9449d7a9b 100644 --- a/posts/inside-rust/2022-04-18-libs-contributors.md +++ b/posts/inside-rust/2022-04-18-libs-contributors.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-04-18 title = "Please welcome Thom and Chris to Library Contributors" author = "Mara Bos" description = "Please welcome Thom and Chris to Library Contributors" diff --git a/posts/inside-rust/2022-04-19-imposter-syndrome.md b/posts/inside-rust/2022-04-19-imposter-syndrome.md index 078796a00..ffaa9c8ce 100644 --- a/posts/inside-rust/2022-04-19-imposter-syndrome.md +++ b/posts/inside-rust/2022-04-19-imposter-syndrome.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-04-19 title = "Imposter Syndrome" author = "Jane Lusby, Project Director of Collaboration" team = "Rust Foundation Project Directors " diff --git a/posts/inside-rust/2022-04-20-libs-aspirations.md b/posts/inside-rust/2022-04-20-libs-aspirations.md index 169105e0a..c74034de9 100644 --- a/posts/inside-rust/2022-04-20-libs-aspirations.md +++ b/posts/inside-rust/2022-04-20-libs-aspirations.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-04-20 title = "Rust Library Team Aspirations" author = "Mara Bos" description = "Rust Library Team Aspirations" diff --git a/posts/inside-rust/2022-05-10-CTCFT-may.md b/posts/inside-rust/2022-05-10-CTCFT-may.md index e3c0b3770..7016dd611 100644 --- a/posts/inside-rust/2022-05-10-CTCFT-may.md +++ b/posts/inside-rust/2022-05-10-CTCFT-may.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-05-10 title = "CTCFT 2022-05-16 Agenda" author = "Rust CTCFT Team" +++ diff --git a/posts/inside-rust/2022-05-16-1.61.0-prerelease.md b/posts/inside-rust/2022-05-16-1.61.0-prerelease.md index 728eead15..86ef47590 100644 --- a/posts/inside-rust/2022-05-16-1.61.0-prerelease.md +++ b/posts/inside-rust/2022-05-16-1.61.0-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-05-16 title = "1.61.0 pre-release testing" author = "Mark Rousskov" team = "The Release Team " diff --git a/posts/inside-rust/2022-05-19-governance-update.md b/posts/inside-rust/2022-05-19-governance-update.md index 3b54975d4..031481521 100644 --- a/posts/inside-rust/2022-05-19-governance-update.md +++ b/posts/inside-rust/2022-05-19-governance-update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-05-19 title = "Governance Update" author = "Ryan Levick and Mara Bos" +++ diff --git a/posts/inside-rust/2022-05-26-Concluding-events-mods.md b/posts/inside-rust/2022-05-26-Concluding-events-mods.md index ef802d5e4..e074c4b5e 100644 --- a/posts/inside-rust/2022-05-26-Concluding-events-mods.md +++ b/posts/inside-rust/2022-05-26-Concluding-events-mods.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-05-26 title = "Concluding the events of last November" author = "Khionu Sybiern" team = "The Moderation Team " diff --git a/posts/inside-rust/2022-06-03-jun-steering-cycle.md b/posts/inside-rust/2022-06-03-jun-steering-cycle.md index 9336e7716..79a0a0811 100644 --- a/posts/inside-rust/2022-06-03-jun-steering-cycle.md +++ b/posts/inside-rust/2022-06-03-jun-steering-cycle.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-06-03 title = "Rust Compiler June 2022 Steering Cycle" author = "Felix Klock" description = "The compiler team's June 2022 steering cycle" diff --git a/posts/inside-rust/2022-06-21-survey-2021-report.md b/posts/inside-rust/2022-06-21-survey-2021-report.md index 468d24feb..d43f0aebd 100644 --- a/posts/inside-rust/2022-06-21-survey-2021-report.md +++ b/posts/inside-rust/2022-06-21-survey-2021-report.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-06-21 title = "2021 Annual Survey Report" author = "Nick Cameron" description = "Download a data report on the 2021 annual community survey." diff --git a/posts/inside-rust/2022-06-28-1.62.0-prerelease.md b/posts/inside-rust/2022-06-28-1.62.0-prerelease.md index 8381ea933..c4117f516 100644 --- a/posts/inside-rust/2022-06-28-1.62.0-prerelease.md +++ b/posts/inside-rust/2022-06-28-1.62.0-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-06-28 title = "1.62.0 pre-release testing" author = "Pietro Albini" team = "The Release Team " diff --git a/posts/inside-rust/2022-07-13-clippy-team-changes.md b/posts/inside-rust/2022-07-13-clippy-team-changes.md index 76aa0c871..0fa2394c0 100644 --- a/posts/inside-rust/2022-07-13-clippy-team-changes.md +++ b/posts/inside-rust/2022-07-13-clippy-team-changes.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-07-13 title = "Changes at the Clippy Team" author = "Philipp Krones" team = "The Clippy Team " diff --git a/posts/inside-rust/2022-07-16-1.62.1-prerelease.md b/posts/inside-rust/2022-07-16-1.62.1-prerelease.md index 0ea854090..548e91138 100644 --- a/posts/inside-rust/2022-07-16-1.62.1-prerelease.md +++ b/posts/inside-rust/2022-07-16-1.62.1-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-07-16 title = "1.62.1 pre-release testing" author = "Release automation" team = "The Release Team " diff --git a/posts/inside-rust/2022-07-27-keyword-generics.md b/posts/inside-rust/2022-07-27-keyword-generics.md index 92a002f44..11eac9c01 100644 --- a/posts/inside-rust/2022-07-27-keyword-generics.md +++ b/posts/inside-rust/2022-07-27-keyword-generics.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-07-27 title = "Announcing the Keyword Generics Initiative" author = "Yoshua Wuyts" team = "The Keyword Generics Initiative " diff --git a/posts/inside-rust/2022-08-08-compiler-team-2022-midyear-report.md b/posts/inside-rust/2022-08-08-compiler-team-2022-midyear-report.md index ba1fee0e4..2448c6c71 100644 --- a/posts/inside-rust/2022-08-08-compiler-team-2022-midyear-report.md +++ b/posts/inside-rust/2022-08-08-compiler-team-2022-midyear-report.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-08-08 title = "Rust Compiler Midyear Report for 2022" author = "Felix Klock, Wesley Wiser" description = "The compiler team's midyear report on its ambitions for 2022." diff --git a/posts/inside-rust/2022-08-09-1.63.0-prerelease.md b/posts/inside-rust/2022-08-09-1.63.0-prerelease.md index f2e60eadb..2a51c3159 100644 --- a/posts/inside-rust/2022-08-09-1.63.0-prerelease.md +++ b/posts/inside-rust/2022-08-09-1.63.0-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-08-09 title = "1.63.0 pre-release testing" author = "Release automation" team = "The Release Team " diff --git a/posts/inside-rust/2022-08-10-libs-contributors.md b/posts/inside-rust/2022-08-10-libs-contributors.md index 4a26a1273..dfe4e253f 100644 --- a/posts/inside-rust/2022-08-10-libs-contributors.md +++ b/posts/inside-rust/2022-08-10-libs-contributors.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-08-10 title = "Please welcome Dan to Library Contributors" author = "Mara Bos" team = "the library team " diff --git a/posts/inside-rust/2022-08-16-diagnostic-effort.md b/posts/inside-rust/2022-08-16-diagnostic-effort.md index d59f5f19e..e8645b6ad 100644 --- a/posts/inside-rust/2022-08-16-diagnostic-effort.md +++ b/posts/inside-rust/2022-08-16-diagnostic-effort.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-08-16 title = "Contribute to the diagnostic translation effort!" author = "David Wood" team = "the compiler team " diff --git a/posts/inside-rust/2022-09-19-1.64.0-prerelease.md b/posts/inside-rust/2022-09-19-1.64.0-prerelease.md index afa84b9bf..040d8bd9a 100644 --- a/posts/inside-rust/2022-09-19-1.64.0-prerelease.md +++ b/posts/inside-rust/2022-09-19-1.64.0-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-09-19 title = "1.64.0 pre-release testing" author = "Release automation" team = "The Release Team " diff --git a/posts/inside-rust/2022-09-23-compiler-team-sep-oct-steering-cycle.md b/posts/inside-rust/2022-09-23-compiler-team-sep-oct-steering-cycle.md index e446472c9..033cb09de 100644 --- a/posts/inside-rust/2022-09-23-compiler-team-sep-oct-steering-cycle.md +++ b/posts/inside-rust/2022-09-23-compiler-team-sep-oct-steering-cycle.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-09-23 title = "Rust Compiler Early October 2022 Steering Cycle" author = "Felix Klock" description = "The compiler team's early October 2022 steering cycle" diff --git a/posts/inside-rust/2022-09-29-announcing-the-rust-style-team.md b/posts/inside-rust/2022-09-29-announcing-the-rust-style-team.md index 6b6318371..2bbf079bd 100644 --- a/posts/inside-rust/2022-09-29-announcing-the-rust-style-team.md +++ b/posts/inside-rust/2022-09-29-announcing-the-rust-style-team.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-09-29 title = "Announcing the Rust Style Team" author = "Josh Triplett" team = "The Rust Style Team " diff --git a/posts/inside-rust/2022-10-06-governance-update.md b/posts/inside-rust/2022-10-06-governance-update.md index c1e609718..490a4e666 100644 --- a/posts/inside-rust/2022-10-06-governance-update.md +++ b/posts/inside-rust/2022-10-06-governance-update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-10-06 title = "Governance Update" author = "Ryan Levick" team = "leadership chat " diff --git a/posts/inside-rust/2022-10-31-1.65.0-prerelease.md b/posts/inside-rust/2022-10-31-1.65.0-prerelease.md index e6cbbbb68..29f1eedf9 100644 --- a/posts/inside-rust/2022-10-31-1.65.0-prerelease.md +++ b/posts/inside-rust/2022-10-31-1.65.0-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-10-31 title = "1.65.0 pre-release testing" author = "Release automation" team = "The Release Team " diff --git a/posts/inside-rust/2022-11-17-async-fn-in-trait-nightly.md b/posts/inside-rust/2022-11-17-async-fn-in-trait-nightly.md index 2b1f72566..1876626ac 100644 --- a/posts/inside-rust/2022-11-17-async-fn-in-trait-nightly.md +++ b/posts/inside-rust/2022-11-17-async-fn-in-trait-nightly.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-11-17 title = "Async fn in trait MVP comes to nightly" author = "Tyler Mandry" team = "The Rust Async Working Group " diff --git a/posts/inside-rust/2022-11-29-libs-member.md b/posts/inside-rust/2022-11-29-libs-member.md index ceeba3fa7..d0b7ce47c 100644 --- a/posts/inside-rust/2022-11-29-libs-member.md +++ b/posts/inside-rust/2022-11-29-libs-member.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-11-29 title = "Please welcome The 8472 to the Library team" author = "Mara Bos" team = "the library team " diff --git a/posts/inside-rust/2022-12-12-1.66.0-prerelease.md b/posts/inside-rust/2022-12-12-1.66.0-prerelease.md index 93d83bef8..daba13b1b 100644 --- a/posts/inside-rust/2022-12-12-1.66.0-prerelease.md +++ b/posts/inside-rust/2022-12-12-1.66.0-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2022-12-12 title = "1.66.0 pre-release testing" author = "Release automation" team = "The Release Team " diff --git a/posts/inside-rust/2023-01-24-content-delivery-networks.md b/posts/inside-rust/2023-01-24-content-delivery-networks.md index e75df00aa..bb2217653 100644 --- a/posts/inside-rust/2023-01-24-content-delivery-networks.md +++ b/posts/inside-rust/2023-01-24-content-delivery-networks.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-01-24 title = "Diversifying our Content Delivery Networks" author = "Jan David Nose" team = "The Rust Infrastructure Team " diff --git a/posts/inside-rust/2023-01-25-1.67.0-prerelease.md b/posts/inside-rust/2023-01-25-1.67.0-prerelease.md index 73f538ba6..34d510128 100644 --- a/posts/inside-rust/2023-01-25-1.67.0-prerelease.md +++ b/posts/inside-rust/2023-01-25-1.67.0-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-01-25 title = "1.67.0 pre-release testing" author = "Release automation" team = "The Release Team " diff --git a/posts/inside-rust/2023-01-30-cargo-sparse-protocol.md b/posts/inside-rust/2023-01-30-cargo-sparse-protocol.md index c62e57a29..084e13005 100644 --- a/posts/inside-rust/2023-01-30-cargo-sparse-protocol.md +++ b/posts/inside-rust/2023-01-30-cargo-sparse-protocol.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-01-30 title = "Help test Cargo's new index protocol" author = "Eric Huss" team = "The Cargo Team " diff --git a/posts/inside-rust/2023-02-07-1.67.1-prerelease.md b/posts/inside-rust/2023-02-07-1.67.1-prerelease.md index 41c657516..b821515d7 100644 --- a/posts/inside-rust/2023-02-07-1.67.1-prerelease.md +++ b/posts/inside-rust/2023-02-07-1.67.1-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-02-07 title = "1.67.1 pre-release testing" author = "Release automation" team = "The Release Team " diff --git a/posts/inside-rust/2023-02-08-dns-outage-portmortem.md b/posts/inside-rust/2023-02-08-dns-outage-portmortem.md index 9487d874b..79e2c26f1 100644 --- a/posts/inside-rust/2023-02-08-dns-outage-portmortem.md +++ b/posts/inside-rust/2023-02-08-dns-outage-portmortem.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-02-08 title = "DNS Outage on 2023-01-25" author = "Jan David Nose" team = "The Rust Infrastructure Team " diff --git a/posts/inside-rust/2023-02-10-compiler-team-feb-steering-cycle.md b/posts/inside-rust/2023-02-10-compiler-team-feb-steering-cycle.md index 9cf24a43c..d29ca7814 100644 --- a/posts/inside-rust/2023-02-10-compiler-team-feb-steering-cycle.md +++ b/posts/inside-rust/2023-02-10-compiler-team-feb-steering-cycle.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-02-10 title = "Rust Compiler February 2023 Steering Cycle" author = "Felix Klock" description = "The compiler team's Feburary 2023 steering cycle" diff --git a/posts/inside-rust/2023-02-14-lang-advisors.md b/posts/inside-rust/2023-02-14-lang-advisors.md index 5114c550a..3f850b931 100644 --- a/posts/inside-rust/2023-02-14-lang-advisors.md +++ b/posts/inside-rust/2023-02-14-lang-advisors.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-02-14 title = "Language team advisors" author = "Josh Triplett, Niko Matsakis" team = "The Rust Lang Team " diff --git a/posts/inside-rust/2023-02-14-lang-team-membership-update.md b/posts/inside-rust/2023-02-14-lang-team-membership-update.md index d0f7763f1..94c16b095 100644 --- a/posts/inside-rust/2023-02-14-lang-team-membership-update.md +++ b/posts/inside-rust/2023-02-14-lang-team-membership-update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-02-14 title = "Welcome Tyler Mandry to the Rust language team!" author = "Josh Triplett, Niko Matsakis" team = "The Rust Lang Team " diff --git a/posts/inside-rust/2023-02-22-governance-reform-rfc.md b/posts/inside-rust/2023-02-22-governance-reform-rfc.md index 2b14f8471..57b832b6a 100644 --- a/posts/inside-rust/2023-02-22-governance-reform-rfc.md +++ b/posts/inside-rust/2023-02-22-governance-reform-rfc.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-02-22 title = "Governance Reform RFC Announcement" author = "Jane Losare-Lusby and the Governance Reform WG" team = "leadership chat " diff --git a/posts/inside-rust/2023-02-23-keyword-generics-progress-report-feb-2023.md b/posts/inside-rust/2023-02-23-keyword-generics-progress-report-feb-2023.md index 020fe953a..feb8b26d3 100644 --- a/posts/inside-rust/2023-02-23-keyword-generics-progress-report-feb-2023.md +++ b/posts/inside-rust/2023-02-23-keyword-generics-progress-report-feb-2023.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-02-23 title = "Keyword Generics Progress Report: February 2023" author = "Yoshua Wuyts" team = "The Keyword Generics Initiative " diff --git a/posts/inside-rust/2023-03-06-1.68.0-prerelease.md b/posts/inside-rust/2023-03-06-1.68.0-prerelease.md index fd1ac594c..7a47532a0 100644 --- a/posts/inside-rust/2023-03-06-1.68.0-prerelease.md +++ b/posts/inside-rust/2023-03-06-1.68.0-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-03-06 title = "1.68.0 pre-release testing" author = "Release automation" team = "The Release Team " diff --git a/posts/inside-rust/2023-03-20-1.68.1-prerelease.md b/posts/inside-rust/2023-03-20-1.68.1-prerelease.md index 8aa3cd3a4..3778ec46a 100644 --- a/posts/inside-rust/2023-03-20-1.68.1-prerelease.md +++ b/posts/inside-rust/2023-03-20-1.68.1-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-03-20 title = "1.68.1 pre-release testing" author = "Release automation" team = "The Release Team " diff --git a/posts/inside-rust/2023-03-27-1.68.2-prerelease.md b/posts/inside-rust/2023-03-27-1.68.2-prerelease.md index 89de4ecc1..c3ec5adb7 100644 --- a/posts/inside-rust/2023-03-27-1.68.2-prerelease.md +++ b/posts/inside-rust/2023-03-27-1.68.2-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-03-27 title = "1.68.2 pre-release testing" author = "Release automation" team = "The Release Team " diff --git a/posts/inside-rust/2023-04-06-cargo-new-members.md b/posts/inside-rust/2023-04-06-cargo-new-members.md index 499ca778c..0c664df95 100644 --- a/posts/inside-rust/2023-04-06-cargo-new-members.md +++ b/posts/inside-rust/2023-04-06-cargo-new-members.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-04-06 title = "Welcome Arlo and Scott to the Cargo Team" author = "Eric Huss" team = "The Cargo Team " diff --git a/posts/inside-rust/2023-04-12-trademark-policy-draft-feedback.md b/posts/inside-rust/2023-04-12-trademark-policy-draft-feedback.md index 85708a4bb..e9db93485 100644 --- a/posts/inside-rust/2023-04-12-trademark-policy-draft-feedback.md +++ b/posts/inside-rust/2023-04-12-trademark-policy-draft-feedback.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-04-12 title = "A note on the Trademark Policy Draft" author = "Ryan Levick, Jane Losare-Lusby, Tyler Mandry, Mark Rousskov, Josh Stone, and Josh Triplett" +++ diff --git a/posts/inside-rust/2023-04-17-1.69.0-prerelease.md b/posts/inside-rust/2023-04-17-1.69.0-prerelease.md index dd5db8150..9a4fac531 100644 --- a/posts/inside-rust/2023-04-17-1.69.0-prerelease.md +++ b/posts/inside-rust/2023-04-17-1.69.0-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-04-17 title = "1.69.0 pre-release testing" author = "Release automation" team = "The Release Team " diff --git a/posts/inside-rust/2023-05-01-cargo-postmortem.md b/posts/inside-rust/2023-05-01-cargo-postmortem.md index 6a29813d4..161d4797b 100644 --- a/posts/inside-rust/2023-05-01-cargo-postmortem.md +++ b/posts/inside-rust/2023-05-01-cargo-postmortem.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-05-01 title = "Postmortem Analysis in Cargo" author = "Jon Gjengset and Weihang Lo" team = "The Cargo Team " diff --git a/posts/inside-rust/2023-05-03-stabilizing-async-fn-in-trait.md b/posts/inside-rust/2023-05-03-stabilizing-async-fn-in-trait.md index 16e5b96d9..66e0211ce 100644 --- a/posts/inside-rust/2023-05-03-stabilizing-async-fn-in-trait.md +++ b/posts/inside-rust/2023-05-03-stabilizing-async-fn-in-trait.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-05-03 title = "Stabilizing async fn in traits in 2023" author = "Niko Matsakis and Tyler Mandry" team = "The Rust Async Working Group " diff --git a/posts/inside-rust/2023-05-09-api-token-scopes.md b/posts/inside-rust/2023-05-09-api-token-scopes.md index f04a10723..d1c708fad 100644 --- a/posts/inside-rust/2023-05-09-api-token-scopes.md +++ b/posts/inside-rust/2023-05-09-api-token-scopes.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-05-09 title = "API token scopes" author = "Tobias Bieniek" team = "the crates.io team " diff --git a/posts/inside-rust/2023-05-29-1.70.0-prerelease.md b/posts/inside-rust/2023-05-29-1.70.0-prerelease.md index 0b3662f67..7fcfa8ff0 100644 --- a/posts/inside-rust/2023-05-29-1.70.0-prerelease.md +++ b/posts/inside-rust/2023-05-29-1.70.0-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-05-29 title = "1.70.0 pre-release testing" author = "Release automation" team = "The Release Team " diff --git a/posts/inside-rust/2023-07-10-1.71.0-prerelease.md b/posts/inside-rust/2023-07-10-1.71.0-prerelease.md index 2ec0c1a00..f1df2b644 100644 --- a/posts/inside-rust/2023-07-10-1.71.0-prerelease.md +++ b/posts/inside-rust/2023-07-10-1.71.0-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-07-10 title = "1.71.0 pre-release testing" author = "Release automation" team = "The Release Team " diff --git a/posts/inside-rust/2023-07-17-trait-system-refactor-initiative.md b/posts/inside-rust/2023-07-17-trait-system-refactor-initiative.md index 2b7607fd7..da221f36a 100644 --- a/posts/inside-rust/2023-07-17-trait-system-refactor-initiative.md +++ b/posts/inside-rust/2023-07-17-trait-system-refactor-initiative.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-07-17 title = "Rustc Trait System Refactor Initiative Update" author = "lcnr" team = "The Rustc Trait System Refactor Initiative " diff --git a/posts/inside-rust/2023-07-21-crates-io-postmortem.md b/posts/inside-rust/2023-07-21-crates-io-postmortem.md index 95a885bd6..84e254983 100644 --- a/posts/inside-rust/2023-07-21-crates-io-postmortem.md +++ b/posts/inside-rust/2023-07-21-crates-io-postmortem.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-07-21 title = "crates.io Postmortem: Broken Crate Downloads" author = "Tobias Bieniek" team = "the crates.io team " diff --git a/posts/inside-rust/2023-07-25-leadership-council-update.md b/posts/inside-rust/2023-07-25-leadership-council-update.md index 0acbae43e..ae74e9692 100644 --- a/posts/inside-rust/2023-07-25-leadership-council-update.md +++ b/posts/inside-rust/2023-07-25-leadership-council-update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-07-25 title = "July 2023 Leadership Council Update" author = "Leadership Council" team = "Leadership Council " diff --git a/posts/inside-rust/2023-08-01-1.71.1-prerelease.md b/posts/inside-rust/2023-08-01-1.71.1-prerelease.md index 1fd8f040e..5ef380a5f 100644 --- a/posts/inside-rust/2023-08-01-1.71.1-prerelease.md +++ b/posts/inside-rust/2023-08-01-1.71.1-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-08-01 title = "1.71.1 pre-release testing" author = "Release automation" team = "The Release Team " diff --git a/posts/inside-rust/2023-08-02-rotating-compiler-leads.md b/posts/inside-rust/2023-08-02-rotating-compiler-leads.md index 4e75bfcc9..4f5ed4210 100644 --- a/posts/inside-rust/2023-08-02-rotating-compiler-leads.md +++ b/posts/inside-rust/2023-08-02-rotating-compiler-leads.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-08-02 title = "Rotating Rust compiler team leadership" author = "Wesley Wiser" team = "the compiler team " diff --git a/posts/inside-rust/2023-08-21-1.72.0-prerelease.md b/posts/inside-rust/2023-08-21-1.72.0-prerelease.md index acd3ff85f..abe1b4d8e 100644 --- a/posts/inside-rust/2023-08-21-1.72.0-prerelease.md +++ b/posts/inside-rust/2023-08-21-1.72.0-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-08-21 title = "1.72.0 pre-release testing" author = "Release automation" team = "The Release Team " diff --git a/posts/inside-rust/2023-08-24-cargo-config-merging.md b/posts/inside-rust/2023-08-24-cargo-config-merging.md index 292355e4a..2b161cf87 100644 --- a/posts/inside-rust/2023-08-24-cargo-config-merging.md +++ b/posts/inside-rust/2023-08-24-cargo-config-merging.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-08-24 title = "Cargo changes how arrays in config are merged" author = "Arlo Siemsen" team = "the Cargo team " diff --git a/posts/inside-rust/2023-08-25-leadership-initiatives.md b/posts/inside-rust/2023-08-25-leadership-initiatives.md index 9098a3dde..46b283a6f 100644 --- a/posts/inside-rust/2023-08-25-leadership-initiatives.md +++ b/posts/inside-rust/2023-08-25-leadership-initiatives.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-08-25 title = "Seeking help for initial Leadership Council initiatives" author = "Mark Rousskov" team = "the leadership council " diff --git a/posts/inside-rust/2023-08-29-leadership-council-membership-changes.md b/posts/inside-rust/2023-08-29-leadership-council-membership-changes.md index 8855d948b..5225f6370 100644 --- a/posts/inside-rust/2023-08-29-leadership-council-membership-changes.md +++ b/posts/inside-rust/2023-08-29-leadership-council-membership-changes.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-08-29 title = "Leadership Council Membership Changes" author = "Carol Nichols" team = "the leadership council " diff --git a/posts/inside-rust/2023-09-01-crates-io-malware-postmortem.md b/posts/inside-rust/2023-09-01-crates-io-malware-postmortem.md index b5e465403..c3d567dd9 100644 --- a/posts/inside-rust/2023-09-01-crates-io-malware-postmortem.md +++ b/posts/inside-rust/2023-09-01-crates-io-malware-postmortem.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-09-01 title = "crates.io Postmortem: User Uploaded Malware" author = "Adam Harvey" team = "the crates.io team " diff --git a/posts/inside-rust/2023-09-04-keeping-secure-with-cargo-audit-0.18.md b/posts/inside-rust/2023-09-04-keeping-secure-with-cargo-audit-0.18.md index a6865f8b4..633170b99 100644 --- a/posts/inside-rust/2023-09-04-keeping-secure-with-cargo-audit-0.18.md +++ b/posts/inside-rust/2023-09-04-keeping-secure-with-cargo-audit-0.18.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-09-04 title = "Keeping Rust projects secure with cargo-audit 0.18: performance, compatibility and security improvements" author = 'Sergey "Shnatsel" Davidoff' description = "A look at the new features in cargo-audit 0.18 for ensuring dependencies are free of known vulnerabilities" diff --git a/posts/inside-rust/2023-09-08-infra-team-leadership-change.md b/posts/inside-rust/2023-09-08-infra-team-leadership-change.md index 3e2bcc5f6..f212af020 100644 --- a/posts/inside-rust/2023-09-08-infra-team-leadership-change.md +++ b/posts/inside-rust/2023-09-08-infra-team-leadership-change.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-09-08 title = "Leadership change in the Rust Infrastructure Team" author = "Pietro Albini" team = "the infrastructure team " diff --git a/posts/inside-rust/2023-09-14-1.72.1-prerelease.md b/posts/inside-rust/2023-09-14-1.72.1-prerelease.md index fff48821a..305eb02ed 100644 --- a/posts/inside-rust/2023-09-14-1.72.1-prerelease.md +++ b/posts/inside-rust/2023-09-14-1.72.1-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-09-14 title = "1.72.1 pre-release testing" author = "Release automation" team = "The Release Team " diff --git a/posts/inside-rust/2023-09-22-project-director-nominees.md b/posts/inside-rust/2023-09-22-project-director-nominees.md index 87d2fe6ef..54cb8a416 100644 --- a/posts/inside-rust/2023-09-22-project-director-nominees.md +++ b/posts/inside-rust/2023-09-22-project-director-nominees.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-09-22 title = "Announcing the Project Director Nominees" author = "Leadership Council" team = "Leadership Council " diff --git a/posts/inside-rust/2023-10-03-1.73.0-prerelease.md b/posts/inside-rust/2023-10-03-1.73.0-prerelease.md index 787612929..50224b658 100644 --- a/posts/inside-rust/2023-10-03-1.73.0-prerelease.md +++ b/posts/inside-rust/2023-10-03-1.73.0-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-10-03 title = "1.73.0 pre-release testing" author = "Release automation" team = "The Release Team " diff --git a/posts/inside-rust/2023-10-06-polonius-update.md b/posts/inside-rust/2023-10-06-polonius-update.md index c1d93e70a..9a7593662 100644 --- a/posts/inside-rust/2023-10-06-polonius-update.md +++ b/posts/inside-rust/2023-10-06-polonius-update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-10-06 title = "Polonius update" author = "RĂ©my Rakic and Niko Matsakis" team = "The Polonius Working Group " diff --git a/posts/inside-rust/2023-10-23-coroutines.md b/posts/inside-rust/2023-10-23-coroutines.md index 967225040..20f696c0d 100644 --- a/posts/inside-rust/2023-10-23-coroutines.md +++ b/posts/inside-rust/2023-10-23-coroutines.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-10-23 title = "Generators are dead, long live coroutines, generators are back" author = "oli-obk" +++ diff --git a/posts/inside-rust/2023-11-13-1.74.0-prerelease.md b/posts/inside-rust/2023-11-13-1.74.0-prerelease.md index 8944f026a..7fab4046f 100644 --- a/posts/inside-rust/2023-11-13-1.74.0-prerelease.md +++ b/posts/inside-rust/2023-11-13-1.74.0-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-11-13 title = "1.74.0 pre-release testing" author = "Release automation" team = "The Release Team " diff --git a/posts/inside-rust/2023-11-13-leadership-council-update.md b/posts/inside-rust/2023-11-13-leadership-council-update.md index f77e6fbe3..6695228c2 100644 --- a/posts/inside-rust/2023-11-13-leadership-council-update.md +++ b/posts/inside-rust/2023-11-13-leadership-council-update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-11-13 title = "November 2023 Leadership Council Update" author = "Leadership Council" team = "Leadership Council " diff --git a/posts/inside-rust/2023-11-15-spec-vision.md b/posts/inside-rust/2023-11-15-spec-vision.md index 7bdf0161c..351515a82 100644 --- a/posts/inside-rust/2023-11-15-spec-vision.md +++ b/posts/inside-rust/2023-11-15-spec-vision.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-11-15 title = "Our Vision for the Rust Specification" author = "Eric, Felix, Joel and Mara" team = "the specification team " diff --git a/posts/inside-rust/2023-12-05-1.74.1-prerelease.md b/posts/inside-rust/2023-12-05-1.74.1-prerelease.md index d0e3b5268..e9b7b0d35 100644 --- a/posts/inside-rust/2023-12-05-1.74.1-prerelease.md +++ b/posts/inside-rust/2023-12-05-1.74.1-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-12-05 title = "1.74.1 pre-release testing" author = "Release automation" team = "The Release Team " diff --git a/posts/inside-rust/2023-12-21-1.75.0-prerelease.md b/posts/inside-rust/2023-12-21-1.75.0-prerelease.md index 150bb14d0..13ba53c15 100644 --- a/posts/inside-rust/2023-12-21-1.75.0-prerelease.md +++ b/posts/inside-rust/2023-12-21-1.75.0-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-12-21 title = "1.75.0 pre-release testing" author = "Release automation" team = "The Release Team " diff --git a/posts/inside-rust/2023-12-22-trait-system-refactor-initiative.md b/posts/inside-rust/2023-12-22-trait-system-refactor-initiative.md index c6128bec5..9656afd2d 100644 --- a/posts/inside-rust/2023-12-22-trait-system-refactor-initiative.md +++ b/posts/inside-rust/2023-12-22-trait-system-refactor-initiative.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2023-12-22 title = "Rustc Trait System Refactor Initiative Update: A call for testing" author = "lcnr" team = "The Rustc Trait System Refactor Initiative " diff --git a/posts/inside-rust/2024-01-03-this-development-cycle-in-cargo-1-76.md b/posts/inside-rust/2024-01-03-this-development-cycle-in-cargo-1-76.md index c7ead8d53..d565a3f31 100644 --- a/posts/inside-rust/2024-01-03-this-development-cycle-in-cargo-1-76.md +++ b/posts/inside-rust/2024-01-03-this-development-cycle-in-cargo-1-76.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-01-03 title = "This Development-cycle in Cargo: 1.76" author = "Ed Page" team = "The Cargo Team " diff --git a/posts/inside-rust/2024-02-04-1.76.0-prerelease.md b/posts/inside-rust/2024-02-04-1.76.0-prerelease.md index 41d5dc174..359e974e6 100644 --- a/posts/inside-rust/2024-02-04-1.76.0-prerelease.md +++ b/posts/inside-rust/2024-02-04-1.76.0-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-02-04 title = "1.76.0 pre-release testing" author = "Release automation" team = "The Release Team " diff --git a/posts/inside-rust/2024-02-13-lang-team-colead.md b/posts/inside-rust/2024-02-13-lang-team-colead.md index 8b5c306f7..1b5caab98 100644 --- a/posts/inside-rust/2024-02-13-lang-team-colead.md +++ b/posts/inside-rust/2024-02-13-lang-team-colead.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-02-13 title = "Announcing Tyler Mandry as Lang Team co-lead" author = "Niko Matsakis" team = "the lang design team " diff --git a/posts/inside-rust/2024-02-13-leadership-council-update.md b/posts/inside-rust/2024-02-13-leadership-council-update.md index 43f7f13bc..532990d03 100644 --- a/posts/inside-rust/2024-02-13-leadership-council-update.md +++ b/posts/inside-rust/2024-02-13-leadership-council-update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-02-13 title = "February 2024 Leadership Council Update" author = "Leadership Council" team = "Leadership Council " diff --git a/posts/inside-rust/2024-02-13-this-development-cycle-in-cargo-1-77.md b/posts/inside-rust/2024-02-13-this-development-cycle-in-cargo-1-77.md index f8adf5221..6c32e01eb 100644 --- a/posts/inside-rust/2024-02-13-this-development-cycle-in-cargo-1-77.md +++ b/posts/inside-rust/2024-02-13-this-development-cycle-in-cargo-1-77.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-02-13 title = "This Development-cycle in Cargo: 1.77" author = "Ed Page" team = "The Cargo Team " diff --git a/posts/inside-rust/2024-02-19-leadership-council-repr-selection.md b/posts/inside-rust/2024-02-19-leadership-council-repr-selection.md index 0059e02dd..7a38bb27d 100644 --- a/posts/inside-rust/2024-02-19-leadership-council-repr-selection.md +++ b/posts/inside-rust/2024-02-19-leadership-council-repr-selection.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-02-19 title = "Leadership Council March Representative Selections" author = "Leadership Council" team = "Leadership Council " diff --git a/posts/inside-rust/2024-03-17-1.77.0-prerelease.md b/posts/inside-rust/2024-03-17-1.77.0-prerelease.md index 72fe8ee3a..23cad0afa 100644 --- a/posts/inside-rust/2024-03-17-1.77.0-prerelease.md +++ b/posts/inside-rust/2024-03-17-1.77.0-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-03-17 title = "1.77.0 pre-release testing" author = "Release automation" team = "The Release Team " diff --git a/posts/inside-rust/2024-03-22-2024-edition-update.md b/posts/inside-rust/2024-03-22-2024-edition-update.md index 6605aac27..ebcda4dd5 100644 --- a/posts/inside-rust/2024-03-22-2024-edition-update.md +++ b/posts/inside-rust/2024-03-22-2024-edition-update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-03-22 title = "2024 Edition Update" author = "Eric Huss" team = "Edition 2024 Project Group " diff --git a/posts/inside-rust/2024-03-26-this-development-cycle-in-cargo-1.78.md b/posts/inside-rust/2024-03-26-this-development-cycle-in-cargo-1.78.md index 7f2a1f36c..a84a13f0c 100644 --- a/posts/inside-rust/2024-03-26-this-development-cycle-in-cargo-1.78.md +++ b/posts/inside-rust/2024-03-26-this-development-cycle-in-cargo-1.78.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-03-26 title = "This Development-cycle in Cargo: 1.78" author = "Ed Page" team = "The Cargo Team " diff --git a/posts/inside-rust/2024-03-27-1.77.1-prerelease.md b/posts/inside-rust/2024-03-27-1.77.1-prerelease.md index 947b8a6e5..0ecd430e2 100644 --- a/posts/inside-rust/2024-03-27-1.77.1-prerelease.md +++ b/posts/inside-rust/2024-03-27-1.77.1-prerelease.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-03-27 title = "1.77.1 pre-release testing" author = "Release automation" team = "The Release Team " diff --git a/posts/inside-rust/2024-04-01-leadership-council-repr-selection.md b/posts/inside-rust/2024-04-01-leadership-council-repr-selection.md index 73fb0e3e5..d64c30400 100644 --- a/posts/inside-rust/2024-04-01-leadership-council-repr-selection.md +++ b/posts/inside-rust/2024-04-01-leadership-council-repr-selection.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-04-01 title = "Leadership Council March Representative Selections" author = "Eric Huss" team = "Leadership Council " diff --git a/posts/inside-rust/2024-04-12-types-team-leadership.md b/posts/inside-rust/2024-04-12-types-team-leadership.md index 6892c009e..e2d4f3f5f 100644 --- a/posts/inside-rust/2024-04-12-types-team-leadership.md +++ b/posts/inside-rust/2024-04-12-types-team-leadership.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-04-12 title = "Announcing lcnr as Types Team co-lead" author = "Niko Matsakis" team = "the types team " diff --git a/posts/inside-rust/2024-05-07-announcing-project-goals.md b/posts/inside-rust/2024-05-07-announcing-project-goals.md index 27add03a5..0af54f457 100644 --- a/posts/inside-rust/2024-05-07-announcing-project-goals.md +++ b/posts/inside-rust/2024-05-07-announcing-project-goals.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-05-07 title = "Rust Project Goals Submission Period" author = "Niko Matsakis and Josh Triplett" team = "Leadership Council " diff --git a/posts/inside-rust/2024-05-07-this-development-cycle-in-cargo-1.79.md b/posts/inside-rust/2024-05-07-this-development-cycle-in-cargo-1.79.md index 65dc921c6..8d69520d1 100644 --- a/posts/inside-rust/2024-05-07-this-development-cycle-in-cargo-1.79.md +++ b/posts/inside-rust/2024-05-07-this-development-cycle-in-cargo-1.79.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-05-07 title = "This Development-cycle in Cargo: 1.79" author = "Ed Page" team = "The Cargo Team " diff --git a/posts/inside-rust/2024-05-09-rust-leads-summit.md b/posts/inside-rust/2024-05-09-rust-leads-summit.md index 8d67976f5..57f8f6098 100644 --- a/posts/inside-rust/2024-05-09-rust-leads-summit.md +++ b/posts/inside-rust/2024-05-09-rust-leads-summit.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-05-09 title = "Recap: Rust Leads Summit 2024" author = "Tyler Mandry and Eric Holk" +++ diff --git a/posts/inside-rust/2024-05-14-leadership-council-update.md b/posts/inside-rust/2024-05-14-leadership-council-update.md index 0f77f4ed6..707add30b 100644 --- a/posts/inside-rust/2024-05-14-leadership-council-update.md +++ b/posts/inside-rust/2024-05-14-leadership-council-update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-05-14 title = "May 2024 Leadership Council Update" author = "Eric Huss" team = "Leadership Council " diff --git a/posts/inside-rust/2024-05-28-launching-pad-representative.md b/posts/inside-rust/2024-05-28-launching-pad-representative.md index 1bc4a8eb9..8b5694d29 100644 --- a/posts/inside-rust/2024-05-28-launching-pad-representative.md +++ b/posts/inside-rust/2024-05-28-launching-pad-representative.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-05-28 title = "Welcome James Munns to the Leadership Council" author = "Eric Huss" team = "Leadership Council " diff --git a/posts/inside-rust/2024-06-19-this-development-cycle-in-cargo-1.80.md b/posts/inside-rust/2024-06-19-this-development-cycle-in-cargo-1.80.md index 4f4ce446a..98e3f5173 100644 --- a/posts/inside-rust/2024-06-19-this-development-cycle-in-cargo-1.80.md +++ b/posts/inside-rust/2024-06-19-this-development-cycle-in-cargo-1.80.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-06-19 title = "This Development-cycle in Cargo: 1.80" author = "Ed Page" team = "The Cargo Team " diff --git a/posts/inside-rust/2024-08-01-welcome-tc-to-the-lang-team.md b/posts/inside-rust/2024-08-01-welcome-tc-to-the-lang-team.md index 1f62a3cde..03c4de9dd 100644 --- a/posts/inside-rust/2024-08-01-welcome-tc-to-the-lang-team.md +++ b/posts/inside-rust/2024-08-01-welcome-tc-to-the-lang-team.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-08-01 title = "Welcome TC to the Rust language design team!" author = "Niko Matsakis and Tyler Mandry" team = "The Rust Lang Team " diff --git a/posts/inside-rust/2024-08-09-async-closures-call-for-testing.md b/posts/inside-rust/2024-08-09-async-closures-call-for-testing.md index f67c6a8a6..3f9cf1c9b 100644 --- a/posts/inside-rust/2024-08-09-async-closures-call-for-testing.md +++ b/posts/inside-rust/2024-08-09-async-closures-call-for-testing.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-08-09 title = "Async Closures MVP: Call for Testing!" author = "Michael Goulet" team = "The Async Working Group " diff --git a/posts/inside-rust/2024-08-15-this-development-cycle-in-cargo-1.81.md b/posts/inside-rust/2024-08-15-this-development-cycle-in-cargo-1.81.md index ca598529d..449d66c0e 100644 --- a/posts/inside-rust/2024-08-15-this-development-cycle-in-cargo-1.81.md +++ b/posts/inside-rust/2024-08-15-this-development-cycle-in-cargo-1.81.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-08-15 title = "This Development-cycle in Cargo: 1.81" author = "Ed Page" team = "The Cargo Team " diff --git a/posts/inside-rust/2024-08-20-leadership-council-repr-selection.md b/posts/inside-rust/2024-08-20-leadership-council-repr-selection.md index 31aeffef5..257b99e1f 100644 --- a/posts/inside-rust/2024-08-20-leadership-council-repr-selection.md +++ b/posts/inside-rust/2024-08-20-leadership-council-repr-selection.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-08-20 title = "Leadership Council September Representative Selections" author = "Eric Huss" team = "Leadership Council " diff --git a/posts/inside-rust/2024-08-22-embedded-wg-micro-survey.md b/posts/inside-rust/2024-08-22-embedded-wg-micro-survey.md index 2dc067d82..68d56f184 100644 --- a/posts/inside-rust/2024-08-22-embedded-wg-micro-survey.md +++ b/posts/inside-rust/2024-08-22-embedded-wg-micro-survey.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-08-22 title = "Embedded Working Group Community Micro Survey" author = "James Munns" team = "Embedded Devices Working Group " diff --git a/posts/inside-rust/2024-09-02-all-hands.md b/posts/inside-rust/2024-09-02-all-hands.md index 502ac133c..0257e464b 100644 --- a/posts/inside-rust/2024-09-02-all-hands.md +++ b/posts/inside-rust/2024-09-02-all-hands.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-09-02 title = "Save the Date: Rust All Hands 2025" author = "Mara Bos" team = "Leadership Council " diff --git a/posts/inside-rust/2024-09-06-electing-new-project-directors.md b/posts/inside-rust/2024-09-06-electing-new-project-directors.md index 5a5305dec..3802443ae 100644 --- a/posts/inside-rust/2024-09-06-electing-new-project-directors.md +++ b/posts/inside-rust/2024-09-06-electing-new-project-directors.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-09-06 title = "Electing New Project Directors 2024" author = "Leadership Council" team = "Leadership Council " diff --git a/posts/inside-rust/2024-09-06-leadership-council-update.md b/posts/inside-rust/2024-09-06-leadership-council-update.md index 8e3fbf273..dd8a2fce0 100644 --- a/posts/inside-rust/2024-09-06-leadership-council-update.md +++ b/posts/inside-rust/2024-09-06-leadership-council-update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-09-06 title = "September 2024 Leadership Council Update" author = "Eric Huss" team = "Leadership Council " diff --git a/posts/inside-rust/2024-09-26-rtn-call-for-testing.md b/posts/inside-rust/2024-09-26-rtn-call-for-testing.md index 4a382024e..46bb57489 100644 --- a/posts/inside-rust/2024-09-26-rtn-call-for-testing.md +++ b/posts/inside-rust/2024-09-26-rtn-call-for-testing.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-09-26 title = "Return type notation MVP: Call for testing!" author = "Michael Goulet" team = "The Async Working Group " diff --git a/posts/inside-rust/2024-09-27-leadership-council-repr-selection.md b/posts/inside-rust/2024-09-27-leadership-council-repr-selection.md index 091b6ccb1..98d3ffb9e 100644 --- a/posts/inside-rust/2024-09-27-leadership-council-repr-selection.md +++ b/posts/inside-rust/2024-09-27-leadership-council-repr-selection.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-09-27 title = "Leadership Council September 2024 Representative Selections" author = "Eric Huss" team = "Leadership Council " diff --git a/posts/inside-rust/2024-10-01-this-development-cycle-in-cargo-1.82.md b/posts/inside-rust/2024-10-01-this-development-cycle-in-cargo-1.82.md index e412a703e..ad134e5df 100644 --- a/posts/inside-rust/2024-10-01-this-development-cycle-in-cargo-1.82.md +++ b/posts/inside-rust/2024-10-01-this-development-cycle-in-cargo-1.82.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-10-01 title = "This Development-cycle in Cargo: 1.82" author = "Ed Page" team = "The Cargo Team " diff --git a/posts/inside-rust/2024-10-10-test-infra-oct-2024.md b/posts/inside-rust/2024-10-10-test-infra-oct-2024.md index e06cd0d77..280bf9ad3 100644 --- a/posts/inside-rust/2024-10-10-test-infra-oct-2024.md +++ b/posts/inside-rust/2024-10-10-test-infra-oct-2024.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-10-10 title = "This Month in Our Test Infra: September 2024" author = "Jieyou Xu" team = "the Bootstrap Team " diff --git a/posts/inside-rust/2024-10-31-this-development-cycle-in-cargo-1.83.md b/posts/inside-rust/2024-10-31-this-development-cycle-in-cargo-1.83.md index 2a98e963c..7c367e91b 100644 --- a/posts/inside-rust/2024-10-31-this-development-cycle-in-cargo-1.83.md +++ b/posts/inside-rust/2024-10-31-this-development-cycle-in-cargo-1.83.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-10-31 title = "This Development-cycle in Cargo: 1.83" author = "Ed Page" team = "The Cargo Team " diff --git a/posts/inside-rust/2024-11-01-compiler-team-reorg.md b/posts/inside-rust/2024-11-01-compiler-team-reorg.md index 3f6a16c92..9ebaf4ab8 100644 --- a/posts/inside-rust/2024-11-01-compiler-team-reorg.md +++ b/posts/inside-rust/2024-11-01-compiler-team-reorg.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-11-01 title = "Re-organising the compiler team and recognising our team members" author = "davidtwco and wesleywiser" team = "the compiler team " diff --git a/posts/inside-rust/2024-11-04-project-goals-2025h1-call-for-proposals.md b/posts/inside-rust/2024-11-04-project-goals-2025h1-call-for-proposals.md index 4af3c2275..498bfe8e4 100644 --- a/posts/inside-rust/2024-11-04-project-goals-2025h1-call-for-proposals.md +++ b/posts/inside-rust/2024-11-04-project-goals-2025h1-call-for-proposals.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-11-04 title = "Call for proposals: Rust 2025h1 project goals" author = "Niko Matsakis" team = "Leadership Council " diff --git a/posts/inside-rust/2024-11-04-test-infra-oct-2024-2.md b/posts/inside-rust/2024-11-04-test-infra-oct-2024-2.md index 4106f64fc..ce7a3cec2 100644 --- a/posts/inside-rust/2024-11-04-test-infra-oct-2024-2.md +++ b/posts/inside-rust/2024-11-04-test-infra-oct-2024-2.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-11-04 title = "This Month in Our Test Infra: October 2024" author = "Jieyou Xu" team = "the Bootstrap Team " diff --git a/posts/inside-rust/2024-11-12-compiler-team-new-members.md b/posts/inside-rust/2024-11-12-compiler-team-new-members.md index 9fcb1868d..65a649f56 100644 --- a/posts/inside-rust/2024-11-12-compiler-team-new-members.md +++ b/posts/inside-rust/2024-11-12-compiler-team-new-members.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-11-12 title = "Announcing four new members of the compiler team" author = "davidtwco and wesleywiser" team = "the compiler team " diff --git a/posts/inside-rust/2024-12-04-trait-system-refactor-initiative.md b/posts/inside-rust/2024-12-04-trait-system-refactor-initiative.md index 353460fed..479280d02 100644 --- a/posts/inside-rust/2024-12-04-trait-system-refactor-initiative.md +++ b/posts/inside-rust/2024-12-04-trait-system-refactor-initiative.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-12-04 title = "Rustc Trait System Refactor Initiative Update: Stabilizing `-Znext-solver=coherence`" author = "lcnr" team = "The Rustc Trait System Refactor Initiative " diff --git a/posts/inside-rust/2024-12-09-leadership-council-update.md b/posts/inside-rust/2024-12-09-leadership-council-update.md index a0f8222f7..8bfd82a4a 100644 --- a/posts/inside-rust/2024-12-09-leadership-council-update.md +++ b/posts/inside-rust/2024-12-09-leadership-council-update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-12-09 title = "December 2024 Leadership Council Update" author = "Eric Huss" team = "Leadership Council " diff --git a/posts/inside-rust/2024-12-09-test-infra-nov-2024.md b/posts/inside-rust/2024-12-09-test-infra-nov-2024.md index 29a98dc0a..bf47dad2c 100644 --- a/posts/inside-rust/2024-12-09-test-infra-nov-2024.md +++ b/posts/inside-rust/2024-12-09-test-infra-nov-2024.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-12-09 title = "This Month in Our Test Infra: November 2024" author = "Jieyou Xu" team = "the Bootstrap Team " diff --git a/posts/inside-rust/2024-12-13-this-development-cycle-in-cargo-1.84.md b/posts/inside-rust/2024-12-13-this-development-cycle-in-cargo-1.84.md index 232240578..eed76c524 100644 --- a/posts/inside-rust/2024-12-13-this-development-cycle-in-cargo-1.84.md +++ b/posts/inside-rust/2024-12-13-this-development-cycle-in-cargo-1.84.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-12-13 title = "This Development-cycle in Cargo: 1.84" author = "Ed Page" team = "The Cargo Team " diff --git a/posts/inside-rust/2024-12-17-project-director-update.md b/posts/inside-rust/2024-12-17-project-director-update.md index 8d79bf1d5..6cf54e285 100644 --- a/posts/inside-rust/2024-12-17-project-director-update.md +++ b/posts/inside-rust/2024-12-17-project-director-update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2024-12-17 title = "December 2024 Project Director Update" author = "Carol Nichols" team = "Rust Foundation Project Directors " diff --git a/posts/inside-rust/2025-01-10-test-infra-dec-2024.md b/posts/inside-rust/2025-01-10-test-infra-dec-2024.md index 7e784fc1d..fdad47bd1 100644 --- a/posts/inside-rust/2025-01-10-test-infra-dec-2024.md +++ b/posts/inside-rust/2025-01-10-test-infra-dec-2024.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2025-01-10 title = "This Month in Our Test Infra: December 2024" author = "Jieyou Xu" team = "the Bootstrap Team " diff --git a/posts/inside-rust/2025-01-17-this-development-cycle-in-cargo-1.85.md b/posts/inside-rust/2025-01-17-this-development-cycle-in-cargo-1.85.md index 03d0f9db0..06a70f7cb 100644 --- a/posts/inside-rust/2025-01-17-this-development-cycle-in-cargo-1.85.md +++ b/posts/inside-rust/2025-01-17-this-development-cycle-in-cargo-1.85.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2025-01-17 title = "This Development-cycle in Cargo: 1.85" author = "Ed Page" team = "The Cargo Team " diff --git a/posts/inside-rust/2025-01-30-project-director-update.md b/posts/inside-rust/2025-01-30-project-director-update.md index cb15b92f7..4f779e66e 100644 --- a/posts/inside-rust/2025-01-30-project-director-update.md +++ b/posts/inside-rust/2025-01-30-project-director-update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2025-01-30 title = "January 2025 Project Director Update" author = "Carol Nichols" team = "Rust Foundation Project Directors " diff --git a/posts/inside-rust/2025-02-14-leadership-council-repr-selection.md b/posts/inside-rust/2025-02-14-leadership-council-repr-selection.md index 7948180ba..7a28226e0 100644 --- a/posts/inside-rust/2025-02-14-leadership-council-repr-selection.md +++ b/posts/inside-rust/2025-02-14-leadership-council-repr-selection.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2025-02-14 title = "Leadership Council March 2025 Representative Selections" author = "Eric Huss" team = "Leadership Council " diff --git a/posts/inside-rust/2025-02-24-project-director-update.md b/posts/inside-rust/2025-02-24-project-director-update.md index b7e06ec75..6bd55048a 100644 --- a/posts/inside-rust/2025-02-24-project-director-update.md +++ b/posts/inside-rust/2025-02-24-project-director-update.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2025-02-24 title = "February 2025 Project Director Update" author = "Carol Nichols" team = "Rust Foundation Project Directors " diff --git a/posts/inside-rust/2025-02-27-relnotes-interest-group.md b/posts/inside-rust/2025-02-27-relnotes-interest-group.md index 294e69398..a398d10c2 100644 --- a/posts/inside-rust/2025-02-27-relnotes-interest-group.md +++ b/posts/inside-rust/2025-02-27-relnotes-interest-group.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2025-02-27 title = "Relnotes PR and release blog post ping group" author = "Jieyou Xu" team = "The Release Team " diff --git a/posts/inside-rust/2025-02-27-this-development-cycle-in-cargo-1.86.md b/posts/inside-rust/2025-02-27-this-development-cycle-in-cargo-1.86.md index b34de078d..eda5adec6 100644 --- a/posts/inside-rust/2025-02-27-this-development-cycle-in-cargo-1.86.md +++ b/posts/inside-rust/2025-02-27-this-development-cycle-in-cargo-1.86.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2025-02-27 title = "This Development-cycle in Cargo: 1.86" author = "Ed Page" team = "The Cargo Team " diff --git a/posts/inside-rust/2025-03-05-inferred-const-generic-arguments.md b/posts/inside-rust/2025-03-05-inferred-const-generic-arguments.md index 3fe3f05af..a546ef2d7 100644 --- a/posts/inside-rust/2025-03-05-inferred-const-generic-arguments.md +++ b/posts/inside-rust/2025-03-05-inferred-const-generic-arguments.md @@ -1,5 +1,6 @@ +++ layout = "post" +date = 2025-03-05 title = "Inferred const generic arguments: Call for Testing!" author = "BoxyUwU" team = "The Const Generics Project Group " From 039e3a62d57ff9ea3e373cb90633beefc9616450 Mon Sep 17 00:00:00 2001 From: Remo Senekowitsch Date: Sat, 8 Mar 2025 19:37:21 +0100 Subject: [PATCH 4/7] Remove date from file names of posts Without the date in the file name, there are some name collisions. These were resolved by inserting `@{counter}` before the file extension. A later commit will adjust the static site generator to strip this disambiguator again, such that permalinks stay intact. The counter is sorted by date, i.e. `foo@0.md` is older than `foo@1.md`. --- posts/{2014-12-12-1.0-Timeline.md => 1.0-Timeline.md} | 0 ...ey-2023-results.md => 2023-Rust-Annual-Survey-2023-results.md} | 0 posts/{2023-12-15-2024-Edition-CFP.md => 2024-Edition-CFP.md} | 0 ...ust-Survey-results.md => 2024-State-Of-Rust-Survey-results.md} | 0 posts/{2019-05-15-4-Years-Of-Rust.md => 4-Years-Of-Rust.md} | 0 ...19-10-29-A-call-for-blogs-2020.md => A-call-for-blogs-2020.md} | 0 ...19-09-30-Async-await-hits-beta.md => Async-await-hits-beta.md} | 0 posts/{2019-11-07-Async-await-stable.md => Async-await-stable.md} | 0 posts/{2014-11-20-Cargo.md => Cargo.md} | 0 ...cargo-clippy.md => Clippy-deprecating-feature-cargo-clippy.md} | 0 posts/{2014-12-12-Core-Team.md => Core-Team.md} | 0 posts/{2019-02-22-Core-team-changes.md => Core-team-changes.md} | 0 ...team-membership-updates.md => Core-team-membership-updates.md} | 0 ...ch-mutation-and-moves.md => Enums-match-mutation-and-moves.md} | 0 ...efox-Quantum.md => Fearless-Concurrency-In-Firefox-Quantum.md} | 0 ...2015-04-10-Fearless-Concurrency.md => Fearless-Concurrency.md} | 0 posts/{2015-02-13-Final-1.0-timeline.md => Final-1.0-timeline.md} | 0 ...8-03-GATs-stabilization-push.md => GATs-stabilization-push.md} | 0 ...n-Requirements.md => Increasing-Apple-Version-Requirements.md} | 0 ...reasing-Rusts-Reach-2018.md => Increasing-Rusts-Reach-2018.md} | 0 ...-06-27-Increasing-Rusts-Reach.md => Increasing-Rusts-Reach.md} | 0 ...el-requirements.md => Increasing-glibc-kernel-requirements.md} | 0 posts/{2016-04-19-MIR.md => MIR.md} | 0 ...Rust-Channel.md => Mozilla-IRC-Sunset-and-the-Rust-Channel.md} | 0 ...versation.md => Next-steps-for-the-foundation-conversation.md} | 0 posts/{2015-08-14-Next-year.md => Next-year.md} | 0 posts/{2024-05-07-OSPP-2024.md => OSPP-2024.md} | 0 ...20-09-03-Planning-2021-Roadmap.md => Planning-2021-Roadmap.md} | 0 ...l-Macros-in-Rust-2018.md => Procedural-Macros-in-Rust-2018.md} | 0 ...23-Project-Goals-Dec-Update.md => Project-Goals-Dec-Update.md} | 0 ...03-Project-Goals-Feb-Update.md => Project-Goals-Feb-Update.md} | 0 ...23-Project-Goals-Sep-Update.md => Project-Goals-Sep-Update.md} | 0 posts/{2024-08-12-Project-goals.md => Project-goals.md} | 0 posts/{2022-07-01-RLS-deprecation.md => RLS-deprecation.md} | 0 posts/{2015-01-09-Rust-1.0-alpha.md => Rust-1.0-alpha.md} | 0 posts/{2015-02-20-Rust-1.0-alpha2.md => Rust-1.0-alpha2.md} | 0 posts/{2015-04-03-Rust-1.0-beta.md => Rust-1.0-beta.md} | 0 posts/{2014-09-15-Rust-1.0.md => Rust-1.0@0.md} | 0 posts/{2015-05-15-Rust-1.0.md => Rust-1.0@1.md} | 0 posts/{2015-06-25-Rust-1.1.md => Rust-1.1.md} | 0 posts/{2016-07-07-Rust-1.10.md => Rust-1.10.md} | 0 posts/{2016-08-18-Rust-1.11.md => Rust-1.11.md} | 0 posts/{2016-10-20-Rust-1.12.1.md => Rust-1.12.1.md} | 0 posts/{2016-09-29-Rust-1.12.md => Rust-1.12.md} | 0 posts/{2016-11-10-Rust-1.13.md => Rust-1.13.md} | 0 posts/{2016-12-22-Rust-1.14.md => Rust-1.14.md} | 0 posts/{2017-02-09-Rust-1.15.1.md => Rust-1.15.1.md} | 0 posts/{2017-02-02-Rust-1.15.md => Rust-1.15.md} | 0 posts/{2017-03-16-Rust-1.16.md => Rust-1.16.md} | 0 posts/{2017-04-27-Rust-1.17.md => Rust-1.17.md} | 0 posts/{2017-06-08-Rust-1.18.md => Rust-1.18.md} | 0 posts/{2017-07-20-Rust-1.19.md => Rust-1.19.md} | 0 posts/{2015-08-06-Rust-1.2.md => Rust-1.2.md} | 0 posts/{2017-08-31-Rust-1.20.md => Rust-1.20.md} | 0 posts/{2017-10-12-Rust-1.21.md => Rust-1.21.md} | 0 posts/{2017-11-22-Rust-1.22.md => Rust-1.22.md} | 0 posts/{2018-01-04-Rust-1.23.md => Rust-1.23.md} | 0 posts/{2018-03-01-Rust-1.24.1.md => Rust-1.24.1.md} | 0 posts/{2018-02-15-Rust-1.24.md => Rust-1.24.md} | 0 posts/{2018-03-29-Rust-1.25.md => Rust-1.25.md} | 0 posts/{2018-05-29-Rust-1.26.1.md => Rust-1.26.1.md} | 0 posts/{2018-06-05-Rust-1.26.2.md => Rust-1.26.2.md} | 0 posts/{2018-05-10-Rust-1.26.md => Rust-1.26.md} | 0 posts/{2018-07-10-Rust-1.27.1.md => Rust-1.27.1.md} | 0 posts/{2018-07-20-Rust-1.27.2.md => Rust-1.27.2.md} | 0 posts/{2018-06-21-Rust-1.27.md => Rust-1.27.md} | 0 posts/{2018-08-02-Rust-1.28.md => Rust-1.28.md} | 0 posts/{2018-09-25-Rust-1.29.1.md => Rust-1.29.1.md} | 0 posts/{2018-10-12-Rust-1.29.2.md => Rust-1.29.2.md} | 0 posts/{2018-09-13-Rust-1.29.md => Rust-1.29.md} | 0 posts/{2015-09-17-Rust-1.3.md => Rust-1.3.md} | 0 posts/{2018-10-25-Rust-1.30.0.md => Rust-1.30.0.md} | 0 posts/{2018-11-08-Rust-1.30.1.md => Rust-1.30.1.md} | 0 ...2-06-Rust-1.31-and-rust-2018.md => Rust-1.31-and-rust-2018.md} | 0 posts/{2018-12-20-Rust-1.31.1.md => Rust-1.31.1.md} | 0 posts/{2019-01-17-Rust-1.32.0.md => Rust-1.32.0.md} | 0 posts/{2019-02-28-Rust-1.33.0.md => Rust-1.33.0.md} | 0 posts/{2019-04-11-Rust-1.34.0.md => Rust-1.34.0.md} | 0 posts/{2019-04-25-Rust-1.34.1.md => Rust-1.34.1.md} | 0 posts/{2019-05-14-Rust-1.34.2.md => Rust-1.34.2.md} | 0 posts/{2019-05-23-Rust-1.35.0.md => Rust-1.35.0.md} | 0 posts/{2019-07-04-Rust-1.36.0.md => Rust-1.36.0.md} | 0 posts/{2019-08-15-Rust-1.37.0.md => Rust-1.37.0.md} | 0 posts/{2019-09-26-Rust-1.38.0.md => Rust-1.38.0.md} | 0 posts/{2019-11-07-Rust-1.39.0.md => Rust-1.39.0.md} | 0 posts/{2015-10-29-Rust-1.4.md => Rust-1.4.md} | 0 posts/{2019-12-19-Rust-1.40.0.md => Rust-1.40.0.md} | 0 posts/{2020-01-30-Rust-1.41.0.md => Rust-1.41.0.md} | 0 posts/{2020-02-27-Rust-1.41.1.md => Rust-1.41.1.md} | 0 posts/{2020-03-12-Rust-1.42.md => Rust-1.42.md} | 0 posts/{2020-04-23-Rust-1.43.0.md => Rust-1.43.0.md} | 0 posts/{2020-06-04-Rust-1.44.0.md => Rust-1.44.0.md} | 0 posts/{2020-07-16-Rust-1.45.0.md => Rust-1.45.0.md} | 0 posts/{2020-07-30-Rust-1.45.1.md => Rust-1.45.1.md} | 0 posts/{2020-08-03-Rust-1.45.2.md => Rust-1.45.2.md} | 0 posts/{2020-08-27-Rust-1.46.0.md => Rust-1.46.0.md} | 0 posts/{2020-10-08-Rust-1.47.md => Rust-1.47.md} | 0 posts/{2020-11-19-Rust-1.48.md => Rust-1.48.md} | 0 posts/{2020-12-31-Rust-1.49.0.md => Rust-1.49.0.md} | 0 posts/{2015-12-10-Rust-1.5.md => Rust-1.5.md} | 0 posts/{2021-02-11-Rust-1.50.0.md => Rust-1.50.0.md} | 0 posts/{2021-03-25-Rust-1.51.0.md => Rust-1.51.0.md} | 0 posts/{2021-05-06-Rust-1.52.0.md => Rust-1.52.0.md} | 0 posts/{2021-05-10-Rust-1.52.1.md => Rust-1.52.1.md} | 0 posts/{2021-06-17-Rust-1.53.0.md => Rust-1.53.0.md} | 0 posts/{2021-07-29-Rust-1.54.0.md => Rust-1.54.0.md} | 0 posts/{2021-09-09-Rust-1.55.0.md => Rust-1.55.0.md} | 0 posts/{2021-10-21-Rust-1.56.0.md => Rust-1.56.0.md} | 0 posts/{2021-11-01-Rust-1.56.1.md => Rust-1.56.1.md} | 0 posts/{2021-12-02-Rust-1.57.0.md => Rust-1.57.0.md} | 0 posts/{2022-01-13-Rust-1.58.0.md => Rust-1.58.0.md} | 0 posts/{2022-01-20-Rust-1.58.1.md => Rust-1.58.1.md} | 0 posts/{2022-02-24-Rust-1.59.0.md => Rust-1.59.0.md} | 0 posts/{2016-01-21-Rust-1.6.md => Rust-1.6.md} | 0 posts/{2022-04-07-Rust-1.60.0.md => Rust-1.60.0.md} | 0 posts/{2022-05-19-Rust-1.61.0.md => Rust-1.61.0.md} | 0 posts/{2022-06-30-Rust-1.62.0.md => Rust-1.62.0.md} | 0 posts/{2022-07-19-Rust-1.62.1.md => Rust-1.62.1.md} | 0 posts/{2022-08-11-Rust-1.63.0.md => Rust-1.63.0.md} | 0 posts/{2022-09-22-Rust-1.64.0.md => Rust-1.64.0.md} | 0 posts/{2022-11-03-Rust-1.65.0.md => Rust-1.65.0.md} | 0 posts/{2022-12-15-Rust-1.66.0.md => Rust-1.66.0.md} | 0 posts/{2023-01-10-Rust-1.66.1.md => Rust-1.66.1.md} | 0 posts/{2023-01-26-Rust-1.67.0.md => Rust-1.67.0.md} | 0 posts/{2023-02-09-Rust-1.67.1.md => Rust-1.67.1.md} | 0 posts/{2023-03-09-Rust-1.68.0.md => Rust-1.68.0.md} | 0 posts/{2023-03-23-Rust-1.68.1.md => Rust-1.68.1.md} | 0 posts/{2023-03-28-Rust-1.68.2.md => Rust-1.68.2.md} | 0 posts/{2023-04-20-Rust-1.69.0.md => Rust-1.69.0.md} | 0 posts/{2016-03-02-Rust-1.7.md => Rust-1.7.md} | 0 posts/{2023-06-01-Rust-1.70.0.md => Rust-1.70.0.md} | 0 posts/{2023-07-13-Rust-1.71.0.md => Rust-1.71.0.md} | 0 posts/{2023-08-03-Rust-1.71.1.md => Rust-1.71.1.md} | 0 posts/{2023-08-24-Rust-1.72.0.md => Rust-1.72.0.md} | 0 posts/{2023-09-19-Rust-1.72.1.md => Rust-1.72.1.md} | 0 posts/{2023-10-05-Rust-1.73.0.md => Rust-1.73.0.md} | 0 posts/{2023-11-16-Rust-1.74.0.md => Rust-1.74.0.md} | 0 posts/{2023-12-07-Rust-1.74.1.md => Rust-1.74.1.md} | 0 posts/{2023-12-28-Rust-1.75.0.md => Rust-1.75.0.md} | 0 posts/{2024-02-08-Rust-1.76.0.md => Rust-1.76.0.md} | 0 posts/{2024-03-21-Rust-1.77.0.md => Rust-1.77.0.md} | 0 posts/{2024-03-28-Rust-1.77.1.md => Rust-1.77.1.md} | 0 posts/{2024-04-09-Rust-1.77.2.md => Rust-1.77.2.md} | 0 posts/{2024-05-02-Rust-1.78.0.md => Rust-1.78.0.md} | 0 posts/{2024-06-13-Rust-1.79.0.md => Rust-1.79.0.md} | 0 posts/{2016-04-14-Rust-1.8.md => Rust-1.8.md} | 0 posts/{2024-07-25-Rust-1.80.0.md => Rust-1.80.0.md} | 0 posts/{2024-08-08-Rust-1.80.1.md => Rust-1.80.1.md} | 0 posts/{2024-09-05-Rust-1.81.0.md => Rust-1.81.0.md} | 0 posts/{2024-10-17-Rust-1.82.0.md => Rust-1.82.0.md} | 0 posts/{2024-11-28-Rust-1.83.0.md => Rust-1.83.0.md} | 0 posts/{2025-01-09-Rust-1.84.0.md => Rust-1.84.0.md} | 0 posts/{2025-01-30-Rust-1.84.1.md => Rust-1.84.1.md} | 0 posts/{2025-02-20-Rust-1.85.0.md => Rust-1.85.0.md} | 0 posts/{2016-05-26-Rust-1.9.md => Rust-1.9.md} | 0 ...05-Rust-2017-Survey-Results.md => Rust-2017-Survey-Results.md} | 0 .../{2018-12-17-Rust-2018-dev-tools.md => Rust-2018-dev-tools.md} | 0 ...21-Rust-2021-public-testing.md => Rust-2021-public-testing.md} | 0 ...27-Rust-2024-public-testing.md => Rust-2024-public-testing.md} | 0 ...24-Rust-Once-Run-Everywhere.md => Rust-Once-Run-Everywhere.md} | 0 .../{2017-07-05-Rust-Roadmap-Update.md => Rust-Roadmap-Update.md} | 0 posts/{2022-02-15-Rust-Survey-2021.md => Rust-Survey-2021.md} | 0 ...07-Rust-Survey-2023-Results.md => Rust-Survey-2023-Results.md} | 0 ...icipates-in-GSoC-2024.md => Rust-participates-in-GSoC-2024.md} | 0 ...icipates-in-GSoC-2025.md => Rust-participates-in-GSoC-2025.md} | 0 posts/{2018-11-27-Rust-survey-2018.md => Rust-survey-2018.md} | 0 posts/{2020-04-17-Rust-survey-2019.md => Rust-survey-2019.md} | 0 posts/{2018-05-15-Rust-turns-three.md => Rust-turns-three.md} | 0 posts/{2020-05-07-Rust.1.43.1.md => Rust.1.43.1.md} | 0 posts/{2020-06-18-Rust.1.44.1.md => Rust.1.44.1.md} | 0 posts/{2023-05-29-RustConf.md => RustConf.md} | 0 posts/{2019-10-15-Rustup-1.20.0.md => Rustup-1.20.0.md} | 0 posts/{2020-07-06-Rustup-1.22.0.md => Rustup-1.22.0.md} | 0 posts/{2020-07-08-Rustup-1.22.1.md => Rustup-1.22.1.md} | 0 posts/{2020-11-27-Rustup-1.23.0.md => Rustup-1.23.0.md} | 0 posts/{2021-04-27-Rustup-1.24.0.md => Rustup-1.24.0.md} | 0 posts/{2021-04-29-Rustup-1.24.1.md => Rustup-1.24.1.md} | 0 posts/{2021-05-17-Rustup-1.24.2.md => Rustup-1.24.2.md} | 0 posts/{2021-06-08-Rustup-1.24.3.md => Rustup-1.24.3.md} | 0 posts/{2022-07-11-Rustup-1.25.0.md => Rustup-1.25.0.md} | 0 posts/{2022-07-12-Rustup-1.25.1.md => Rustup-1.25.1.md} | 0 posts/{2023-02-01-Rustup-1.25.2.md => Rustup-1.25.2.md} | 0 posts/{2023-04-25-Rustup-1.26.0.md => Rustup-1.26.0.md} | 0 posts/{2024-03-11-Rustup-1.27.0.md => Rustup-1.27.0.md} | 0 posts/{2024-05-06-Rustup-1.27.1.md => Rustup-1.27.1.md} | 0 posts/{2025-03-02-Rustup-1.28.0.md => Rustup-1.28.0.md} | 0 posts/{2025-03-04-Rustup-1.28.1.md => Rustup-1.28.1.md} | 0 ...9-21-Scheduling-2021-Roadmap.md => Scheduling-2021-Roadmap.md} | 0 ...urity-advisory-for-cargo.md => Security-advisory-for-cargo.md} | 0 ...-Security-advisory-for-std.md => Security-advisory-for-std.md} | 0 posts/{2019-05-13-Security-advisory.md => Security-advisory.md} | 0 ...8-10-Shape-of-errors-to-come.md => Shape-of-errors-to-come.md} | 0 posts/{2014-10-30-Stability.md => Stability.md} | 0 ...-State-of-Rust-Survey-2016.md => State-of-Rust-Survey-2016.md} | 0 ...he-2018-Rust-Event-Lineup.md => The-2018-Rust-Event-Lineup.md} | 0 ...he-2019-Rust-Event-Lineup.md => The-2019-Rust-Event-Lineup.md} | 0 posts/{2016-12-15-Underhanded-Rust.md => Underhanded-Rust.md} | 0 ...e-on-crates.io-incident.md => Update-on-crates.io-incident.md} | 0 ...23-05-09-Updating-musl-targets.md => Updating-musl-targets.md} | 0 posts/{2024-02-26-Windows-7.md => Windows-7.md} | 0 ...-look-for-rust-lang-org.md => a-new-look-for-rust-lang-org.md} | 0 posts/{2018-04-06-all-hands.md => all-hands.md} | 0 ...-01-09-android-ndk-update-r25.md => android-ndk-update-r25.md} | 0 ...-directors.md => announcing-the-new-rust-project-directors.md} | 0 ...-annual-survey-2024-launch.md => annual-survey-2024-launch.md} | 0 ...2-21-async-fn-rpit-in-traits.md => async-fn-rpit-in-traits.md} | 0 ...ision-doc-shiny-future.md => async-vision-doc-shiny-future.md} | 0 posts/{2021-03-18-async-vision-doc.md => async-vision-doc.md} | 0 ...dges-and-23k-keywords.md => broken-badges-and-23k-keywords.md} | 0 ...admap-blogposts.md => call-for-rust-2019-roadmap-blogposts.md} | 0 ...2023-12-11-cargo-cache-cleaning.md => cargo-cache-cleaning.md} | 0 posts/{2022-09-14-cargo-cves.md => cargo-cves.md} | 0 posts/{2016-05-05-cargo-pillars.md => cargo-pillars.md} | 0 ...-changes-in-the-core-team.md => changes-in-the-core-team@0.md} | 0 ...-changes-in-the-core-team.md => changes-in-the-core-team@1.md} | 0 posts/{2024-05-06-check-cfg.md => check-cfg.md} | 0 ...2023-08-29-committing-lockfiles.md => committing-lockfiles.md} | 0 posts/{2016-07-25-conf-lineup.md => conf-lineup@0.md} | 0 posts/{2017-07-18-conf-lineup.md => conf-lineup@1.md} | 0 posts/{2020-01-31-conf-lineup.md => conf-lineup@2.md} | 0 ...safety-rule-revision.md => const-eval-safety-rule-revision.md} | 0 ...2-26-const-generics-mvp-beta.md => const-generics-mvp-beta.md} | 0 posts/{2024-08-26-council-survey.md => council-survey.md} | 0 ...io-development-update.md => crates-io-development-update@0.md} | 0 ...io-development-update.md => crates-io-development-update@1.md} | 0 ...rates-io-download-changes.md => crates-io-download-changes.md} | 0 ...anonical-downloads.md => crates-io-non-canonical-downloads.md} | 0 ...tes-io-security-advisory.md => crates-io-security-advisory.md} | 0 ...tes-io-snapshot-branches.md => crates-io-snapshot-branches.md} | 0 ...-02-06-crates-io-status-codes.md => crates-io-status-codes.md} | 0 ...rates-io-usage-policy-rfc.md => crates-io-usage-policy-rfc.md} | 0 posts/{2021-11-01-cve-2021-42574.md => cve-2021-42574.md} | 0 posts/{2022-01-20-cve-2022-21658.md => cve-2022-21658.md} | 0 posts/{2022-03-08-cve-2022-24713.md => cve-2022-24713.md} | 0 posts/{2023-01-10-cve-2022-46176.md => cve-2022-46176.md} | 0 posts/{2023-08-03-cve-2023-38497.md => cve-2023-38497.md} | 0 posts/{2024-04-09-cve-2024-24576.md => cve-2024-24576.md} | 0 posts/{2024-09-04-cve-2024-43402.md => cve-2024-43402.md} | 0 ...pt-into-fewer-targets.md => docs-rs-opt-into-fewer-targets.md} | 0 posts/{2021-05-11-edition-2021.md => edition-2021.md} | 0 ...new-project-directors.md => electing-new-project-directors.md} | 0 ...nabling-rust-lld-on-linux.md => enabling-rust-lld-on-linux.md} | 0 .../{2020-06-10-event-lineup-update.md => event-lineup-update.md} | 0 posts/{2020-05-15-five-years-of-rust.md => five-years-of-rust.md} | 0 posts/{2022-10-28-gats-stabilization.md => gats-stabilization.md} | 0 ...iler-for-rust.md => gccrs-an-alternative-compiler-for-rust.md} | 0 ...overnance-wg-announcement.md => governance-wg-announcement.md} | 0 posts/{2024-11-07-gsoc-2024-results.md => gsoc-2024-results.md} | 0 ...c-2024-selected-projects.md => gsoc-2024-selected-projects.md} | 0 .../{2018-10-30-help-test-rust-2018.md => help-test-rust-2018.md} | 0 posts/{2024-03-30-i128-layout-update.md => i128-layout-update.md} | 0 ...2017-09-18-impl-future-for-rust.md => impl-future-for-rust.md} | 0 ...05-impl-trait-capture-rules.md => impl-trait-capture-rules.md} | 0 ...kens-for-crates-io.md => improved-api-tokens-for-crates-io.md} | 0 posts/{2016-09-08-incremental.md => incremental.md} | 0 posts/{2019-10-03-inside-rust-blog.md => inside-rust-blog.md} | 0 .../{2020-07-27-1.45.1-prerelease.md => 1.45.1-prerelease.md} | 0 .../{2020-08-24-1.46.0-prerelease.md => 1.46.0-prerelease.md} | 0 .../{2020-10-07-1.47.0-prerelease-2.md => 1.47.0-prerelease-2.md} | 0 .../{2020-10-06-1.47.0-prerelease.md => 1.47.0-prerelease.md} | 0 .../{2020-11-16-1.48.0-prerelease.md => 1.48.0-prerelease.md} | 0 .../{2020-12-29-1.49.0-prerelease.md => 1.49.0-prerelease.md} | 0 .../{2021-02-09-1.50.0-prerelease.md => 1.50.0-prerelease.md} | 0 .../{2021-03-23-1.51.0-prerelease.md => 1.51.0-prerelease.md} | 0 .../{2021-05-04-1.52.0-prerelease.md => 1.52.0-prerelease.md} | 0 .../{2021-06-15-1.53.0-prelease.md => 1.53.0-prelease.md} | 0 .../{2021-07-26-1.54.0-prerelease.md => 1.54.0-prerelease.md} | 0 .../{2021-09-07-1.55.0-prerelease.md => 1.55.0-prerelease.md} | 0 .../{2021-10-18-1.56.0-prerelease.md => 1.56.0-prerelease.md} | 0 .../{2021-11-30-1.57.0-prerelease.md => 1.57.0-prerelease.md} | 0 .../{2022-01-11-1.58.0-prerelease.md => 1.58.0-prerelease.md} | 0 .../{2022-02-22-1.59.0-prerelease.md => 1.59.0-prerelease.md} | 0 .../{2022-04-04-1.60.0-prerelease.md => 1.60.0-prerelease.md} | 0 .../{2022-05-16-1.61.0-prerelease.md => 1.61.0-prerelease.md} | 0 .../{2022-06-28-1.62.0-prerelease.md => 1.62.0-prerelease.md} | 0 .../{2022-07-16-1.62.1-prerelease.md => 1.62.1-prerelease.md} | 0 .../{2022-08-09-1.63.0-prerelease.md => 1.63.0-prerelease.md} | 0 .../{2022-09-19-1.64.0-prerelease.md => 1.64.0-prerelease.md} | 0 .../{2022-10-31-1.65.0-prerelease.md => 1.65.0-prerelease.md} | 0 .../{2022-12-12-1.66.0-prerelease.md => 1.66.0-prerelease.md} | 0 .../{2023-01-25-1.67.0-prerelease.md => 1.67.0-prerelease.md} | 0 .../{2023-02-07-1.67.1-prerelease.md => 1.67.1-prerelease.md} | 0 .../{2023-03-06-1.68.0-prerelease.md => 1.68.0-prerelease.md} | 0 .../{2023-03-20-1.68.1-prerelease.md => 1.68.1-prerelease.md} | 0 .../{2023-03-27-1.68.2-prerelease.md => 1.68.2-prerelease.md} | 0 .../{2023-04-17-1.69.0-prerelease.md => 1.69.0-prerelease.md} | 0 .../{2023-05-29-1.70.0-prerelease.md => 1.70.0-prerelease.md} | 0 .../{2023-07-10-1.71.0-prerelease.md => 1.71.0-prerelease.md} | 0 .../{2023-08-01-1.71.1-prerelease.md => 1.71.1-prerelease.md} | 0 .../{2023-08-21-1.72.0-prerelease.md => 1.72.0-prerelease.md} | 0 .../{2023-09-14-1.72.1-prerelease.md => 1.72.1-prerelease.md} | 0 .../{2023-10-03-1.73.0-prerelease.md => 1.73.0-prerelease.md} | 0 .../{2023-11-13-1.74.0-prerelease.md => 1.74.0-prerelease.md} | 0 .../{2023-12-05-1.74.1-prerelease.md => 1.74.1-prerelease.md} | 0 .../{2023-12-21-1.75.0-prerelease.md => 1.75.0-prerelease.md} | 0 .../{2024-02-04-1.76.0-prerelease.md => 1.76.0-prerelease.md} | 0 .../{2024-03-17-1.77.0-prerelease.md => 1.77.0-prerelease.md} | 0 .../{2024-03-27-1.77.1-prerelease.md => 1.77.1-prerelease.md} | 0 .../{2024-03-22-2024-edition-update.md => 2024-edition-update.md} | 0 ...-Improvements.md => AsyncAwait-Not-Send-Error-Improvements.md} | 0 ...syncAwait-WG-Focus-Issues.md => AsyncAwait-WG-Focus-Issues.md} | 0 .../{2020-10-16-Backlog-Bonanza.md => Backlog-Bonanza.md} | 0 posts/inside-rust/{2022-04-12-CTCFT-april.md => CTCFT-april.md} | 0 .../{2022-02-11-CTCFT-february.md => CTCFT-february.md} | 0 posts/inside-rust/{2022-03-16-CTCFT-march.md => CTCFT-march.md} | 0 posts/inside-rust/{2022-05-10-CTCFT-may.md => CTCFT-may.md} | 0 ...-Cleanup-Crew-ICE-breakers.md => Cleanup-Crew-ICE-breakers.md} | 0 ...ves-plugin-interface.md => Clippy-removes-plugin-interface.md} | 0 ...-05-26-Concluding-events-mods.md => Concluding-events-mods.md} | 0 ...2020-10-23-Core-team-membership.md => Core-team-membership.md} | 0 .../{2020-01-14-Goverance-wg-cfp.md => Goverance-wg-cfp.md} | 0 .../inside-rust/{2020-02-11-Goverance-wg.md => Goverance-wg@0.md} | 0 .../inside-rust/{2020-02-27-Goverance-wg.md => Goverance-wg@1.md} | 0 ...20-04-14-Governance-WG-updated.md => Governance-WG-updated.md} | 0 .../inside-rust/{2020-04-23-Governance-wg.md => Governance-wg.md} | 0 ...it-fix-and-more.md => Introducing-cargo-audit-fix-and-more.md} | 0 ...-cargo-audit-0.9.md => Keeping-secure-with-cargo-audit-0.9.md} | 0 .../{2019-10-22-LLVM-ICE-breakers.md => LLVM-ICE-breakers.md} | 0 .../{2019-10-11-Lang-Team-Meeting.md => Lang-Team-Meeting.md} | 0 ...2021-10-08-Lang-team-Oct-update.md => Lang-team-Oct-update.md} | 0 ...21-07-12-Lang-team-july-update.md => Lang-team-july-update.md} | 0 .../{2019-11-22-Lang-team-meeting.md => Lang-team-meeting.md} | 0 ...ship-Std-Implementation.md => Ownership-Std-Implementation.md} | 0 .../{2020-09-29-Portable-SIMD-PG.md => Portable-SIMD-PG.md} | 0 ...06-Splitting-const-generics.md => Splitting-const-generics.md} | 0 ...ustc_codegen_cranelift.md => Using-rustc_codegen_cranelift.md} | 0 posts/inside-rust/{2019-09-25-Welcome.md => Welcome.md} | 0 ....md => What-the-error-handling-project-group-is-working-on.md} | 0 ...> What-the-error-handling-project-group-is-working-towards.md} | 0 ...26-aaron-hill-compiler-team.md => aaron-hill-compiler-team.md} | 0 ...3-18-all-hands-retrospective.md => all-hands-retrospective.md} | 0 posts/inside-rust/{2024-09-02-all-hands.md => all-hands.md} | 0 ...07-announcing-project-goals.md => announcing-project-goals.md} | 0 ...nnouncing-the-docsrs-team.md => announcing-the-docsrs-team.md} | 0 ...g-the-rust-style-team.md => announcing-the-rust-style-team.md} | 0 .../{2023-05-09-api-token-scopes.md => api-token-scopes.md} | 0 .../{2022-04-15-apr-steering-cycle.md => apr-steering-cycle.md} | 0 ...res-call-for-testing.md => async-closures-call-for-testing.md} | 0 ...-async-fn-in-trait-nightly.md => async-fn-in-trait-nightly.md} | 0 .../inside-rust/{2022-02-03-async-in-2022.md => async-in-2022.md} | 0 ...2-18-bisecting-rust-compiler.md => bisecting-rust-compiler.md} | 0 ...d => boxyuwu-leseulartichaut-the8472-compiler-contributors.md} | 0 ...2023-08-24-cargo-config-merging.md => cargo-config-merging.md} | 0 .../inside-rust/{2020-01-10-cargo-in-2020.md => cargo-in-2020.md} | 0 .../{2023-04-06-cargo-new-members.md => cargo-new-members.md} | 0 .../{2023-05-01-cargo-postmortem.md => cargo-postmortem.md} | 0 ...23-01-30-cargo-sparse-protocol.md => cargo-sparse-protocol.md} | 0 .../{2022-03-31-cargo-team-changes.md => cargo-team-changes.md} | 0 ...14-changes-to-compiler-team.md => changes-to-compiler-team.md} | 0 ...1-19-changes-to-rustdoc-team.md => changes-to-rustdoc-team.md} | 0 ...30-changes-to-x-py-defaults.md => changes-to-x-py-defaults.md} | 0 ...ors.md => cjgillot-and-nadrieril-for-compiler-contributors.md} | 0 .../{2022-07-13-clippy-team-changes.md => clippy-team-changes.md} | 0 ...022-midyear-report.md => compiler-team-2022-midyear-report.md} | 0 ...ler-team-ambitions-2022.md => compiler-team-ambitions-2022.md} | 0 ...il-steering-cycle.md => compiler-team-april-steering-cycle.md} | 0 ...t-steering-cycle.md => compiler-team-august-steering-cycle.md} | 0 ...-feb-steering-cycle.md => compiler-team-feb-steering-cycle.md} | 0 ...uly-steering-cycle.md => compiler-team-july-steering-cycle.md} | 0 ...une-steering-cycle.md => compiler-team-june-steering-cycle.md} | 0 ...-10-15-compiler-team-meeting.md => compiler-team-meeting@0.md} | 0 ...-10-21-compiler-team-meeting.md => compiler-team-meeting@1.md} | 0 ...-10-30-compiler-team-meeting.md => compiler-team-meeting@2.md} | 0 ...-11-07-compiler-team-meeting.md => compiler-team-meeting@3.md} | 0 ...-11-11-compiler-team-meeting.md => compiler-team-meeting@4.md} | 0 ...-11-19-compiler-team-meeting.md => compiler-team-meeting@5.md} | 0 ...-02-07-compiler-team-meeting.md => compiler-team-meeting@6.md} | 0 ...-compiler-team-new-members.md => compiler-team-new-members.md} | 0 .../{2024-11-01-compiler-team-reorg.md => compiler-team-reorg.md} | 0 ...-steering-cycle.md => compiler-team-sep-oct-steering-cycle.md} | 0 .../{2019-11-25-const-if-match.md => const-if-match.md} | 0 ...02-const-prop-on-by-default.md => const-prop-on-by-default.md} | 0 ...-content-delivery-networks.md => content-delivery-networks.md} | 0 .../{2020-05-27-contributor-survey.md => contributor-survey.md} | 0 .../{2021-05-04-core-team-update.md => core-team-update.md} | 0 .../{2021-04-03-core-team-updates.md => core-team-updates.md} | 0 posts/inside-rust/{2023-10-23-coroutines.md => coroutines.md} | 0 ...-crates-io-incident-report.md => crates-io-incident-report.md} | 0 ...s-io-malware-postmortem.md => crates-io-malware-postmortem.md} | 0 ...2023-07-21-crates-io-postmortem.md => crates-io-postmortem.md} | 0 ...compiler-members.md => davidtwco-jackhuey-compiler-members.md} | 0 .../{2022-08-16-diagnostic-effort.md => diagnostic-effort.md} | 0 ...23-02-08-dns-outage-portmortem.md => dns-outage-portmortem.md} | 0 ...24-docsrs-outage-postmortem.md => docsrs-outage-postmortem.md} | 0 ...ontributors.md => ecstatic-morse-for-compiler-contributors.md} | 0 ...new-project-directors.md => electing-new-project-directors.md} | 0 ...22-embedded-wg-micro-survey.md => embedded-wg-micro-survey.md} | 0 ...dling-wg-announcement.md => error-handling-wg-announcement.md} | 0 ...-evaluating-github-actions.md => evaluating-github-actions.md} | 0 ...he-rust-compiler.md => exploring-pgo-for-the-rust-compiler.md} | 0 ...g-team-design-meetings.md => feb-lang-team-design-meetings.md} | 0 .../{2022-02-17-feb-steering-cycle.md => feb-steering-cycle.md} | 0 ...-ffi-unwind-design-meeting.md => ffi-unwind-design-meeting.md} | 0 .../{2021-01-26-ffi-unwind-longjmp.md => ffi-unwind-longjmp.md} | 0 ...e-moderation-issue.md => follow-up-on-the-moderation-issue.md} | 0 ...2-23-formatting-the-compiler.md => formatting-the-compiler.md} | 0 .../{2020-03-27-goodbye-docs-team.md => goodbye-docs-team.md} | 0 .../{2019-11-13-goverance-wg-cfp.md => goverance-wg-cfp.md} | 0 ...23-02-22-governance-reform-rfc.md => governance-reform-rfc.md} | 0 .../{2022-05-19-governance-update.md => governance-update@0.md} | 0 .../{2022-10-06-governance-update.md => governance-update@1.md} | 0 ...-12-03-governance-wg-meeting.md => governance-wg-meeting@0.md} | 0 ...-12-10-governance-wg-meeting.md => governance-wg-meeting@1.md} | 0 ...-12-20-governance-wg-meeting.md => governance-wg-meeting@2.md} | 0 .../inside-rust/{2020-03-17-governance-wg.md => governance-wg.md} | 0 posts/inside-rust/{2019-12-04-ide-future.md => ide-future.md} | 0 .../{2022-04-19-imposter-syndrome.md => imposter-syndrome.md} | 0 ...ation.md => in-response-to-the-moderation-team-resignation.md} | 0 ...t-generic-arguments.md => inferred-const-generic-arguments.md} | 0 ...-team-leadership-change.md => infra-team-leadership-change.md} | 0 .../{2019-10-15-infra-team-meeting.md => infra-team-meeting@0.md} | 0 .../{2019-10-22-infra-team-meeting.md => infra-team-meeting@1.md} | 0 .../{2019-10-29-infra-team-meeting.md => infra-team-meeting@2.md} | 0 .../{2019-11-06-infra-team-meeting.md => infra-team-meeting@3.md} | 0 .../{2019-11-18-infra-team-meeting.md => infra-team-meeting@4.md} | 0 .../{2019-11-19-infra-team-meeting.md => infra-team-meeting@5.md} | 0 .../{2019-12-11-infra-team-meeting.md => infra-team-meeting@6.md} | 0 .../{2019-12-20-infra-team-meeting.md => infra-team-meeting@7.md} | 0 ...25-intro-rustc-self-profile.md => intro-rustc-self-profile.md} | 0 .../{2022-01-18-jan-steering-cycle.md => jan-steering-cycle.md} | 0 ...-team.md => jasper-and-wiser-full-members-of-compiler-team.md} | 0 .../{2021-04-20-jsha-rustdoc-member.md => jsha-rustdoc-member.md} | 0 ...tgeibel-crates-io-co-lead.md => jtgeibel-crates-io-co-lead.md} | 0 .../{2022-06-03-jun-steering-cycle.md => jun-steering-cycle.md} | 0 ...argo-audit-0.18.md => keeping-secure-with-cargo-audit-0.18.md} | 0 ...t-feb-2023.md => keyword-generics-progress-report-feb-2023.md} | 0 .../{2022-07-27-keyword-generics.md => keyword-generics.md} | 0 .../inside-rust/{2023-02-14-lang-advisors.md => lang-advisors.md} | 0 .../{2022-04-04-lang-roadmap-2024.md => lang-roadmap-2024.md} | 0 ...2021-04-17-lang-team-apr-update.md => lang-team-apr-update.md} | 0 ...-04-06-lang-team-april-update.md => lang-team-april-update.md} | 0 ...2021-08-04-lang-team-aug-update.md => lang-team-aug-update.md} | 0 .../{2024-02-13-lang-team-colead.md => lang-team-colead.md} | 0 ...generics.md => lang-team-design-meeting-min-const-generics.md} | 0 ...esign-meeting-update.md => lang-team-design-meeting-update.md} | 0 ...n-meeting-wf-types.md => lang-team-design-meeting-wf-types.md} | 0 ...ang-team-design-meetings.md => lang-team-design-meetings@0.md} | 0 ...ang-team-design-meetings.md => lang-team-design-meetings@1.md} | 0 ...ang-team-design-meetings.md => lang-team-design-meetings@2.md} | 0 ...21-02-03-lang-team-feb-update.md => lang-team-feb-update@0.md} | 0 ...22-02-18-lang-team-feb-update.md => lang-team-feb-update@1.md} | 0 ...21-03-03-lang-team-mar-update.md => lang-team-mar-update@0.md} | 0 ...22-03-09-lang-team-mar-update.md => lang-team-mar-update@1.md} | 0 ...-meetings-rescheduled.md => lang-team-meetings-rescheduled.md} | 0 ...g-team-membership-update.md => lang-team-membership-update.md} | 0 ...team-path-to-membership.md => lang-team-path-to-membership.md} | 0 ...hing-pad-representative.md => launching-pad-representative.md} | 0 ...ership-changes.md => leadership-council-membership-changes.md} | 0 ...l-repr-selection.md => leadership-council-repr-selection@0.md} | 0 ...l-repr-selection.md => leadership-council-repr-selection@1.md} | 0 ...l-repr-selection.md => leadership-council-repr-selection@2.md} | 0 ...l-repr-selection.md => leadership-council-repr-selection@3.md} | 0 ...l-repr-selection.md => leadership-council-repr-selection@4.md} | 0 ...eadership-council-update.md => leadership-council-update@0.md} | 0 ...eadership-council-update.md => leadership-council-update@1.md} | 0 ...eadership-council-update.md => leadership-council-update@2.md} | 0 ...eadership-council-update.md => leadership-council-update@3.md} | 0 ...eadership-council-update.md => leadership-council-update@4.md} | 0 ...eadership-council-update.md => leadership-council-update@5.md} | 0 ...-08-25-leadership-initiatives.md => leadership-initiatives.md} | 0 .../{2022-04-20-libs-aspirations.md => libs-aspirations.md} | 0 ...rs-the8472-kodraus.md => libs-contributors-the8472-kodraus.md} | 0 .../{2022-04-18-libs-contributors.md => libs-contributors@0.md} | 0 .../{2022-08-10-libs-contributors.md => libs-contributors@1.md} | 0 posts/inside-rust/{2022-11-29-libs-member.md => libs-member.md} | 0 .../{2020-06-29-lto-improvements.md => lto-improvements.md} | 0 .../{2022-03-11-mar-steering-cycle.md => mar-steering-cycle.md} | 0 .../{2020-06-08-new-inline-asm.md => new-inline-asm.md} | 0 ...the-core-team-agenda.md => opening-up-the-core-team-agenda.md} | 0 ...-02-27-pietro-joins-core-team.md => pietro-joins-core-team.md} | 0 ...0-25-planning-meeting-update.md => planning-meeting-update.md} | 0 .../{2021-03-04-planning-rust-2021.md => planning-rust-2021.md} | 0 ...compiler-team-co-lead.md => pnkfelix-compiler-team-co-lead.md} | 0 .../{2023-10-06-polonius-update.md => polonius-update.md} | 0 ...-project-director-nominees.md => project-director-nominees.md} | 0 ...17-project-director-update.md => project-director-update@0.md} | 0 ...30-project-director-update.md => project-director-update@1.md} | 0 ...24-project-director-update.md => project-director-update@2.md} | 0 ...or-proposals.md => project-goals-2025h1-call-for-proposals.md} | 0 ...ovements.md => recent-future-pattern-matching-improvements.md} | 0 ...2-27-relnotes-interest-group.md => relnotes-interest-group.md} | 0 .../{2020-03-13-rename-rustc-guide.md => rename-rustc-guide.md} | 0 ...8-02-rotating-compiler-leads.md => rotating-compiler-leads.md} | 0 ...2024-09-26-rtn-call-for-testing.md => rtn-call-for-testing.md} | 0 ...o-github-actions.md => rust-ci-is-moving-to-github-actions.md} | 0 .../{2024-05-09-rust-leads-summit.md => rust-leads-summit.md} | 0 ...26-rustc-dev-guide-overview.md => rustc-dev-guide-overview.md} | 0 ...troduction.md => rustc-learning-working-group-introduction.md} | 0 ...rmance-improvements.md => rustdoc-performance-improvements.md} | 0 ...1.24.0-incident-report.md => rustup-1.24.0-incident-report.md} | 0 ...-02-15-shrinkmem-rustc-sprint.md => shrinkmem-rustc-sprint.md} | 0 ...ource-based-code-coverage.md => source-based-code-coverage.md} | 0 posts/inside-rust/{2023-11-15-spec-vision.md => spec-vision.md} | 0 ...zing-async-fn-in-trait.md => stabilizing-async-fn-in-trait.md} | 0 ...bilizing-intra-doc-links.md => stabilizing-intra-doc-links.md} | 0 .../{2022-06-21-survey-2021-report.md => survey-2021-report.md} | 0 .../{2020-03-19-terminating-rust.md => terminating-rust.md} | 0 .../{2025-01-10-test-infra-dec-2024.md => test-infra-dec-2024.md} | 0 .../{2024-12-09-test-infra-nov-2024.md => test-infra-nov-2024.md} | 0 ...24-11-04-test-infra-oct-2024-2.md => test-infra-oct-2024-2.md} | 0 .../{2024-10-10-test-infra-oct-2024.md => test-infra-oct-2024.md} | 0 ...e-in-cargo-1-76.md => this-development-cycle-in-cargo-1-76.md} | 0 ...e-in-cargo-1-77.md => this-development-cycle-in-cargo-1-77.md} | 0 ...e-in-cargo-1.78.md => this-development-cycle-in-cargo-1.78.md} | 0 ...e-in-cargo-1.79.md => this-development-cycle-in-cargo-1.79.md} | 0 ...e-in-cargo-1.80.md => this-development-cycle-in-cargo-1.80.md} | 0 ...e-in-cargo-1.81.md => this-development-cycle-in-cargo-1.81.md} | 0 ...e-in-cargo-1.82.md => this-development-cycle-in-cargo-1.82.md} | 0 ...e-in-cargo-1.83.md => this-development-cycle-in-cargo-1.83.md} | 0 ...e-in-cargo-1.84.md => this-development-cycle-in-cargo-1.84.md} | 0 ...e-in-cargo-1.85.md => this-development-cycle-in-cargo-1.85.md} | 0 ...e-in-cargo-1.86.md => this-development-cycle-in-cargo-1.86.md} | 0 ...olicy-draft-feedback.md => trademark-policy-draft-feedback.md} | 0 ...factor-initiative.md => trait-system-refactor-initiative@0.md} | 0 ...factor-initiative.md => trait-system-refactor-initiative@1.md} | 0 ...factor-initiative.md => trait-system-refactor-initiative@2.md} | 0 .../{2020-03-28-traits-sprint-1.md => traits-sprint-1.md} | 0 .../{2020-05-18-traits-sprint-2.md => traits-sprint-2.md} | 0 .../{2020-07-17-traits-sprint-3.md => traits-sprint-3.md} | 0 .../inside-rust/{2020-03-13-twir-new-lead.md => twir-new-lead.md} | 0 ...24-04-12-types-team-leadership.md => types-team-leadership.md} | 0 ...sign-meeting.md => upcoming-compiler-team-design-meeting@0.md} | 0 ...sign-meeting.md => upcoming-compiler-team-design-meeting@1.md} | 0 ...gn-meetings.md => upcoming-compiler-team-design-meetings@0.md} | 0 ...gn-meetings.md => upcoming-compiler-team-design-meetings@1.md} | 0 ...gn-meetings.md => upcoming-compiler-team-design-meetings@2.md} | 0 ...gn-meetings.md => upcoming-compiler-team-design-meetings@3.md} | 0 ...gn-meetings.md => upcoming-compiler-team-design-meetings@4.md} | 0 ...s-evaluation.md => update-on-the-github-actions-evaluation.md} | 0 ...20-05-26-website-retrospective.md => website-retrospective.md} | 0 ...come-tc-to-the-lang-team.md => welcome-tc-to-the-lang-team.md} | 0 .../{2019-12-20-wg-learning-update.md => wg-learning-update.md} | 0 ...indows-notification-group.md => windows-notification-group.md} | 0 ...ng-leadership-council.md => introducing-leadership-council.md} | 0 posts/{2017-03-02-lang-ergonomics.md => lang-ergonomics.md} | 0 ...-rusts-future.md => laying-the-foundation-for-rusts-future.md} | 0 posts/{2017-05-05-libz-blitz.md => libz-blitz.md} | 0 ...20-12-11-lock-poisoning-survey.md => lock-poisoning-survey.md} | 0 ...icious-crate-rustdecimal.md => malicious-crate-rustdecimal.md} | 0 ...04-mdbook-security-advisory.md => mdbook-security-advisory.md} | 0 ...gposts.md => new-years-rust-a-call-for-community-blogposts.md} | 0 posts/{2022-08-05-nll-by-default.md => nll-by-default.md} | 0 posts/{2019-11-01-nll-hard-errors.md => nll-hard-errors.md} | 0 posts/{2023-11-09-parallel-rustc.md => parallel-rustc.md} | 0 ...16-project-goals-nov-update.md => project-goals-nov-update.md} | 0 ...31-project-goals-oct-update.md => project-goals-oct-update.md} | 0 ...le-targets.md => reducing-support-for-32-bit-apple-targets.md} | 0 posts/{2023-07-05-regex-1.9.md => regex-1.9.md} | 0 posts/{2020-10-20-regression-labels.md => regression-labels.md} | 0 posts/{2017-02-06-roadmap.md => roadmap@0.md} | 0 posts/{2018-03-12-roadmap.md => roadmap@1.md} | 0 posts/{2019-04-23-roadmap.md => roadmap@2.md} | 0 posts/{2025-01-22-rust-2024-beta.md => rust-2024-beta.md} | 0 ...analyzer-joins-rust-org.md => rust-analyzer-joins-rust-org.md} | 0 posts/{2016-05-16-rust-at-one-year.md => rust-at-one-year.md} | 0 posts/{2017-05-15-rust-at-two-years.md => rust-at-two-years.md} | 0 posts/{2017-12-21-rust-in-2017.md => rust-in-2017.md} | 0 posts/{2020-12-16-rust-survey-2020.md => rust-survey-2020.md} | 0 posts/{2022-06-28-rust-unconference.md => rust-unconference.md} | 0 posts/{2020-03-10-rustconf-cfp.md => rustconf-cfp.md} | 0 ...else-statements.md => rustfmt-supports-let-else-statements.md} | 0 posts/{2016-05-13-rustup.md => rustup.md} | 0 ...y-advisory-for-rustdoc.md => security-advisory-for-rustdoc.md} | 0 posts/{2021-05-15-six-years-of-rust.md => six-years-of-rust.md} | 0 ...6-22-sparse-registry-testing.md => sparse-registry-testing.md} | 0 posts/{2019-12-03-survey-launch.md => survey-launch@0.md} | 0 posts/{2020-09-10-survey-launch.md => survey-launch@1.md} | 0 posts/{2021-12-08-survey-launch.md => survey-launch@2.md} | 0 posts/{2022-12-05-survey-launch.md => survey-launch@3.md} | 0 posts/{2023-12-18-survey-launch.md => survey-launch@4.md} | 0 posts/{2016-05-09-survey.md => survey@0.md} | 0 posts/{2017-05-03-survey.md => survey@1.md} | 0 posts/{2018-08-08-survey.md => survey@2.md} | 0 ...-foundation-conversation.md => the-foundation-conversation.md} | 0 posts/{2024-11-06-trademark-update.md => trademark-update.md} | 0 posts/{2015-05-11-traits.md => traits.md} | 0 posts/{2023-01-20-types-announcement.md => types-announcement.md} | 0 posts/{2024-06-26-types-team-update.md => types-team-update.md} | 0 ...9-18-upcoming-docsrs-changes.md => upcoming-docsrs-changes.md} | 0 ...-to-rusts-wasi-targets.md => updates-to-rusts-wasi-targets.md} | 0 posts/{2024-11-26-wasip2-tier-2.md => wasip2-tier-2.md} | 0 ...d => webassembly-targets-change-in-default-target-features.md} | 0 ...-call-for-contributors.md => wg-prio-call-for-contributors.md} | 0 posts/{2018-07-27-what-is-rust-2018.md => what-is-rust-2018.md} | 0 584 files changed, 0 insertions(+), 0 deletions(-) rename posts/{2014-12-12-1.0-Timeline.md => 1.0-Timeline.md} (100%) rename posts/{2024-02-19-2023-Rust-Annual-Survey-2023-results.md => 2023-Rust-Annual-Survey-2023-results.md} (100%) rename posts/{2023-12-15-2024-Edition-CFP.md => 2024-Edition-CFP.md} (100%) rename posts/{2025-02-13-2024-State-Of-Rust-Survey-results.md => 2024-State-Of-Rust-Survey-results.md} (100%) rename posts/{2019-05-15-4-Years-Of-Rust.md => 4-Years-Of-Rust.md} (100%) rename posts/{2019-10-29-A-call-for-blogs-2020.md => A-call-for-blogs-2020.md} (100%) rename posts/{2019-09-30-Async-await-hits-beta.md => Async-await-hits-beta.md} (100%) rename posts/{2019-11-07-Async-await-stable.md => Async-await-stable.md} (100%) rename posts/{2014-11-20-Cargo.md => Cargo.md} (100%) rename posts/{2024-02-28-Clippy-deprecating-feature-cargo-clippy.md => Clippy-deprecating-feature-cargo-clippy.md} (100%) rename posts/{2014-12-12-Core-Team.md => Core-Team.md} (100%) rename posts/{2019-02-22-Core-team-changes.md => Core-team-changes.md} (100%) rename posts/{2021-09-27-Core-team-membership-updates.md => Core-team-membership-updates.md} (100%) rename posts/{2015-04-17-Enums-match-mutation-and-moves.md => Enums-match-mutation-and-moves.md} (100%) rename posts/{2017-11-14-Fearless-Concurrency-In-Firefox-Quantum.md => Fearless-Concurrency-In-Firefox-Quantum.md} (100%) rename posts/{2015-04-10-Fearless-Concurrency.md => Fearless-Concurrency.md} (100%) rename posts/{2015-02-13-Final-1.0-timeline.md => Final-1.0-timeline.md} (100%) rename posts/{2021-08-03-GATs-stabilization-push.md => GATs-stabilization-push.md} (100%) rename posts/{2023-09-25-Increasing-Apple-Version-Requirements.md => Increasing-Apple-Version-Requirements.md} (100%) rename posts/{2018-04-02-Increasing-Rusts-Reach-2018.md => Increasing-Rusts-Reach-2018.md} (100%) rename posts/{2017-06-27-Increasing-Rusts-Reach.md => Increasing-Rusts-Reach.md} (100%) rename posts/{2022-08-01-Increasing-glibc-kernel-requirements.md => Increasing-glibc-kernel-requirements.md} (100%) rename posts/{2016-04-19-MIR.md => MIR.md} (100%) rename posts/{2019-04-26-Mozilla-IRC-Sunset-and-the-Rust-Channel.md => Mozilla-IRC-Sunset-and-the-Rust-Channel.md} (100%) rename posts/{2020-12-14-Next-steps-for-the-foundation-conversation.md => Next-steps-for-the-foundation-conversation.md} (100%) rename posts/{2015-08-14-Next-year.md => Next-year.md} (100%) rename posts/{2024-05-07-OSPP-2024.md => OSPP-2024.md} (100%) rename posts/{2020-09-03-Planning-2021-Roadmap.md => Planning-2021-Roadmap.md} (100%) rename posts/{2018-12-21-Procedural-Macros-in-Rust-2018.md => Procedural-Macros-in-Rust-2018.md} (100%) rename posts/{2025-01-23-Project-Goals-Dec-Update.md => Project-Goals-Dec-Update.md} (100%) rename posts/{2025-03-03-Project-Goals-Feb-Update.md => Project-Goals-Feb-Update.md} (100%) rename posts/{2024-09-23-Project-Goals-Sep-Update.md => Project-Goals-Sep-Update.md} (100%) rename posts/{2024-08-12-Project-goals.md => Project-goals.md} (100%) rename posts/{2022-07-01-RLS-deprecation.md => RLS-deprecation.md} (100%) rename posts/{2015-01-09-Rust-1.0-alpha.md => Rust-1.0-alpha.md} (100%) rename posts/{2015-02-20-Rust-1.0-alpha2.md => Rust-1.0-alpha2.md} (100%) rename posts/{2015-04-03-Rust-1.0-beta.md => Rust-1.0-beta.md} (100%) rename posts/{2014-09-15-Rust-1.0.md => Rust-1.0@0.md} (100%) rename posts/{2015-05-15-Rust-1.0.md => Rust-1.0@1.md} (100%) rename posts/{2015-06-25-Rust-1.1.md => Rust-1.1.md} (100%) rename posts/{2016-07-07-Rust-1.10.md => Rust-1.10.md} (100%) rename posts/{2016-08-18-Rust-1.11.md => Rust-1.11.md} (100%) rename posts/{2016-10-20-Rust-1.12.1.md => Rust-1.12.1.md} (100%) rename posts/{2016-09-29-Rust-1.12.md => Rust-1.12.md} (100%) rename posts/{2016-11-10-Rust-1.13.md => Rust-1.13.md} (100%) rename posts/{2016-12-22-Rust-1.14.md => Rust-1.14.md} (100%) rename posts/{2017-02-09-Rust-1.15.1.md => Rust-1.15.1.md} (100%) rename posts/{2017-02-02-Rust-1.15.md => Rust-1.15.md} (100%) rename posts/{2017-03-16-Rust-1.16.md => Rust-1.16.md} (100%) rename posts/{2017-04-27-Rust-1.17.md => Rust-1.17.md} (100%) rename posts/{2017-06-08-Rust-1.18.md => Rust-1.18.md} (100%) rename posts/{2017-07-20-Rust-1.19.md => Rust-1.19.md} (100%) rename posts/{2015-08-06-Rust-1.2.md => Rust-1.2.md} (100%) rename posts/{2017-08-31-Rust-1.20.md => Rust-1.20.md} (100%) rename posts/{2017-10-12-Rust-1.21.md => Rust-1.21.md} (100%) rename posts/{2017-11-22-Rust-1.22.md => Rust-1.22.md} (100%) rename posts/{2018-01-04-Rust-1.23.md => Rust-1.23.md} (100%) rename posts/{2018-03-01-Rust-1.24.1.md => Rust-1.24.1.md} (100%) rename posts/{2018-02-15-Rust-1.24.md => Rust-1.24.md} (100%) rename posts/{2018-03-29-Rust-1.25.md => Rust-1.25.md} (100%) rename posts/{2018-05-29-Rust-1.26.1.md => Rust-1.26.1.md} (100%) rename posts/{2018-06-05-Rust-1.26.2.md => Rust-1.26.2.md} (100%) rename posts/{2018-05-10-Rust-1.26.md => Rust-1.26.md} (100%) rename posts/{2018-07-10-Rust-1.27.1.md => Rust-1.27.1.md} (100%) rename posts/{2018-07-20-Rust-1.27.2.md => Rust-1.27.2.md} (100%) rename posts/{2018-06-21-Rust-1.27.md => Rust-1.27.md} (100%) rename posts/{2018-08-02-Rust-1.28.md => Rust-1.28.md} (100%) rename posts/{2018-09-25-Rust-1.29.1.md => Rust-1.29.1.md} (100%) rename posts/{2018-10-12-Rust-1.29.2.md => Rust-1.29.2.md} (100%) rename posts/{2018-09-13-Rust-1.29.md => Rust-1.29.md} (100%) rename posts/{2015-09-17-Rust-1.3.md => Rust-1.3.md} (100%) rename posts/{2018-10-25-Rust-1.30.0.md => Rust-1.30.0.md} (100%) rename posts/{2018-11-08-Rust-1.30.1.md => Rust-1.30.1.md} (100%) rename posts/{2018-12-06-Rust-1.31-and-rust-2018.md => Rust-1.31-and-rust-2018.md} (100%) rename posts/{2018-12-20-Rust-1.31.1.md => Rust-1.31.1.md} (100%) rename posts/{2019-01-17-Rust-1.32.0.md => Rust-1.32.0.md} (100%) rename posts/{2019-02-28-Rust-1.33.0.md => Rust-1.33.0.md} (100%) rename posts/{2019-04-11-Rust-1.34.0.md => Rust-1.34.0.md} (100%) rename posts/{2019-04-25-Rust-1.34.1.md => Rust-1.34.1.md} (100%) rename posts/{2019-05-14-Rust-1.34.2.md => Rust-1.34.2.md} (100%) rename posts/{2019-05-23-Rust-1.35.0.md => Rust-1.35.0.md} (100%) rename posts/{2019-07-04-Rust-1.36.0.md => Rust-1.36.0.md} (100%) rename posts/{2019-08-15-Rust-1.37.0.md => Rust-1.37.0.md} (100%) rename posts/{2019-09-26-Rust-1.38.0.md => Rust-1.38.0.md} (100%) rename posts/{2019-11-07-Rust-1.39.0.md => Rust-1.39.0.md} (100%) rename posts/{2015-10-29-Rust-1.4.md => Rust-1.4.md} (100%) rename posts/{2019-12-19-Rust-1.40.0.md => Rust-1.40.0.md} (100%) rename posts/{2020-01-30-Rust-1.41.0.md => Rust-1.41.0.md} (100%) rename posts/{2020-02-27-Rust-1.41.1.md => Rust-1.41.1.md} (100%) rename posts/{2020-03-12-Rust-1.42.md => Rust-1.42.md} (100%) rename posts/{2020-04-23-Rust-1.43.0.md => Rust-1.43.0.md} (100%) rename posts/{2020-06-04-Rust-1.44.0.md => Rust-1.44.0.md} (100%) rename posts/{2020-07-16-Rust-1.45.0.md => Rust-1.45.0.md} (100%) rename posts/{2020-07-30-Rust-1.45.1.md => Rust-1.45.1.md} (100%) rename posts/{2020-08-03-Rust-1.45.2.md => Rust-1.45.2.md} (100%) rename posts/{2020-08-27-Rust-1.46.0.md => Rust-1.46.0.md} (100%) rename posts/{2020-10-08-Rust-1.47.md => Rust-1.47.md} (100%) rename posts/{2020-11-19-Rust-1.48.md => Rust-1.48.md} (100%) rename posts/{2020-12-31-Rust-1.49.0.md => Rust-1.49.0.md} (100%) rename posts/{2015-12-10-Rust-1.5.md => Rust-1.5.md} (100%) rename posts/{2021-02-11-Rust-1.50.0.md => Rust-1.50.0.md} (100%) rename posts/{2021-03-25-Rust-1.51.0.md => Rust-1.51.0.md} (100%) rename posts/{2021-05-06-Rust-1.52.0.md => Rust-1.52.0.md} (100%) rename posts/{2021-05-10-Rust-1.52.1.md => Rust-1.52.1.md} (100%) rename posts/{2021-06-17-Rust-1.53.0.md => Rust-1.53.0.md} (100%) rename posts/{2021-07-29-Rust-1.54.0.md => Rust-1.54.0.md} (100%) rename posts/{2021-09-09-Rust-1.55.0.md => Rust-1.55.0.md} (100%) rename posts/{2021-10-21-Rust-1.56.0.md => Rust-1.56.0.md} (100%) rename posts/{2021-11-01-Rust-1.56.1.md => Rust-1.56.1.md} (100%) rename posts/{2021-12-02-Rust-1.57.0.md => Rust-1.57.0.md} (100%) rename posts/{2022-01-13-Rust-1.58.0.md => Rust-1.58.0.md} (100%) rename posts/{2022-01-20-Rust-1.58.1.md => Rust-1.58.1.md} (100%) rename posts/{2022-02-24-Rust-1.59.0.md => Rust-1.59.0.md} (100%) rename posts/{2016-01-21-Rust-1.6.md => Rust-1.6.md} (100%) rename posts/{2022-04-07-Rust-1.60.0.md => Rust-1.60.0.md} (100%) rename posts/{2022-05-19-Rust-1.61.0.md => Rust-1.61.0.md} (100%) rename posts/{2022-06-30-Rust-1.62.0.md => Rust-1.62.0.md} (100%) rename posts/{2022-07-19-Rust-1.62.1.md => Rust-1.62.1.md} (100%) rename posts/{2022-08-11-Rust-1.63.0.md => Rust-1.63.0.md} (100%) rename posts/{2022-09-22-Rust-1.64.0.md => Rust-1.64.0.md} (100%) rename posts/{2022-11-03-Rust-1.65.0.md => Rust-1.65.0.md} (100%) rename posts/{2022-12-15-Rust-1.66.0.md => Rust-1.66.0.md} (100%) rename posts/{2023-01-10-Rust-1.66.1.md => Rust-1.66.1.md} (100%) rename posts/{2023-01-26-Rust-1.67.0.md => Rust-1.67.0.md} (100%) rename posts/{2023-02-09-Rust-1.67.1.md => Rust-1.67.1.md} (100%) rename posts/{2023-03-09-Rust-1.68.0.md => Rust-1.68.0.md} (100%) rename posts/{2023-03-23-Rust-1.68.1.md => Rust-1.68.1.md} (100%) rename posts/{2023-03-28-Rust-1.68.2.md => Rust-1.68.2.md} (100%) rename posts/{2023-04-20-Rust-1.69.0.md => Rust-1.69.0.md} (100%) rename posts/{2016-03-02-Rust-1.7.md => Rust-1.7.md} (100%) rename posts/{2023-06-01-Rust-1.70.0.md => Rust-1.70.0.md} (100%) rename posts/{2023-07-13-Rust-1.71.0.md => Rust-1.71.0.md} (100%) rename posts/{2023-08-03-Rust-1.71.1.md => Rust-1.71.1.md} (100%) rename posts/{2023-08-24-Rust-1.72.0.md => Rust-1.72.0.md} (100%) rename posts/{2023-09-19-Rust-1.72.1.md => Rust-1.72.1.md} (100%) rename posts/{2023-10-05-Rust-1.73.0.md => Rust-1.73.0.md} (100%) rename posts/{2023-11-16-Rust-1.74.0.md => Rust-1.74.0.md} (100%) rename posts/{2023-12-07-Rust-1.74.1.md => Rust-1.74.1.md} (100%) rename posts/{2023-12-28-Rust-1.75.0.md => Rust-1.75.0.md} (100%) rename posts/{2024-02-08-Rust-1.76.0.md => Rust-1.76.0.md} (100%) rename posts/{2024-03-21-Rust-1.77.0.md => Rust-1.77.0.md} (100%) rename posts/{2024-03-28-Rust-1.77.1.md => Rust-1.77.1.md} (100%) rename posts/{2024-04-09-Rust-1.77.2.md => Rust-1.77.2.md} (100%) rename posts/{2024-05-02-Rust-1.78.0.md => Rust-1.78.0.md} (100%) rename posts/{2024-06-13-Rust-1.79.0.md => Rust-1.79.0.md} (100%) rename posts/{2016-04-14-Rust-1.8.md => Rust-1.8.md} (100%) rename posts/{2024-07-25-Rust-1.80.0.md => Rust-1.80.0.md} (100%) rename posts/{2024-08-08-Rust-1.80.1.md => Rust-1.80.1.md} (100%) rename posts/{2024-09-05-Rust-1.81.0.md => Rust-1.81.0.md} (100%) rename posts/{2024-10-17-Rust-1.82.0.md => Rust-1.82.0.md} (100%) rename posts/{2024-11-28-Rust-1.83.0.md => Rust-1.83.0.md} (100%) rename posts/{2025-01-09-Rust-1.84.0.md => Rust-1.84.0.md} (100%) rename posts/{2025-01-30-Rust-1.84.1.md => Rust-1.84.1.md} (100%) rename posts/{2025-02-20-Rust-1.85.0.md => Rust-1.85.0.md} (100%) rename posts/{2016-05-26-Rust-1.9.md => Rust-1.9.md} (100%) rename posts/{2017-09-05-Rust-2017-Survey-Results.md => Rust-2017-Survey-Results.md} (100%) rename posts/{2018-12-17-Rust-2018-dev-tools.md => Rust-2018-dev-tools.md} (100%) rename posts/{2021-07-21-Rust-2021-public-testing.md => Rust-2021-public-testing.md} (100%) rename posts/{2024-11-27-Rust-2024-public-testing.md => Rust-2024-public-testing.md} (100%) rename posts/{2015-04-24-Rust-Once-Run-Everywhere.md => Rust-Once-Run-Everywhere.md} (100%) rename posts/{2017-07-05-Rust-Roadmap-Update.md => Rust-Roadmap-Update.md} (100%) rename posts/{2022-02-15-Rust-Survey-2021.md => Rust-Survey-2021.md} (100%) rename posts/{2023-08-07-Rust-Survey-2023-Results.md => Rust-Survey-2023-Results.md} (100%) rename posts/{2024-02-21-Rust-participates-in-GSoC-2024.md => Rust-participates-in-GSoC-2024.md} (100%) rename posts/{2025-03-03-Rust-participates-in-GSoC-2025.md => Rust-participates-in-GSoC-2025.md} (100%) rename posts/{2018-11-27-Rust-survey-2018.md => Rust-survey-2018.md} (100%) rename posts/{2020-04-17-Rust-survey-2019.md => Rust-survey-2019.md} (100%) rename posts/{2018-05-15-Rust-turns-three.md => Rust-turns-three.md} (100%) rename posts/{2020-05-07-Rust.1.43.1.md => Rust.1.43.1.md} (100%) rename posts/{2020-06-18-Rust.1.44.1.md => Rust.1.44.1.md} (100%) rename posts/{2023-05-29-RustConf.md => RustConf.md} (100%) rename posts/{2019-10-15-Rustup-1.20.0.md => Rustup-1.20.0.md} (100%) rename posts/{2020-07-06-Rustup-1.22.0.md => Rustup-1.22.0.md} (100%) rename posts/{2020-07-08-Rustup-1.22.1.md => Rustup-1.22.1.md} (100%) rename posts/{2020-11-27-Rustup-1.23.0.md => Rustup-1.23.0.md} (100%) rename posts/{2021-04-27-Rustup-1.24.0.md => Rustup-1.24.0.md} (100%) rename posts/{2021-04-29-Rustup-1.24.1.md => Rustup-1.24.1.md} (100%) rename posts/{2021-05-17-Rustup-1.24.2.md => Rustup-1.24.2.md} (100%) rename posts/{2021-06-08-Rustup-1.24.3.md => Rustup-1.24.3.md} (100%) rename posts/{2022-07-11-Rustup-1.25.0.md => Rustup-1.25.0.md} (100%) rename posts/{2022-07-12-Rustup-1.25.1.md => Rustup-1.25.1.md} (100%) rename posts/{2023-02-01-Rustup-1.25.2.md => Rustup-1.25.2.md} (100%) rename posts/{2023-04-25-Rustup-1.26.0.md => Rustup-1.26.0.md} (100%) rename posts/{2024-03-11-Rustup-1.27.0.md => Rustup-1.27.0.md} (100%) rename posts/{2024-05-06-Rustup-1.27.1.md => Rustup-1.27.1.md} (100%) rename posts/{2025-03-02-Rustup-1.28.0.md => Rustup-1.28.0.md} (100%) rename posts/{2025-03-04-Rustup-1.28.1.md => Rustup-1.28.1.md} (100%) rename posts/{2020-09-21-Scheduling-2021-Roadmap.md => Scheduling-2021-Roadmap.md} (100%) rename posts/{2019-09-30-Security-advisory-for-cargo.md => Security-advisory-for-cargo.md} (100%) rename posts/{2018-09-21-Security-advisory-for-std.md => Security-advisory-for-std.md} (100%) rename posts/{2019-05-13-Security-advisory.md => Security-advisory.md} (100%) rename posts/{2016-08-10-Shape-of-errors-to-come.md => Shape-of-errors-to-come.md} (100%) rename posts/{2014-10-30-Stability.md => Stability.md} (100%) rename posts/{2016-06-30-State-of-Rust-Survey-2016.md => State-of-Rust-Survey-2016.md} (100%) rename posts/{2018-01-31-The-2018-Rust-Event-Lineup.md => The-2018-Rust-Event-Lineup.md} (100%) rename posts/{2019-05-20-The-2019-Rust-Event-Lineup.md => The-2019-Rust-Event-Lineup.md} (100%) rename posts/{2016-12-15-Underhanded-Rust.md => Underhanded-Rust.md} (100%) rename posts/{2018-10-19-Update-on-crates.io-incident.md => Update-on-crates.io-incident.md} (100%) rename posts/{2023-05-09-Updating-musl-targets.md => Updating-musl-targets.md} (100%) rename posts/{2024-02-26-Windows-7.md => Windows-7.md} (100%) rename posts/{2018-11-29-a-new-look-for-rust-lang-org.md => a-new-look-for-rust-lang-org.md} (100%) rename posts/{2018-04-06-all-hands.md => all-hands.md} (100%) rename posts/{2023-01-09-android-ndk-update-r25.md => android-ndk-update-r25.md} (100%) rename posts/{2023-10-19-announcing-the-new-rust-project-directors.md => announcing-the-new-rust-project-directors.md} (100%) rename posts/{2024-12-05-annual-survey-2024-launch.md => annual-survey-2024-launch.md} (100%) rename posts/{2023-12-21-async-fn-rpit-in-traits.md => async-fn-rpit-in-traits.md} (100%) rename posts/{2021-04-14-async-vision-doc-shiny-future.md => async-vision-doc-shiny-future.md} (100%) rename posts/{2021-03-18-async-vision-doc.md => async-vision-doc.md} (100%) rename posts/{2023-10-26-broken-badges-and-23k-keywords.md => broken-badges-and-23k-keywords.md} (100%) rename posts/{2018-12-06-call-for-rust-2019-roadmap-blogposts.md => call-for-rust-2019-roadmap-blogposts.md} (100%) rename posts/{2023-12-11-cargo-cache-cleaning.md => cargo-cache-cleaning.md} (100%) rename posts/{2022-09-14-cargo-cves.md => cargo-cves.md} (100%) rename posts/{2016-05-05-cargo-pillars.md => cargo-pillars.md} (100%) rename posts/{2022-01-31-changes-in-the-core-team.md => changes-in-the-core-team@0.md} (100%) rename posts/{2022-07-12-changes-in-the-core-team.md => changes-in-the-core-team@1.md} (100%) rename posts/{2024-05-06-check-cfg.md => check-cfg.md} (100%) rename posts/{2023-08-29-committing-lockfiles.md => committing-lockfiles.md} (100%) rename posts/{2016-07-25-conf-lineup.md => conf-lineup@0.md} (100%) rename posts/{2017-07-18-conf-lineup.md => conf-lineup@1.md} (100%) rename posts/{2020-01-31-conf-lineup.md => conf-lineup@2.md} (100%) rename posts/{2022-09-15-const-eval-safety-rule-revision.md => const-eval-safety-rule-revision.md} (100%) rename posts/{2021-02-26-const-generics-mvp-beta.md => const-generics-mvp-beta.md} (100%) rename posts/{2024-08-26-council-survey.md => council-survey.md} (100%) rename posts/{2024-07-29-crates-io-development-update.md => crates-io-development-update@0.md} (100%) rename posts/{2025-02-05-crates-io-development-update.md => crates-io-development-update@1.md} (100%) rename posts/{2024-03-11-crates-io-download-changes.md => crates-io-download-changes.md} (100%) rename posts/{2023-10-27-crates-io-non-canonical-downloads.md => crates-io-non-canonical-downloads.md} (100%) rename posts/{2020-07-14-crates-io-security-advisory.md => crates-io-security-advisory.md} (100%) rename posts/{2022-02-14-crates-io-snapshot-branches.md => crates-io-snapshot-branches.md} (100%) rename posts/{2024-02-06-crates-io-status-codes.md => crates-io-status-codes.md} (100%) rename posts/{2023-09-22-crates-io-usage-policy-rfc.md => crates-io-usage-policy-rfc.md} (100%) rename posts/{2021-11-01-cve-2021-42574.md => cve-2021-42574.md} (100%) rename posts/{2022-01-20-cve-2022-21658.md => cve-2022-21658.md} (100%) rename posts/{2022-03-08-cve-2022-24713.md => cve-2022-24713.md} (100%) rename posts/{2023-01-10-cve-2022-46176.md => cve-2022-46176.md} (100%) rename posts/{2023-08-03-cve-2023-38497.md => cve-2023-38497.md} (100%) rename posts/{2024-04-09-cve-2024-24576.md => cve-2024-24576.md} (100%) rename posts/{2024-09-04-cve-2024-43402.md => cve-2024-43402.md} (100%) rename posts/{2020-03-15-docs-rs-opt-into-fewer-targets.md => docs-rs-opt-into-fewer-targets.md} (100%) rename posts/{2021-05-11-edition-2021.md => edition-2021.md} (100%) rename posts/{2023-08-30-electing-new-project-directors.md => electing-new-project-directors.md} (100%) rename posts/{2024-05-17-enabling-rust-lld-on-linux.md => enabling-rust-lld-on-linux.md} (100%) rename posts/{2020-06-10-event-lineup-update.md => event-lineup-update.md} (100%) rename posts/{2020-05-15-five-years-of-rust.md => five-years-of-rust.md} (100%) rename posts/{2022-10-28-gats-stabilization.md => gats-stabilization.md} (100%) rename posts/{2024-11-07-gccrs-an-alternative-compiler-for-rust.md => gccrs-an-alternative-compiler-for-rust.md} (100%) rename posts/{2019-06-03-governance-wg-announcement.md => governance-wg-announcement.md} (100%) rename posts/{2024-11-07-gsoc-2024-results.md => gsoc-2024-results.md} (100%) rename posts/{2024-05-01-gsoc-2024-selected-projects.md => gsoc-2024-selected-projects.md} (100%) rename posts/{2018-10-30-help-test-rust-2018.md => help-test-rust-2018.md} (100%) rename posts/{2024-03-30-i128-layout-update.md => i128-layout-update.md} (100%) rename posts/{2017-09-18-impl-future-for-rust.md => impl-future-for-rust.md} (100%) rename posts/{2024-09-05-impl-trait-capture-rules.md => impl-trait-capture-rules.md} (100%) rename posts/{2023-06-23-improved-api-tokens-for-crates-io.md => improved-api-tokens-for-crates-io.md} (100%) rename posts/{2016-09-08-incremental.md => incremental.md} (100%) rename posts/{2019-10-03-inside-rust-blog.md => inside-rust-blog.md} (100%) rename posts/inside-rust/{2020-07-27-1.45.1-prerelease.md => 1.45.1-prerelease.md} (100%) rename posts/inside-rust/{2020-08-24-1.46.0-prerelease.md => 1.46.0-prerelease.md} (100%) rename posts/inside-rust/{2020-10-07-1.47.0-prerelease-2.md => 1.47.0-prerelease-2.md} (100%) rename posts/inside-rust/{2020-10-06-1.47.0-prerelease.md => 1.47.0-prerelease.md} (100%) rename posts/inside-rust/{2020-11-16-1.48.0-prerelease.md => 1.48.0-prerelease.md} (100%) rename posts/inside-rust/{2020-12-29-1.49.0-prerelease.md => 1.49.0-prerelease.md} (100%) rename posts/inside-rust/{2021-02-09-1.50.0-prerelease.md => 1.50.0-prerelease.md} (100%) rename posts/inside-rust/{2021-03-23-1.51.0-prerelease.md => 1.51.0-prerelease.md} (100%) rename posts/inside-rust/{2021-05-04-1.52.0-prerelease.md => 1.52.0-prerelease.md} (100%) rename posts/inside-rust/{2021-06-15-1.53.0-prelease.md => 1.53.0-prelease.md} (100%) rename posts/inside-rust/{2021-07-26-1.54.0-prerelease.md => 1.54.0-prerelease.md} (100%) rename posts/inside-rust/{2021-09-07-1.55.0-prerelease.md => 1.55.0-prerelease.md} (100%) rename posts/inside-rust/{2021-10-18-1.56.0-prerelease.md => 1.56.0-prerelease.md} (100%) rename posts/inside-rust/{2021-11-30-1.57.0-prerelease.md => 1.57.0-prerelease.md} (100%) rename posts/inside-rust/{2022-01-11-1.58.0-prerelease.md => 1.58.0-prerelease.md} (100%) rename posts/inside-rust/{2022-02-22-1.59.0-prerelease.md => 1.59.0-prerelease.md} (100%) rename posts/inside-rust/{2022-04-04-1.60.0-prerelease.md => 1.60.0-prerelease.md} (100%) rename posts/inside-rust/{2022-05-16-1.61.0-prerelease.md => 1.61.0-prerelease.md} (100%) rename posts/inside-rust/{2022-06-28-1.62.0-prerelease.md => 1.62.0-prerelease.md} (100%) rename posts/inside-rust/{2022-07-16-1.62.1-prerelease.md => 1.62.1-prerelease.md} (100%) rename posts/inside-rust/{2022-08-09-1.63.0-prerelease.md => 1.63.0-prerelease.md} (100%) rename posts/inside-rust/{2022-09-19-1.64.0-prerelease.md => 1.64.0-prerelease.md} (100%) rename posts/inside-rust/{2022-10-31-1.65.0-prerelease.md => 1.65.0-prerelease.md} (100%) rename posts/inside-rust/{2022-12-12-1.66.0-prerelease.md => 1.66.0-prerelease.md} (100%) rename posts/inside-rust/{2023-01-25-1.67.0-prerelease.md => 1.67.0-prerelease.md} (100%) rename posts/inside-rust/{2023-02-07-1.67.1-prerelease.md => 1.67.1-prerelease.md} (100%) rename posts/inside-rust/{2023-03-06-1.68.0-prerelease.md => 1.68.0-prerelease.md} (100%) rename posts/inside-rust/{2023-03-20-1.68.1-prerelease.md => 1.68.1-prerelease.md} (100%) rename posts/inside-rust/{2023-03-27-1.68.2-prerelease.md => 1.68.2-prerelease.md} (100%) rename posts/inside-rust/{2023-04-17-1.69.0-prerelease.md => 1.69.0-prerelease.md} (100%) rename posts/inside-rust/{2023-05-29-1.70.0-prerelease.md => 1.70.0-prerelease.md} (100%) rename posts/inside-rust/{2023-07-10-1.71.0-prerelease.md => 1.71.0-prerelease.md} (100%) rename posts/inside-rust/{2023-08-01-1.71.1-prerelease.md => 1.71.1-prerelease.md} (100%) rename posts/inside-rust/{2023-08-21-1.72.0-prerelease.md => 1.72.0-prerelease.md} (100%) rename posts/inside-rust/{2023-09-14-1.72.1-prerelease.md => 1.72.1-prerelease.md} (100%) rename posts/inside-rust/{2023-10-03-1.73.0-prerelease.md => 1.73.0-prerelease.md} (100%) rename posts/inside-rust/{2023-11-13-1.74.0-prerelease.md => 1.74.0-prerelease.md} (100%) rename posts/inside-rust/{2023-12-05-1.74.1-prerelease.md => 1.74.1-prerelease.md} (100%) rename posts/inside-rust/{2023-12-21-1.75.0-prerelease.md => 1.75.0-prerelease.md} (100%) rename posts/inside-rust/{2024-02-04-1.76.0-prerelease.md => 1.76.0-prerelease.md} (100%) rename posts/inside-rust/{2024-03-17-1.77.0-prerelease.md => 1.77.0-prerelease.md} (100%) rename posts/inside-rust/{2024-03-27-1.77.1-prerelease.md => 1.77.1-prerelease.md} (100%) rename posts/inside-rust/{2024-03-22-2024-edition-update.md => 2024-edition-update.md} (100%) rename posts/inside-rust/{2019-10-11-AsyncAwait-Not-Send-Error-Improvements.md => AsyncAwait-Not-Send-Error-Improvements.md} (100%) rename posts/inside-rust/{2019-10-07-AsyncAwait-WG-Focus-Issues.md => AsyncAwait-WG-Focus-Issues.md} (100%) rename posts/inside-rust/{2020-10-16-Backlog-Bonanza.md => Backlog-Bonanza.md} (100%) rename posts/inside-rust/{2022-04-12-CTCFT-april.md => CTCFT-april.md} (100%) rename posts/inside-rust/{2022-02-11-CTCFT-february.md => CTCFT-february.md} (100%) rename posts/inside-rust/{2022-03-16-CTCFT-march.md => CTCFT-march.md} (100%) rename posts/inside-rust/{2022-05-10-CTCFT-may.md => CTCFT-may.md} (100%) rename posts/inside-rust/{2020-02-06-Cleanup-Crew-ICE-breakers.md => Cleanup-Crew-ICE-breakers.md} (100%) rename posts/inside-rust/{2019-11-04-Clippy-removes-plugin-interface.md => Clippy-removes-plugin-interface.md} (100%) rename posts/inside-rust/{2022-05-26-Concluding-events-mods.md => Concluding-events-mods.md} (100%) rename posts/inside-rust/{2020-10-23-Core-team-membership.md => Core-team-membership.md} (100%) rename posts/inside-rust/{2020-01-14-Goverance-wg-cfp.md => Goverance-wg-cfp.md} (100%) rename posts/inside-rust/{2020-02-11-Goverance-wg.md => Goverance-wg@0.md} (100%) rename posts/inside-rust/{2020-02-27-Goverance-wg.md => Goverance-wg@1.md} (100%) rename posts/inside-rust/{2020-04-14-Governance-WG-updated.md => Governance-WG-updated.md} (100%) rename posts/inside-rust/{2020-04-23-Governance-wg.md => Governance-wg.md} (100%) rename posts/inside-rust/{2020-01-23-Introducing-cargo-audit-fix-and-more.md => Introducing-cargo-audit-fix-and-more.md} (100%) rename posts/inside-rust/{2019-10-03-Keeping-secure-with-cargo-audit-0.9.md => Keeping-secure-with-cargo-audit-0.9.md} (100%) rename posts/inside-rust/{2019-10-22-LLVM-ICE-breakers.md => LLVM-ICE-breakers.md} (100%) rename posts/inside-rust/{2019-10-11-Lang-Team-Meeting.md => Lang-Team-Meeting.md} (100%) rename posts/inside-rust/{2021-10-08-Lang-team-Oct-update.md => Lang-team-Oct-update.md} (100%) rename posts/inside-rust/{2021-07-12-Lang-team-july-update.md => Lang-team-july-update.md} (100%) rename posts/inside-rust/{2019-11-22-Lang-team-meeting.md => Lang-team-meeting.md} (100%) rename posts/inside-rust/{2020-07-02-Ownership-Std-Implementation.md => Ownership-Std-Implementation.md} (100%) rename posts/inside-rust/{2020-09-29-Portable-SIMD-PG.md => Portable-SIMD-PG.md} (100%) rename posts/inside-rust/{2021-09-06-Splitting-const-generics.md => Splitting-const-generics.md} (100%) rename posts/inside-rust/{2020-11-15-Using-rustc_codegen_cranelift.md => Using-rustc_codegen_cranelift.md} (100%) rename posts/inside-rust/{2019-09-25-Welcome.md => Welcome.md} (100%) rename posts/inside-rust/{2020-11-23-What-the-error-handling-project-group-is-working-on.md => What-the-error-handling-project-group-is-working-on.md} (100%) rename posts/inside-rust/{2021-07-01-What-the-error-handling-project-group-is-working-towards.md => What-the-error-handling-project-group-is-working-towards.md} (100%) rename posts/inside-rust/{2021-04-26-aaron-hill-compiler-team.md => aaron-hill-compiler-team.md} (100%) rename posts/inside-rust/{2020-03-18-all-hands-retrospective.md => all-hands-retrospective.md} (100%) rename posts/inside-rust/{2024-09-02-all-hands.md => all-hands.md} (100%) rename posts/inside-rust/{2024-05-07-announcing-project-goals.md => announcing-project-goals.md} (100%) rename posts/inside-rust/{2019-12-09-announcing-the-docsrs-team.md => announcing-the-docsrs-team.md} (100%) rename posts/inside-rust/{2022-09-29-announcing-the-rust-style-team.md => announcing-the-rust-style-team.md} (100%) rename posts/inside-rust/{2023-05-09-api-token-scopes.md => api-token-scopes.md} (100%) rename posts/inside-rust/{2022-04-15-apr-steering-cycle.md => apr-steering-cycle.md} (100%) rename posts/inside-rust/{2024-08-09-async-closures-call-for-testing.md => async-closures-call-for-testing.md} (100%) rename posts/inside-rust/{2022-11-17-async-fn-in-trait-nightly.md => async-fn-in-trait-nightly.md} (100%) rename posts/inside-rust/{2022-02-03-async-in-2022.md => async-in-2022.md} (100%) rename posts/inside-rust/{2019-12-18-bisecting-rust-compiler.md => bisecting-rust-compiler.md} (100%) rename posts/inside-rust/{2021-06-15-boxyuwu-leseulartichaut-the8472-compiler-contributors.md => boxyuwu-leseulartichaut-the8472-compiler-contributors.md} (100%) rename posts/inside-rust/{2023-08-24-cargo-config-merging.md => cargo-config-merging.md} (100%) rename posts/inside-rust/{2020-01-10-cargo-in-2020.md => cargo-in-2020.md} (100%) rename posts/inside-rust/{2023-04-06-cargo-new-members.md => cargo-new-members.md} (100%) rename posts/inside-rust/{2023-05-01-cargo-postmortem.md => cargo-postmortem.md} (100%) rename posts/inside-rust/{2023-01-30-cargo-sparse-protocol.md => cargo-sparse-protocol.md} (100%) rename posts/inside-rust/{2022-03-31-cargo-team-changes.md => cargo-team-changes.md} (100%) rename posts/inside-rust/{2020-12-14-changes-to-compiler-team.md => changes-to-compiler-team.md} (100%) rename posts/inside-rust/{2021-01-19-changes-to-rustdoc-team.md => changes-to-rustdoc-team.md} (100%) rename posts/inside-rust/{2020-08-30-changes-to-x-py-defaults.md => changes-to-x-py-defaults.md} (100%) rename posts/inside-rust/{2020-12-28-cjgillot-and-nadrieril-for-compiler-contributors.md => cjgillot-and-nadrieril-for-compiler-contributors.md} (100%) rename posts/inside-rust/{2022-07-13-clippy-team-changes.md => clippy-team-changes.md} (100%) rename posts/inside-rust/{2022-08-08-compiler-team-2022-midyear-report.md => compiler-team-2022-midyear-report.md} (100%) rename posts/inside-rust/{2022-02-22-compiler-team-ambitions-2022.md => compiler-team-ambitions-2022.md} (100%) rename posts/inside-rust/{2021-04-15-compiler-team-april-steering-cycle.md => compiler-team-april-steering-cycle.md} (100%) rename posts/inside-rust/{2021-07-30-compiler-team-august-steering-cycle.md => compiler-team-august-steering-cycle.md} (100%) rename posts/inside-rust/{2023-02-10-compiler-team-feb-steering-cycle.md => compiler-team-feb-steering-cycle.md} (100%) rename posts/inside-rust/{2021-07-02-compiler-team-july-steering-cycle.md => compiler-team-july-steering-cycle.md} (100%) rename posts/inside-rust/{2021-06-23-compiler-team-june-steering-cycle.md => compiler-team-june-steering-cycle.md} (100%) rename posts/inside-rust/{2019-10-15-compiler-team-meeting.md => compiler-team-meeting@0.md} (100%) rename posts/inside-rust/{2019-10-21-compiler-team-meeting.md => compiler-team-meeting@1.md} (100%) rename posts/inside-rust/{2019-10-30-compiler-team-meeting.md => compiler-team-meeting@2.md} (100%) rename posts/inside-rust/{2019-11-07-compiler-team-meeting.md => compiler-team-meeting@3.md} (100%) rename posts/inside-rust/{2019-11-11-compiler-team-meeting.md => compiler-team-meeting@4.md} (100%) rename posts/inside-rust/{2019-11-19-compiler-team-meeting.md => compiler-team-meeting@5.md} (100%) rename posts/inside-rust/{2020-02-07-compiler-team-meeting.md => compiler-team-meeting@6.md} (100%) rename posts/inside-rust/{2024-11-12-compiler-team-new-members.md => compiler-team-new-members.md} (100%) rename posts/inside-rust/{2024-11-01-compiler-team-reorg.md => compiler-team-reorg.md} (100%) rename posts/inside-rust/{2022-09-23-compiler-team-sep-oct-steering-cycle.md => compiler-team-sep-oct-steering-cycle.md} (100%) rename posts/inside-rust/{2019-11-25-const-if-match.md => const-if-match.md} (100%) rename posts/inside-rust/{2019-12-02-const-prop-on-by-default.md => const-prop-on-by-default.md} (100%) rename posts/inside-rust/{2023-01-24-content-delivery-networks.md => content-delivery-networks.md} (100%) rename posts/inside-rust/{2020-05-27-contributor-survey.md => contributor-survey.md} (100%) rename posts/inside-rust/{2021-05-04-core-team-update.md => core-team-update.md} (100%) rename posts/inside-rust/{2021-04-03-core-team-updates.md => core-team-updates.md} (100%) rename posts/inside-rust/{2023-10-23-coroutines.md => coroutines.md} (100%) rename posts/inside-rust/{2020-02-26-crates-io-incident-report.md => crates-io-incident-report.md} (100%) rename posts/inside-rust/{2023-09-01-crates-io-malware-postmortem.md => crates-io-malware-postmortem.md} (100%) rename posts/inside-rust/{2023-07-21-crates-io-postmortem.md => crates-io-postmortem.md} (100%) rename posts/inside-rust/{2021-02-01-davidtwco-jackhuey-compiler-members.md => davidtwco-jackhuey-compiler-members.md} (100%) rename posts/inside-rust/{2022-08-16-diagnostic-effort.md => diagnostic-effort.md} (100%) rename posts/inside-rust/{2023-02-08-dns-outage-portmortem.md => dns-outage-portmortem.md} (100%) rename posts/inside-rust/{2019-10-24-docsrs-outage-postmortem.md => docsrs-outage-postmortem.md} (100%) rename posts/inside-rust/{2019-10-17-ecstatic-morse-for-compiler-contributors.md => ecstatic-morse-for-compiler-contributors.md} (100%) rename posts/inside-rust/{2024-09-06-electing-new-project-directors.md => electing-new-project-directors.md} (100%) rename posts/inside-rust/{2024-08-22-embedded-wg-micro-survey.md => embedded-wg-micro-survey.md} (100%) rename posts/inside-rust/{2020-09-18-error-handling-wg-announcement.md => error-handling-wg-announcement.md} (100%) rename posts/inside-rust/{2019-11-14-evaluating-github-actions.md => evaluating-github-actions.md} (100%) rename posts/inside-rust/{2020-11-11-exploring-pgo-for-the-rust-compiler.md => exploring-pgo-for-the-rust-compiler.md} (100%) rename posts/inside-rust/{2020-01-24-feb-lang-team-design-meetings.md => feb-lang-team-design-meetings.md} (100%) rename posts/inside-rust/{2022-02-17-feb-steering-cycle.md => feb-steering-cycle.md} (100%) rename posts/inside-rust/{2020-02-27-ffi-unwind-design-meeting.md => ffi-unwind-design-meeting.md} (100%) rename posts/inside-rust/{2021-01-26-ffi-unwind-longjmp.md => ffi-unwind-longjmp.md} (100%) rename posts/inside-rust/{2021-12-17-follow-up-on-the-moderation-issue.md => follow-up-on-the-moderation-issue.md} (100%) rename posts/inside-rust/{2019-12-23-formatting-the-compiler.md => formatting-the-compiler.md} (100%) rename posts/inside-rust/{2020-03-27-goodbye-docs-team.md => goodbye-docs-team.md} (100%) rename posts/inside-rust/{2019-11-13-goverance-wg-cfp.md => goverance-wg-cfp.md} (100%) rename posts/inside-rust/{2023-02-22-governance-reform-rfc.md => governance-reform-rfc.md} (100%) rename posts/inside-rust/{2022-05-19-governance-update.md => governance-update@0.md} (100%) rename posts/inside-rust/{2022-10-06-governance-update.md => governance-update@1.md} (100%) rename posts/inside-rust/{2019-12-03-governance-wg-meeting.md => governance-wg-meeting@0.md} (100%) rename posts/inside-rust/{2019-12-10-governance-wg-meeting.md => governance-wg-meeting@1.md} (100%) rename posts/inside-rust/{2019-12-20-governance-wg-meeting.md => governance-wg-meeting@2.md} (100%) rename posts/inside-rust/{2020-03-17-governance-wg.md => governance-wg.md} (100%) rename posts/inside-rust/{2019-12-04-ide-future.md => ide-future.md} (100%) rename posts/inside-rust/{2022-04-19-imposter-syndrome.md => imposter-syndrome.md} (100%) rename posts/inside-rust/{2021-11-25-in-response-to-the-moderation-team-resignation.md => in-response-to-the-moderation-team-resignation.md} (100%) rename posts/inside-rust/{2025-03-05-inferred-const-generic-arguments.md => inferred-const-generic-arguments.md} (100%) rename posts/inside-rust/{2023-09-08-infra-team-leadership-change.md => infra-team-leadership-change.md} (100%) rename posts/inside-rust/{2019-10-15-infra-team-meeting.md => infra-team-meeting@0.md} (100%) rename posts/inside-rust/{2019-10-22-infra-team-meeting.md => infra-team-meeting@1.md} (100%) rename posts/inside-rust/{2019-10-29-infra-team-meeting.md => infra-team-meeting@2.md} (100%) rename posts/inside-rust/{2019-11-06-infra-team-meeting.md => infra-team-meeting@3.md} (100%) rename posts/inside-rust/{2019-11-18-infra-team-meeting.md => infra-team-meeting@4.md} (100%) rename posts/inside-rust/{2019-11-19-infra-team-meeting.md => infra-team-meeting@5.md} (100%) rename posts/inside-rust/{2019-12-11-infra-team-meeting.md => infra-team-meeting@6.md} (100%) rename posts/inside-rust/{2019-12-20-infra-team-meeting.md => infra-team-meeting@7.md} (100%) rename posts/inside-rust/{2020-02-25-intro-rustc-self-profile.md => intro-rustc-self-profile.md} (100%) rename posts/inside-rust/{2022-01-18-jan-steering-cycle.md => jan-steering-cycle.md} (100%) rename posts/inside-rust/{2019-12-19-jasper-and-wiser-full-members-of-compiler-team.md => jasper-and-wiser-full-members-of-compiler-team.md} (100%) rename posts/inside-rust/{2021-04-20-jsha-rustdoc-member.md => jsha-rustdoc-member.md} (100%) rename posts/inside-rust/{2020-02-20-jtgeibel-crates-io-co-lead.md => jtgeibel-crates-io-co-lead.md} (100%) rename posts/inside-rust/{2022-06-03-jun-steering-cycle.md => jun-steering-cycle.md} (100%) rename posts/inside-rust/{2023-09-04-keeping-secure-with-cargo-audit-0.18.md => keeping-secure-with-cargo-audit-0.18.md} (100%) rename posts/inside-rust/{2023-02-23-keyword-generics-progress-report-feb-2023.md => keyword-generics-progress-report-feb-2023.md} (100%) rename posts/inside-rust/{2022-07-27-keyword-generics.md => keyword-generics.md} (100%) rename posts/inside-rust/{2023-02-14-lang-advisors.md => lang-advisors.md} (100%) rename posts/inside-rust/{2022-04-04-lang-roadmap-2024.md => lang-roadmap-2024.md} (100%) rename posts/inside-rust/{2021-04-17-lang-team-apr-update.md => lang-team-apr-update.md} (100%) rename posts/inside-rust/{2022-04-06-lang-team-april-update.md => lang-team-april-update.md} (100%) rename posts/inside-rust/{2021-08-04-lang-team-aug-update.md => lang-team-aug-update.md} (100%) rename posts/inside-rust/{2024-02-13-lang-team-colead.md => lang-team-colead.md} (100%) rename posts/inside-rust/{2020-07-29-lang-team-design-meeting-min-const-generics.md => lang-team-design-meeting-min-const-generics.md} (100%) rename posts/inside-rust/{2020-07-08-lang-team-design-meeting-update.md => lang-team-design-meeting-update.md} (100%) rename posts/inside-rust/{2020-07-29-lang-team-design-meeting-wf-types.md => lang-team-design-meeting-wf-types.md} (100%) rename posts/inside-rust/{2020-01-10-lang-team-design-meetings.md => lang-team-design-meetings@0.md} (100%) rename posts/inside-rust/{2020-03-11-lang-team-design-meetings.md => lang-team-design-meetings@1.md} (100%) rename posts/inside-rust/{2020-04-10-lang-team-design-meetings.md => lang-team-design-meetings@2.md} (100%) rename posts/inside-rust/{2021-02-03-lang-team-feb-update.md => lang-team-feb-update@0.md} (100%) rename posts/inside-rust/{2022-02-18-lang-team-feb-update.md => lang-team-feb-update@1.md} (100%) rename posts/inside-rust/{2021-03-03-lang-team-mar-update.md => lang-team-mar-update@0.md} (100%) rename posts/inside-rust/{2022-03-09-lang-team-mar-update.md => lang-team-mar-update@1.md} (100%) rename posts/inside-rust/{2020-05-08-lang-team-meetings-rescheduled.md => lang-team-meetings-rescheduled.md} (100%) rename posts/inside-rust/{2023-02-14-lang-team-membership-update.md => lang-team-membership-update.md} (100%) rename posts/inside-rust/{2020-07-09-lang-team-path-to-membership.md => lang-team-path-to-membership.md} (100%) rename posts/inside-rust/{2024-05-28-launching-pad-representative.md => launching-pad-representative.md} (100%) rename posts/inside-rust/{2023-08-29-leadership-council-membership-changes.md => leadership-council-membership-changes.md} (100%) rename posts/inside-rust/{2024-02-19-leadership-council-repr-selection.md => leadership-council-repr-selection@0.md} (100%) rename posts/inside-rust/{2024-04-01-leadership-council-repr-selection.md => leadership-council-repr-selection@1.md} (100%) rename posts/inside-rust/{2024-08-20-leadership-council-repr-selection.md => leadership-council-repr-selection@2.md} (100%) rename posts/inside-rust/{2024-09-27-leadership-council-repr-selection.md => leadership-council-repr-selection@3.md} (100%) rename posts/inside-rust/{2025-02-14-leadership-council-repr-selection.md => leadership-council-repr-selection@4.md} (100%) rename posts/inside-rust/{2023-07-25-leadership-council-update.md => leadership-council-update@0.md} (100%) rename posts/inside-rust/{2023-11-13-leadership-council-update.md => leadership-council-update@1.md} (100%) rename posts/inside-rust/{2024-02-13-leadership-council-update.md => leadership-council-update@2.md} (100%) rename posts/inside-rust/{2024-05-14-leadership-council-update.md => leadership-council-update@3.md} (100%) rename posts/inside-rust/{2024-09-06-leadership-council-update.md => leadership-council-update@4.md} (100%) rename posts/inside-rust/{2024-12-09-leadership-council-update.md => leadership-council-update@5.md} (100%) rename posts/inside-rust/{2023-08-25-leadership-initiatives.md => leadership-initiatives.md} (100%) rename posts/inside-rust/{2022-04-20-libs-aspirations.md => libs-aspirations.md} (100%) rename posts/inside-rust/{2021-11-15-libs-contributors-the8472-kodraus.md => libs-contributors-the8472-kodraus.md} (100%) rename posts/inside-rust/{2022-04-18-libs-contributors.md => libs-contributors@0.md} (100%) rename posts/inside-rust/{2022-08-10-libs-contributors.md => libs-contributors@1.md} (100%) rename posts/inside-rust/{2022-11-29-libs-member.md => libs-member.md} (100%) rename posts/inside-rust/{2020-06-29-lto-improvements.md => lto-improvements.md} (100%) rename posts/inside-rust/{2022-03-11-mar-steering-cycle.md => mar-steering-cycle.md} (100%) rename posts/inside-rust/{2020-06-08-new-inline-asm.md => new-inline-asm.md} (100%) rename posts/inside-rust/{2020-07-27-opening-up-the-core-team-agenda.md => opening-up-the-core-team-agenda.md} (100%) rename posts/inside-rust/{2020-02-27-pietro-joins-core-team.md => pietro-joins-core-team.md} (100%) rename posts/inside-rust/{2019-10-25-planning-meeting-update.md => planning-meeting-update.md} (100%) rename posts/inside-rust/{2021-03-04-planning-rust-2021.md => planning-rust-2021.md} (100%) rename posts/inside-rust/{2019-10-24-pnkfelix-compiler-team-co-lead.md => pnkfelix-compiler-team-co-lead.md} (100%) rename posts/inside-rust/{2023-10-06-polonius-update.md => polonius-update.md} (100%) rename posts/inside-rust/{2023-09-22-project-director-nominees.md => project-director-nominees.md} (100%) rename posts/inside-rust/{2024-12-17-project-director-update.md => project-director-update@0.md} (100%) rename posts/inside-rust/{2025-01-30-project-director-update.md => project-director-update@1.md} (100%) rename posts/inside-rust/{2025-02-24-project-director-update.md => project-director-update@2.md} (100%) rename posts/inside-rust/{2024-11-04-project-goals-2025h1-call-for-proposals.md => project-goals-2025h1-call-for-proposals.md} (100%) rename posts/inside-rust/{2020-03-04-recent-future-pattern-matching-improvements.md => recent-future-pattern-matching-improvements.md} (100%) rename posts/inside-rust/{2025-02-27-relnotes-interest-group.md => relnotes-interest-group.md} (100%) rename posts/inside-rust/{2020-03-13-rename-rustc-guide.md => rename-rustc-guide.md} (100%) rename posts/inside-rust/{2023-08-02-rotating-compiler-leads.md => rotating-compiler-leads.md} (100%) rename posts/inside-rust/{2024-09-26-rtn-call-for-testing.md => rtn-call-for-testing.md} (100%) rename posts/inside-rust/{2020-07-23-rust-ci-is-moving-to-github-actions.md => rust-ci-is-moving-to-github-actions.md} (100%) rename posts/inside-rust/{2024-05-09-rust-leads-summit.md => rust-leads-summit.md} (100%) rename posts/inside-rust/{2020-03-26-rustc-dev-guide-overview.md => rustc-dev-guide-overview.md} (100%) rename posts/inside-rust/{2019-10-28-rustc-learning-working-group-introduction.md => rustc-learning-working-group-introduction.md} (100%) rename posts/inside-rust/{2021-01-15-rustdoc-performance-improvements.md => rustdoc-performance-improvements.md} (100%) rename posts/inside-rust/{2021-04-28-rustup-1.24.0-incident-report.md => rustup-1.24.0-incident-report.md} (100%) rename posts/inside-rust/{2021-02-15-shrinkmem-rustc-sprint.md => shrinkmem-rustc-sprint.md} (100%) rename posts/inside-rust/{2020-11-12-source-based-code-coverage.md => source-based-code-coverage.md} (100%) rename posts/inside-rust/{2023-11-15-spec-vision.md => spec-vision.md} (100%) rename posts/inside-rust/{2023-05-03-stabilizing-async-fn-in-trait.md => stabilizing-async-fn-in-trait.md} (100%) rename posts/inside-rust/{2020-09-17-stabilizing-intra-doc-links.md => stabilizing-intra-doc-links.md} (100%) rename posts/inside-rust/{2022-06-21-survey-2021-report.md => survey-2021-report.md} (100%) rename posts/inside-rust/{2020-03-19-terminating-rust.md => terminating-rust.md} (100%) rename posts/inside-rust/{2025-01-10-test-infra-dec-2024.md => test-infra-dec-2024.md} (100%) rename posts/inside-rust/{2024-12-09-test-infra-nov-2024.md => test-infra-nov-2024.md} (100%) rename posts/inside-rust/{2024-11-04-test-infra-oct-2024-2.md => test-infra-oct-2024-2.md} (100%) rename posts/inside-rust/{2024-10-10-test-infra-oct-2024.md => test-infra-oct-2024.md} (100%) rename posts/inside-rust/{2024-01-03-this-development-cycle-in-cargo-1-76.md => this-development-cycle-in-cargo-1-76.md} (100%) rename posts/inside-rust/{2024-02-13-this-development-cycle-in-cargo-1-77.md => this-development-cycle-in-cargo-1-77.md} (100%) rename posts/inside-rust/{2024-03-26-this-development-cycle-in-cargo-1.78.md => this-development-cycle-in-cargo-1.78.md} (100%) rename posts/inside-rust/{2024-05-07-this-development-cycle-in-cargo-1.79.md => this-development-cycle-in-cargo-1.79.md} (100%) rename posts/inside-rust/{2024-06-19-this-development-cycle-in-cargo-1.80.md => this-development-cycle-in-cargo-1.80.md} (100%) rename posts/inside-rust/{2024-08-15-this-development-cycle-in-cargo-1.81.md => this-development-cycle-in-cargo-1.81.md} (100%) rename posts/inside-rust/{2024-10-01-this-development-cycle-in-cargo-1.82.md => this-development-cycle-in-cargo-1.82.md} (100%) rename posts/inside-rust/{2024-10-31-this-development-cycle-in-cargo-1.83.md => this-development-cycle-in-cargo-1.83.md} (100%) rename posts/inside-rust/{2024-12-13-this-development-cycle-in-cargo-1.84.md => this-development-cycle-in-cargo-1.84.md} (100%) rename posts/inside-rust/{2025-01-17-this-development-cycle-in-cargo-1.85.md => this-development-cycle-in-cargo-1.85.md} (100%) rename posts/inside-rust/{2025-02-27-this-development-cycle-in-cargo-1.86.md => this-development-cycle-in-cargo-1.86.md} (100%) rename posts/inside-rust/{2023-04-12-trademark-policy-draft-feedback.md => trademark-policy-draft-feedback.md} (100%) rename posts/inside-rust/{2023-07-17-trait-system-refactor-initiative.md => trait-system-refactor-initiative@0.md} (100%) rename posts/inside-rust/{2023-12-22-trait-system-refactor-initiative.md => trait-system-refactor-initiative@1.md} (100%) rename posts/inside-rust/{2024-12-04-trait-system-refactor-initiative.md => trait-system-refactor-initiative@2.md} (100%) rename posts/inside-rust/{2020-03-28-traits-sprint-1.md => traits-sprint-1.md} (100%) rename posts/inside-rust/{2020-05-18-traits-sprint-2.md => traits-sprint-2.md} (100%) rename posts/inside-rust/{2020-07-17-traits-sprint-3.md => traits-sprint-3.md} (100%) rename posts/inside-rust/{2020-03-13-twir-new-lead.md => twir-new-lead.md} (100%) rename posts/inside-rust/{2024-04-12-types-team-leadership.md => types-team-leadership.md} (100%) rename posts/inside-rust/{2020-04-10-upcoming-compiler-team-design-meeting.md => upcoming-compiler-team-design-meeting@0.md} (100%) rename posts/inside-rust/{2020-06-08-upcoming-compiler-team-design-meeting.md => upcoming-compiler-team-design-meeting@1.md} (100%) rename posts/inside-rust/{2019-11-22-upcoming-compiler-team-design-meetings.md => upcoming-compiler-team-design-meetings@0.md} (100%) rename posts/inside-rust/{2020-01-24-upcoming-compiler-team-design-meetings.md => upcoming-compiler-team-design-meetings@1.md} (100%) rename posts/inside-rust/{2020-02-14-upcoming-compiler-team-design-meetings.md => upcoming-compiler-team-design-meetings@2.md} (100%) rename posts/inside-rust/{2020-03-13-upcoming-compiler-team-design-meetings.md => upcoming-compiler-team-design-meetings@3.md} (100%) rename posts/inside-rust/{2020-08-28-upcoming-compiler-team-design-meetings.md => upcoming-compiler-team-design-meetings@4.md} (100%) rename posts/inside-rust/{2020-04-07-update-on-the-github-actions-evaluation.md => update-on-the-github-actions-evaluation.md} (100%) rename posts/inside-rust/{2020-05-26-website-retrospective.md => website-retrospective.md} (100%) rename posts/inside-rust/{2024-08-01-welcome-tc-to-the-lang-team.md => welcome-tc-to-the-lang-team.md} (100%) rename posts/inside-rust/{2019-12-20-wg-learning-update.md => wg-learning-update.md} (100%) rename posts/inside-rust/{2020-06-09-windows-notification-group.md => windows-notification-group.md} (100%) rename posts/{2023-06-20-introducing-leadership-council.md => introducing-leadership-council.md} (100%) rename posts/{2017-03-02-lang-ergonomics.md => lang-ergonomics.md} (100%) rename posts/{2020-08-18-laying-the-foundation-for-rusts-future.md => laying-the-foundation-for-rusts-future.md} (100%) rename posts/{2017-05-05-libz-blitz.md => libz-blitz.md} (100%) rename posts/{2020-12-11-lock-poisoning-survey.md => lock-poisoning-survey.md} (100%) rename posts/{2022-05-10-malicious-crate-rustdecimal.md => malicious-crate-rustdecimal.md} (100%) rename posts/{2021-01-04-mdbook-security-advisory.md => mdbook-security-advisory.md} (100%) rename posts/{2018-01-03-new-years-rust-a-call-for-community-blogposts.md => new-years-rust-a-call-for-community-blogposts.md} (100%) rename posts/{2022-08-05-nll-by-default.md => nll-by-default.md} (100%) rename posts/{2019-11-01-nll-hard-errors.md => nll-hard-errors.md} (100%) rename posts/{2023-11-09-parallel-rustc.md => parallel-rustc.md} (100%) rename posts/{2024-12-16-project-goals-nov-update.md => project-goals-nov-update.md} (100%) rename posts/{2024-10-31-project-goals-oct-update.md => project-goals-oct-update.md} (100%) rename posts/{2020-01-03-reducing-support-for-32-bit-apple-targets.md => reducing-support-for-32-bit-apple-targets.md} (100%) rename posts/{2023-07-05-regex-1.9.md => regex-1.9.md} (100%) rename posts/{2020-10-20-regression-labels.md => regression-labels.md} (100%) rename posts/{2017-02-06-roadmap.md => roadmap@0.md} (100%) rename posts/{2018-03-12-roadmap.md => roadmap@1.md} (100%) rename posts/{2019-04-23-roadmap.md => roadmap@2.md} (100%) rename posts/{2025-01-22-rust-2024-beta.md => rust-2024-beta.md} (100%) rename posts/{2022-02-21-rust-analyzer-joins-rust-org.md => rust-analyzer-joins-rust-org.md} (100%) rename posts/{2016-05-16-rust-at-one-year.md => rust-at-one-year.md} (100%) rename posts/{2017-05-15-rust-at-two-years.md => rust-at-two-years.md} (100%) rename posts/{2017-12-21-rust-in-2017.md => rust-in-2017.md} (100%) rename posts/{2020-12-16-rust-survey-2020.md => rust-survey-2020.md} (100%) rename posts/{2022-06-28-rust-unconference.md => rust-unconference.md} (100%) rename posts/{2020-03-10-rustconf-cfp.md => rustconf-cfp.md} (100%) rename posts/{2023-07-01-rustfmt-supports-let-else-statements.md => rustfmt-supports-let-else-statements.md} (100%) rename posts/{2016-05-13-rustup.md => rustup.md} (100%) rename posts/{2018-07-06-security-advisory-for-rustdoc.md => security-advisory-for-rustdoc.md} (100%) rename posts/{2021-05-15-six-years-of-rust.md => six-years-of-rust.md} (100%) rename posts/{2022-06-22-sparse-registry-testing.md => sparse-registry-testing.md} (100%) rename posts/{2019-12-03-survey-launch.md => survey-launch@0.md} (100%) rename posts/{2020-09-10-survey-launch.md => survey-launch@1.md} (100%) rename posts/{2021-12-08-survey-launch.md => survey-launch@2.md} (100%) rename posts/{2022-12-05-survey-launch.md => survey-launch@3.md} (100%) rename posts/{2023-12-18-survey-launch.md => survey-launch@4.md} (100%) rename posts/{2016-05-09-survey.md => survey@0.md} (100%) rename posts/{2017-05-03-survey.md => survey@1.md} (100%) rename posts/{2018-08-08-survey.md => survey@2.md} (100%) rename posts/{2020-12-07-the-foundation-conversation.md => the-foundation-conversation.md} (100%) rename posts/{2024-11-06-trademark-update.md => trademark-update.md} (100%) rename posts/{2015-05-11-traits.md => traits.md} (100%) rename posts/{2023-01-20-types-announcement.md => types-announcement.md} (100%) rename posts/{2024-06-26-types-team-update.md => types-team-update.md} (100%) rename posts/{2019-09-18-upcoming-docsrs-changes.md => upcoming-docsrs-changes.md} (100%) rename posts/{2024-04-09-updates-to-rusts-wasi-targets.md => updates-to-rusts-wasi-targets.md} (100%) rename posts/{2024-11-26-wasip2-tier-2.md => wasip2-tier-2.md} (100%) rename posts/{2024-09-24-webassembly-targets-change-in-default-target-features.md => webassembly-targets-change-in-default-target-features.md} (100%) rename posts/{2020-09-14-wg-prio-call-for-contributors.md => wg-prio-call-for-contributors.md} (100%) rename posts/{2018-07-27-what-is-rust-2018.md => what-is-rust-2018.md} (100%) diff --git a/posts/2014-12-12-1.0-Timeline.md b/posts/1.0-Timeline.md similarity index 100% rename from posts/2014-12-12-1.0-Timeline.md rename to posts/1.0-Timeline.md diff --git a/posts/2024-02-19-2023-Rust-Annual-Survey-2023-results.md b/posts/2023-Rust-Annual-Survey-2023-results.md similarity index 100% rename from posts/2024-02-19-2023-Rust-Annual-Survey-2023-results.md rename to posts/2023-Rust-Annual-Survey-2023-results.md diff --git a/posts/2023-12-15-2024-Edition-CFP.md b/posts/2024-Edition-CFP.md similarity index 100% rename from posts/2023-12-15-2024-Edition-CFP.md rename to posts/2024-Edition-CFP.md diff --git a/posts/2025-02-13-2024-State-Of-Rust-Survey-results.md b/posts/2024-State-Of-Rust-Survey-results.md similarity index 100% rename from posts/2025-02-13-2024-State-Of-Rust-Survey-results.md rename to posts/2024-State-Of-Rust-Survey-results.md diff --git a/posts/2019-05-15-4-Years-Of-Rust.md b/posts/4-Years-Of-Rust.md similarity index 100% rename from posts/2019-05-15-4-Years-Of-Rust.md rename to posts/4-Years-Of-Rust.md diff --git a/posts/2019-10-29-A-call-for-blogs-2020.md b/posts/A-call-for-blogs-2020.md similarity index 100% rename from posts/2019-10-29-A-call-for-blogs-2020.md rename to posts/A-call-for-blogs-2020.md diff --git a/posts/2019-09-30-Async-await-hits-beta.md b/posts/Async-await-hits-beta.md similarity index 100% rename from posts/2019-09-30-Async-await-hits-beta.md rename to posts/Async-await-hits-beta.md diff --git a/posts/2019-11-07-Async-await-stable.md b/posts/Async-await-stable.md similarity index 100% rename from posts/2019-11-07-Async-await-stable.md rename to posts/Async-await-stable.md diff --git a/posts/2014-11-20-Cargo.md b/posts/Cargo.md similarity index 100% rename from posts/2014-11-20-Cargo.md rename to posts/Cargo.md diff --git a/posts/2024-02-28-Clippy-deprecating-feature-cargo-clippy.md b/posts/Clippy-deprecating-feature-cargo-clippy.md similarity index 100% rename from posts/2024-02-28-Clippy-deprecating-feature-cargo-clippy.md rename to posts/Clippy-deprecating-feature-cargo-clippy.md diff --git a/posts/2014-12-12-Core-Team.md b/posts/Core-Team.md similarity index 100% rename from posts/2014-12-12-Core-Team.md rename to posts/Core-Team.md diff --git a/posts/2019-02-22-Core-team-changes.md b/posts/Core-team-changes.md similarity index 100% rename from posts/2019-02-22-Core-team-changes.md rename to posts/Core-team-changes.md diff --git a/posts/2021-09-27-Core-team-membership-updates.md b/posts/Core-team-membership-updates.md similarity index 100% rename from posts/2021-09-27-Core-team-membership-updates.md rename to posts/Core-team-membership-updates.md diff --git a/posts/2015-04-17-Enums-match-mutation-and-moves.md b/posts/Enums-match-mutation-and-moves.md similarity index 100% rename from posts/2015-04-17-Enums-match-mutation-and-moves.md rename to posts/Enums-match-mutation-and-moves.md diff --git a/posts/2017-11-14-Fearless-Concurrency-In-Firefox-Quantum.md b/posts/Fearless-Concurrency-In-Firefox-Quantum.md similarity index 100% rename from posts/2017-11-14-Fearless-Concurrency-In-Firefox-Quantum.md rename to posts/Fearless-Concurrency-In-Firefox-Quantum.md diff --git a/posts/2015-04-10-Fearless-Concurrency.md b/posts/Fearless-Concurrency.md similarity index 100% rename from posts/2015-04-10-Fearless-Concurrency.md rename to posts/Fearless-Concurrency.md diff --git a/posts/2015-02-13-Final-1.0-timeline.md b/posts/Final-1.0-timeline.md similarity index 100% rename from posts/2015-02-13-Final-1.0-timeline.md rename to posts/Final-1.0-timeline.md diff --git a/posts/2021-08-03-GATs-stabilization-push.md b/posts/GATs-stabilization-push.md similarity index 100% rename from posts/2021-08-03-GATs-stabilization-push.md rename to posts/GATs-stabilization-push.md diff --git a/posts/2023-09-25-Increasing-Apple-Version-Requirements.md b/posts/Increasing-Apple-Version-Requirements.md similarity index 100% rename from posts/2023-09-25-Increasing-Apple-Version-Requirements.md rename to posts/Increasing-Apple-Version-Requirements.md diff --git a/posts/2018-04-02-Increasing-Rusts-Reach-2018.md b/posts/Increasing-Rusts-Reach-2018.md similarity index 100% rename from posts/2018-04-02-Increasing-Rusts-Reach-2018.md rename to posts/Increasing-Rusts-Reach-2018.md diff --git a/posts/2017-06-27-Increasing-Rusts-Reach.md b/posts/Increasing-Rusts-Reach.md similarity index 100% rename from posts/2017-06-27-Increasing-Rusts-Reach.md rename to posts/Increasing-Rusts-Reach.md diff --git a/posts/2022-08-01-Increasing-glibc-kernel-requirements.md b/posts/Increasing-glibc-kernel-requirements.md similarity index 100% rename from posts/2022-08-01-Increasing-glibc-kernel-requirements.md rename to posts/Increasing-glibc-kernel-requirements.md diff --git a/posts/2016-04-19-MIR.md b/posts/MIR.md similarity index 100% rename from posts/2016-04-19-MIR.md rename to posts/MIR.md diff --git a/posts/2019-04-26-Mozilla-IRC-Sunset-and-the-Rust-Channel.md b/posts/Mozilla-IRC-Sunset-and-the-Rust-Channel.md similarity index 100% rename from posts/2019-04-26-Mozilla-IRC-Sunset-and-the-Rust-Channel.md rename to posts/Mozilla-IRC-Sunset-and-the-Rust-Channel.md diff --git a/posts/2020-12-14-Next-steps-for-the-foundation-conversation.md b/posts/Next-steps-for-the-foundation-conversation.md similarity index 100% rename from posts/2020-12-14-Next-steps-for-the-foundation-conversation.md rename to posts/Next-steps-for-the-foundation-conversation.md diff --git a/posts/2015-08-14-Next-year.md b/posts/Next-year.md similarity index 100% rename from posts/2015-08-14-Next-year.md rename to posts/Next-year.md diff --git a/posts/2024-05-07-OSPP-2024.md b/posts/OSPP-2024.md similarity index 100% rename from posts/2024-05-07-OSPP-2024.md rename to posts/OSPP-2024.md diff --git a/posts/2020-09-03-Planning-2021-Roadmap.md b/posts/Planning-2021-Roadmap.md similarity index 100% rename from posts/2020-09-03-Planning-2021-Roadmap.md rename to posts/Planning-2021-Roadmap.md diff --git a/posts/2018-12-21-Procedural-Macros-in-Rust-2018.md b/posts/Procedural-Macros-in-Rust-2018.md similarity index 100% rename from posts/2018-12-21-Procedural-Macros-in-Rust-2018.md rename to posts/Procedural-Macros-in-Rust-2018.md diff --git a/posts/2025-01-23-Project-Goals-Dec-Update.md b/posts/Project-Goals-Dec-Update.md similarity index 100% rename from posts/2025-01-23-Project-Goals-Dec-Update.md rename to posts/Project-Goals-Dec-Update.md diff --git a/posts/2025-03-03-Project-Goals-Feb-Update.md b/posts/Project-Goals-Feb-Update.md similarity index 100% rename from posts/2025-03-03-Project-Goals-Feb-Update.md rename to posts/Project-Goals-Feb-Update.md diff --git a/posts/2024-09-23-Project-Goals-Sep-Update.md b/posts/Project-Goals-Sep-Update.md similarity index 100% rename from posts/2024-09-23-Project-Goals-Sep-Update.md rename to posts/Project-Goals-Sep-Update.md diff --git a/posts/2024-08-12-Project-goals.md b/posts/Project-goals.md similarity index 100% rename from posts/2024-08-12-Project-goals.md rename to posts/Project-goals.md diff --git a/posts/2022-07-01-RLS-deprecation.md b/posts/RLS-deprecation.md similarity index 100% rename from posts/2022-07-01-RLS-deprecation.md rename to posts/RLS-deprecation.md diff --git a/posts/2015-01-09-Rust-1.0-alpha.md b/posts/Rust-1.0-alpha.md similarity index 100% rename from posts/2015-01-09-Rust-1.0-alpha.md rename to posts/Rust-1.0-alpha.md diff --git a/posts/2015-02-20-Rust-1.0-alpha2.md b/posts/Rust-1.0-alpha2.md similarity index 100% rename from posts/2015-02-20-Rust-1.0-alpha2.md rename to posts/Rust-1.0-alpha2.md diff --git a/posts/2015-04-03-Rust-1.0-beta.md b/posts/Rust-1.0-beta.md similarity index 100% rename from posts/2015-04-03-Rust-1.0-beta.md rename to posts/Rust-1.0-beta.md diff --git a/posts/2014-09-15-Rust-1.0.md b/posts/Rust-1.0@0.md similarity index 100% rename from posts/2014-09-15-Rust-1.0.md rename to posts/Rust-1.0@0.md diff --git a/posts/2015-05-15-Rust-1.0.md b/posts/Rust-1.0@1.md similarity index 100% rename from posts/2015-05-15-Rust-1.0.md rename to posts/Rust-1.0@1.md diff --git a/posts/2015-06-25-Rust-1.1.md b/posts/Rust-1.1.md similarity index 100% rename from posts/2015-06-25-Rust-1.1.md rename to posts/Rust-1.1.md diff --git a/posts/2016-07-07-Rust-1.10.md b/posts/Rust-1.10.md similarity index 100% rename from posts/2016-07-07-Rust-1.10.md rename to posts/Rust-1.10.md diff --git a/posts/2016-08-18-Rust-1.11.md b/posts/Rust-1.11.md similarity index 100% rename from posts/2016-08-18-Rust-1.11.md rename to posts/Rust-1.11.md diff --git a/posts/2016-10-20-Rust-1.12.1.md b/posts/Rust-1.12.1.md similarity index 100% rename from posts/2016-10-20-Rust-1.12.1.md rename to posts/Rust-1.12.1.md diff --git a/posts/2016-09-29-Rust-1.12.md b/posts/Rust-1.12.md similarity index 100% rename from posts/2016-09-29-Rust-1.12.md rename to posts/Rust-1.12.md diff --git a/posts/2016-11-10-Rust-1.13.md b/posts/Rust-1.13.md similarity index 100% rename from posts/2016-11-10-Rust-1.13.md rename to posts/Rust-1.13.md diff --git a/posts/2016-12-22-Rust-1.14.md b/posts/Rust-1.14.md similarity index 100% rename from posts/2016-12-22-Rust-1.14.md rename to posts/Rust-1.14.md diff --git a/posts/2017-02-09-Rust-1.15.1.md b/posts/Rust-1.15.1.md similarity index 100% rename from posts/2017-02-09-Rust-1.15.1.md rename to posts/Rust-1.15.1.md diff --git a/posts/2017-02-02-Rust-1.15.md b/posts/Rust-1.15.md similarity index 100% rename from posts/2017-02-02-Rust-1.15.md rename to posts/Rust-1.15.md diff --git a/posts/2017-03-16-Rust-1.16.md b/posts/Rust-1.16.md similarity index 100% rename from posts/2017-03-16-Rust-1.16.md rename to posts/Rust-1.16.md diff --git a/posts/2017-04-27-Rust-1.17.md b/posts/Rust-1.17.md similarity index 100% rename from posts/2017-04-27-Rust-1.17.md rename to posts/Rust-1.17.md diff --git a/posts/2017-06-08-Rust-1.18.md b/posts/Rust-1.18.md similarity index 100% rename from posts/2017-06-08-Rust-1.18.md rename to posts/Rust-1.18.md diff --git a/posts/2017-07-20-Rust-1.19.md b/posts/Rust-1.19.md similarity index 100% rename from posts/2017-07-20-Rust-1.19.md rename to posts/Rust-1.19.md diff --git a/posts/2015-08-06-Rust-1.2.md b/posts/Rust-1.2.md similarity index 100% rename from posts/2015-08-06-Rust-1.2.md rename to posts/Rust-1.2.md diff --git a/posts/2017-08-31-Rust-1.20.md b/posts/Rust-1.20.md similarity index 100% rename from posts/2017-08-31-Rust-1.20.md rename to posts/Rust-1.20.md diff --git a/posts/2017-10-12-Rust-1.21.md b/posts/Rust-1.21.md similarity index 100% rename from posts/2017-10-12-Rust-1.21.md rename to posts/Rust-1.21.md diff --git a/posts/2017-11-22-Rust-1.22.md b/posts/Rust-1.22.md similarity index 100% rename from posts/2017-11-22-Rust-1.22.md rename to posts/Rust-1.22.md diff --git a/posts/2018-01-04-Rust-1.23.md b/posts/Rust-1.23.md similarity index 100% rename from posts/2018-01-04-Rust-1.23.md rename to posts/Rust-1.23.md diff --git a/posts/2018-03-01-Rust-1.24.1.md b/posts/Rust-1.24.1.md similarity index 100% rename from posts/2018-03-01-Rust-1.24.1.md rename to posts/Rust-1.24.1.md diff --git a/posts/2018-02-15-Rust-1.24.md b/posts/Rust-1.24.md similarity index 100% rename from posts/2018-02-15-Rust-1.24.md rename to posts/Rust-1.24.md diff --git a/posts/2018-03-29-Rust-1.25.md b/posts/Rust-1.25.md similarity index 100% rename from posts/2018-03-29-Rust-1.25.md rename to posts/Rust-1.25.md diff --git a/posts/2018-05-29-Rust-1.26.1.md b/posts/Rust-1.26.1.md similarity index 100% rename from posts/2018-05-29-Rust-1.26.1.md rename to posts/Rust-1.26.1.md diff --git a/posts/2018-06-05-Rust-1.26.2.md b/posts/Rust-1.26.2.md similarity index 100% rename from posts/2018-06-05-Rust-1.26.2.md rename to posts/Rust-1.26.2.md diff --git a/posts/2018-05-10-Rust-1.26.md b/posts/Rust-1.26.md similarity index 100% rename from posts/2018-05-10-Rust-1.26.md rename to posts/Rust-1.26.md diff --git a/posts/2018-07-10-Rust-1.27.1.md b/posts/Rust-1.27.1.md similarity index 100% rename from posts/2018-07-10-Rust-1.27.1.md rename to posts/Rust-1.27.1.md diff --git a/posts/2018-07-20-Rust-1.27.2.md b/posts/Rust-1.27.2.md similarity index 100% rename from posts/2018-07-20-Rust-1.27.2.md rename to posts/Rust-1.27.2.md diff --git a/posts/2018-06-21-Rust-1.27.md b/posts/Rust-1.27.md similarity index 100% rename from posts/2018-06-21-Rust-1.27.md rename to posts/Rust-1.27.md diff --git a/posts/2018-08-02-Rust-1.28.md b/posts/Rust-1.28.md similarity index 100% rename from posts/2018-08-02-Rust-1.28.md rename to posts/Rust-1.28.md diff --git a/posts/2018-09-25-Rust-1.29.1.md b/posts/Rust-1.29.1.md similarity index 100% rename from posts/2018-09-25-Rust-1.29.1.md rename to posts/Rust-1.29.1.md diff --git a/posts/2018-10-12-Rust-1.29.2.md b/posts/Rust-1.29.2.md similarity index 100% rename from posts/2018-10-12-Rust-1.29.2.md rename to posts/Rust-1.29.2.md diff --git a/posts/2018-09-13-Rust-1.29.md b/posts/Rust-1.29.md similarity index 100% rename from posts/2018-09-13-Rust-1.29.md rename to posts/Rust-1.29.md diff --git a/posts/2015-09-17-Rust-1.3.md b/posts/Rust-1.3.md similarity index 100% rename from posts/2015-09-17-Rust-1.3.md rename to posts/Rust-1.3.md diff --git a/posts/2018-10-25-Rust-1.30.0.md b/posts/Rust-1.30.0.md similarity index 100% rename from posts/2018-10-25-Rust-1.30.0.md rename to posts/Rust-1.30.0.md diff --git a/posts/2018-11-08-Rust-1.30.1.md b/posts/Rust-1.30.1.md similarity index 100% rename from posts/2018-11-08-Rust-1.30.1.md rename to posts/Rust-1.30.1.md diff --git a/posts/2018-12-06-Rust-1.31-and-rust-2018.md b/posts/Rust-1.31-and-rust-2018.md similarity index 100% rename from posts/2018-12-06-Rust-1.31-and-rust-2018.md rename to posts/Rust-1.31-and-rust-2018.md diff --git a/posts/2018-12-20-Rust-1.31.1.md b/posts/Rust-1.31.1.md similarity index 100% rename from posts/2018-12-20-Rust-1.31.1.md rename to posts/Rust-1.31.1.md diff --git a/posts/2019-01-17-Rust-1.32.0.md b/posts/Rust-1.32.0.md similarity index 100% rename from posts/2019-01-17-Rust-1.32.0.md rename to posts/Rust-1.32.0.md diff --git a/posts/2019-02-28-Rust-1.33.0.md b/posts/Rust-1.33.0.md similarity index 100% rename from posts/2019-02-28-Rust-1.33.0.md rename to posts/Rust-1.33.0.md diff --git a/posts/2019-04-11-Rust-1.34.0.md b/posts/Rust-1.34.0.md similarity index 100% rename from posts/2019-04-11-Rust-1.34.0.md rename to posts/Rust-1.34.0.md diff --git a/posts/2019-04-25-Rust-1.34.1.md b/posts/Rust-1.34.1.md similarity index 100% rename from posts/2019-04-25-Rust-1.34.1.md rename to posts/Rust-1.34.1.md diff --git a/posts/2019-05-14-Rust-1.34.2.md b/posts/Rust-1.34.2.md similarity index 100% rename from posts/2019-05-14-Rust-1.34.2.md rename to posts/Rust-1.34.2.md diff --git a/posts/2019-05-23-Rust-1.35.0.md b/posts/Rust-1.35.0.md similarity index 100% rename from posts/2019-05-23-Rust-1.35.0.md rename to posts/Rust-1.35.0.md diff --git a/posts/2019-07-04-Rust-1.36.0.md b/posts/Rust-1.36.0.md similarity index 100% rename from posts/2019-07-04-Rust-1.36.0.md rename to posts/Rust-1.36.0.md diff --git a/posts/2019-08-15-Rust-1.37.0.md b/posts/Rust-1.37.0.md similarity index 100% rename from posts/2019-08-15-Rust-1.37.0.md rename to posts/Rust-1.37.0.md diff --git a/posts/2019-09-26-Rust-1.38.0.md b/posts/Rust-1.38.0.md similarity index 100% rename from posts/2019-09-26-Rust-1.38.0.md rename to posts/Rust-1.38.0.md diff --git a/posts/2019-11-07-Rust-1.39.0.md b/posts/Rust-1.39.0.md similarity index 100% rename from posts/2019-11-07-Rust-1.39.0.md rename to posts/Rust-1.39.0.md diff --git a/posts/2015-10-29-Rust-1.4.md b/posts/Rust-1.4.md similarity index 100% rename from posts/2015-10-29-Rust-1.4.md rename to posts/Rust-1.4.md diff --git a/posts/2019-12-19-Rust-1.40.0.md b/posts/Rust-1.40.0.md similarity index 100% rename from posts/2019-12-19-Rust-1.40.0.md rename to posts/Rust-1.40.0.md diff --git a/posts/2020-01-30-Rust-1.41.0.md b/posts/Rust-1.41.0.md similarity index 100% rename from posts/2020-01-30-Rust-1.41.0.md rename to posts/Rust-1.41.0.md diff --git a/posts/2020-02-27-Rust-1.41.1.md b/posts/Rust-1.41.1.md similarity index 100% rename from posts/2020-02-27-Rust-1.41.1.md rename to posts/Rust-1.41.1.md diff --git a/posts/2020-03-12-Rust-1.42.md b/posts/Rust-1.42.md similarity index 100% rename from posts/2020-03-12-Rust-1.42.md rename to posts/Rust-1.42.md diff --git a/posts/2020-04-23-Rust-1.43.0.md b/posts/Rust-1.43.0.md similarity index 100% rename from posts/2020-04-23-Rust-1.43.0.md rename to posts/Rust-1.43.0.md diff --git a/posts/2020-06-04-Rust-1.44.0.md b/posts/Rust-1.44.0.md similarity index 100% rename from posts/2020-06-04-Rust-1.44.0.md rename to posts/Rust-1.44.0.md diff --git a/posts/2020-07-16-Rust-1.45.0.md b/posts/Rust-1.45.0.md similarity index 100% rename from posts/2020-07-16-Rust-1.45.0.md rename to posts/Rust-1.45.0.md diff --git a/posts/2020-07-30-Rust-1.45.1.md b/posts/Rust-1.45.1.md similarity index 100% rename from posts/2020-07-30-Rust-1.45.1.md rename to posts/Rust-1.45.1.md diff --git a/posts/2020-08-03-Rust-1.45.2.md b/posts/Rust-1.45.2.md similarity index 100% rename from posts/2020-08-03-Rust-1.45.2.md rename to posts/Rust-1.45.2.md diff --git a/posts/2020-08-27-Rust-1.46.0.md b/posts/Rust-1.46.0.md similarity index 100% rename from posts/2020-08-27-Rust-1.46.0.md rename to posts/Rust-1.46.0.md diff --git a/posts/2020-10-08-Rust-1.47.md b/posts/Rust-1.47.md similarity index 100% rename from posts/2020-10-08-Rust-1.47.md rename to posts/Rust-1.47.md diff --git a/posts/2020-11-19-Rust-1.48.md b/posts/Rust-1.48.md similarity index 100% rename from posts/2020-11-19-Rust-1.48.md rename to posts/Rust-1.48.md diff --git a/posts/2020-12-31-Rust-1.49.0.md b/posts/Rust-1.49.0.md similarity index 100% rename from posts/2020-12-31-Rust-1.49.0.md rename to posts/Rust-1.49.0.md diff --git a/posts/2015-12-10-Rust-1.5.md b/posts/Rust-1.5.md similarity index 100% rename from posts/2015-12-10-Rust-1.5.md rename to posts/Rust-1.5.md diff --git a/posts/2021-02-11-Rust-1.50.0.md b/posts/Rust-1.50.0.md similarity index 100% rename from posts/2021-02-11-Rust-1.50.0.md rename to posts/Rust-1.50.0.md diff --git a/posts/2021-03-25-Rust-1.51.0.md b/posts/Rust-1.51.0.md similarity index 100% rename from posts/2021-03-25-Rust-1.51.0.md rename to posts/Rust-1.51.0.md diff --git a/posts/2021-05-06-Rust-1.52.0.md b/posts/Rust-1.52.0.md similarity index 100% rename from posts/2021-05-06-Rust-1.52.0.md rename to posts/Rust-1.52.0.md diff --git a/posts/2021-05-10-Rust-1.52.1.md b/posts/Rust-1.52.1.md similarity index 100% rename from posts/2021-05-10-Rust-1.52.1.md rename to posts/Rust-1.52.1.md diff --git a/posts/2021-06-17-Rust-1.53.0.md b/posts/Rust-1.53.0.md similarity index 100% rename from posts/2021-06-17-Rust-1.53.0.md rename to posts/Rust-1.53.0.md diff --git a/posts/2021-07-29-Rust-1.54.0.md b/posts/Rust-1.54.0.md similarity index 100% rename from posts/2021-07-29-Rust-1.54.0.md rename to posts/Rust-1.54.0.md diff --git a/posts/2021-09-09-Rust-1.55.0.md b/posts/Rust-1.55.0.md similarity index 100% rename from posts/2021-09-09-Rust-1.55.0.md rename to posts/Rust-1.55.0.md diff --git a/posts/2021-10-21-Rust-1.56.0.md b/posts/Rust-1.56.0.md similarity index 100% rename from posts/2021-10-21-Rust-1.56.0.md rename to posts/Rust-1.56.0.md diff --git a/posts/2021-11-01-Rust-1.56.1.md b/posts/Rust-1.56.1.md similarity index 100% rename from posts/2021-11-01-Rust-1.56.1.md rename to posts/Rust-1.56.1.md diff --git a/posts/2021-12-02-Rust-1.57.0.md b/posts/Rust-1.57.0.md similarity index 100% rename from posts/2021-12-02-Rust-1.57.0.md rename to posts/Rust-1.57.0.md diff --git a/posts/2022-01-13-Rust-1.58.0.md b/posts/Rust-1.58.0.md similarity index 100% rename from posts/2022-01-13-Rust-1.58.0.md rename to posts/Rust-1.58.0.md diff --git a/posts/2022-01-20-Rust-1.58.1.md b/posts/Rust-1.58.1.md similarity index 100% rename from posts/2022-01-20-Rust-1.58.1.md rename to posts/Rust-1.58.1.md diff --git a/posts/2022-02-24-Rust-1.59.0.md b/posts/Rust-1.59.0.md similarity index 100% rename from posts/2022-02-24-Rust-1.59.0.md rename to posts/Rust-1.59.0.md diff --git a/posts/2016-01-21-Rust-1.6.md b/posts/Rust-1.6.md similarity index 100% rename from posts/2016-01-21-Rust-1.6.md rename to posts/Rust-1.6.md diff --git a/posts/2022-04-07-Rust-1.60.0.md b/posts/Rust-1.60.0.md similarity index 100% rename from posts/2022-04-07-Rust-1.60.0.md rename to posts/Rust-1.60.0.md diff --git a/posts/2022-05-19-Rust-1.61.0.md b/posts/Rust-1.61.0.md similarity index 100% rename from posts/2022-05-19-Rust-1.61.0.md rename to posts/Rust-1.61.0.md diff --git a/posts/2022-06-30-Rust-1.62.0.md b/posts/Rust-1.62.0.md similarity index 100% rename from posts/2022-06-30-Rust-1.62.0.md rename to posts/Rust-1.62.0.md diff --git a/posts/2022-07-19-Rust-1.62.1.md b/posts/Rust-1.62.1.md similarity index 100% rename from posts/2022-07-19-Rust-1.62.1.md rename to posts/Rust-1.62.1.md diff --git a/posts/2022-08-11-Rust-1.63.0.md b/posts/Rust-1.63.0.md similarity index 100% rename from posts/2022-08-11-Rust-1.63.0.md rename to posts/Rust-1.63.0.md diff --git a/posts/2022-09-22-Rust-1.64.0.md b/posts/Rust-1.64.0.md similarity index 100% rename from posts/2022-09-22-Rust-1.64.0.md rename to posts/Rust-1.64.0.md diff --git a/posts/2022-11-03-Rust-1.65.0.md b/posts/Rust-1.65.0.md similarity index 100% rename from posts/2022-11-03-Rust-1.65.0.md rename to posts/Rust-1.65.0.md diff --git a/posts/2022-12-15-Rust-1.66.0.md b/posts/Rust-1.66.0.md similarity index 100% rename from posts/2022-12-15-Rust-1.66.0.md rename to posts/Rust-1.66.0.md diff --git a/posts/2023-01-10-Rust-1.66.1.md b/posts/Rust-1.66.1.md similarity index 100% rename from posts/2023-01-10-Rust-1.66.1.md rename to posts/Rust-1.66.1.md diff --git a/posts/2023-01-26-Rust-1.67.0.md b/posts/Rust-1.67.0.md similarity index 100% rename from posts/2023-01-26-Rust-1.67.0.md rename to posts/Rust-1.67.0.md diff --git a/posts/2023-02-09-Rust-1.67.1.md b/posts/Rust-1.67.1.md similarity index 100% rename from posts/2023-02-09-Rust-1.67.1.md rename to posts/Rust-1.67.1.md diff --git a/posts/2023-03-09-Rust-1.68.0.md b/posts/Rust-1.68.0.md similarity index 100% rename from posts/2023-03-09-Rust-1.68.0.md rename to posts/Rust-1.68.0.md diff --git a/posts/2023-03-23-Rust-1.68.1.md b/posts/Rust-1.68.1.md similarity index 100% rename from posts/2023-03-23-Rust-1.68.1.md rename to posts/Rust-1.68.1.md diff --git a/posts/2023-03-28-Rust-1.68.2.md b/posts/Rust-1.68.2.md similarity index 100% rename from posts/2023-03-28-Rust-1.68.2.md rename to posts/Rust-1.68.2.md diff --git a/posts/2023-04-20-Rust-1.69.0.md b/posts/Rust-1.69.0.md similarity index 100% rename from posts/2023-04-20-Rust-1.69.0.md rename to posts/Rust-1.69.0.md diff --git a/posts/2016-03-02-Rust-1.7.md b/posts/Rust-1.7.md similarity index 100% rename from posts/2016-03-02-Rust-1.7.md rename to posts/Rust-1.7.md diff --git a/posts/2023-06-01-Rust-1.70.0.md b/posts/Rust-1.70.0.md similarity index 100% rename from posts/2023-06-01-Rust-1.70.0.md rename to posts/Rust-1.70.0.md diff --git a/posts/2023-07-13-Rust-1.71.0.md b/posts/Rust-1.71.0.md similarity index 100% rename from posts/2023-07-13-Rust-1.71.0.md rename to posts/Rust-1.71.0.md diff --git a/posts/2023-08-03-Rust-1.71.1.md b/posts/Rust-1.71.1.md similarity index 100% rename from posts/2023-08-03-Rust-1.71.1.md rename to posts/Rust-1.71.1.md diff --git a/posts/2023-08-24-Rust-1.72.0.md b/posts/Rust-1.72.0.md similarity index 100% rename from posts/2023-08-24-Rust-1.72.0.md rename to posts/Rust-1.72.0.md diff --git a/posts/2023-09-19-Rust-1.72.1.md b/posts/Rust-1.72.1.md similarity index 100% rename from posts/2023-09-19-Rust-1.72.1.md rename to posts/Rust-1.72.1.md diff --git a/posts/2023-10-05-Rust-1.73.0.md b/posts/Rust-1.73.0.md similarity index 100% rename from posts/2023-10-05-Rust-1.73.0.md rename to posts/Rust-1.73.0.md diff --git a/posts/2023-11-16-Rust-1.74.0.md b/posts/Rust-1.74.0.md similarity index 100% rename from posts/2023-11-16-Rust-1.74.0.md rename to posts/Rust-1.74.0.md diff --git a/posts/2023-12-07-Rust-1.74.1.md b/posts/Rust-1.74.1.md similarity index 100% rename from posts/2023-12-07-Rust-1.74.1.md rename to posts/Rust-1.74.1.md diff --git a/posts/2023-12-28-Rust-1.75.0.md b/posts/Rust-1.75.0.md similarity index 100% rename from posts/2023-12-28-Rust-1.75.0.md rename to posts/Rust-1.75.0.md diff --git a/posts/2024-02-08-Rust-1.76.0.md b/posts/Rust-1.76.0.md similarity index 100% rename from posts/2024-02-08-Rust-1.76.0.md rename to posts/Rust-1.76.0.md diff --git a/posts/2024-03-21-Rust-1.77.0.md b/posts/Rust-1.77.0.md similarity index 100% rename from posts/2024-03-21-Rust-1.77.0.md rename to posts/Rust-1.77.0.md diff --git a/posts/2024-03-28-Rust-1.77.1.md b/posts/Rust-1.77.1.md similarity index 100% rename from posts/2024-03-28-Rust-1.77.1.md rename to posts/Rust-1.77.1.md diff --git a/posts/2024-04-09-Rust-1.77.2.md b/posts/Rust-1.77.2.md similarity index 100% rename from posts/2024-04-09-Rust-1.77.2.md rename to posts/Rust-1.77.2.md diff --git a/posts/2024-05-02-Rust-1.78.0.md b/posts/Rust-1.78.0.md similarity index 100% rename from posts/2024-05-02-Rust-1.78.0.md rename to posts/Rust-1.78.0.md diff --git a/posts/2024-06-13-Rust-1.79.0.md b/posts/Rust-1.79.0.md similarity index 100% rename from posts/2024-06-13-Rust-1.79.0.md rename to posts/Rust-1.79.0.md diff --git a/posts/2016-04-14-Rust-1.8.md b/posts/Rust-1.8.md similarity index 100% rename from posts/2016-04-14-Rust-1.8.md rename to posts/Rust-1.8.md diff --git a/posts/2024-07-25-Rust-1.80.0.md b/posts/Rust-1.80.0.md similarity index 100% rename from posts/2024-07-25-Rust-1.80.0.md rename to posts/Rust-1.80.0.md diff --git a/posts/2024-08-08-Rust-1.80.1.md b/posts/Rust-1.80.1.md similarity index 100% rename from posts/2024-08-08-Rust-1.80.1.md rename to posts/Rust-1.80.1.md diff --git a/posts/2024-09-05-Rust-1.81.0.md b/posts/Rust-1.81.0.md similarity index 100% rename from posts/2024-09-05-Rust-1.81.0.md rename to posts/Rust-1.81.0.md diff --git a/posts/2024-10-17-Rust-1.82.0.md b/posts/Rust-1.82.0.md similarity index 100% rename from posts/2024-10-17-Rust-1.82.0.md rename to posts/Rust-1.82.0.md diff --git a/posts/2024-11-28-Rust-1.83.0.md b/posts/Rust-1.83.0.md similarity index 100% rename from posts/2024-11-28-Rust-1.83.0.md rename to posts/Rust-1.83.0.md diff --git a/posts/2025-01-09-Rust-1.84.0.md b/posts/Rust-1.84.0.md similarity index 100% rename from posts/2025-01-09-Rust-1.84.0.md rename to posts/Rust-1.84.0.md diff --git a/posts/2025-01-30-Rust-1.84.1.md b/posts/Rust-1.84.1.md similarity index 100% rename from posts/2025-01-30-Rust-1.84.1.md rename to posts/Rust-1.84.1.md diff --git a/posts/2025-02-20-Rust-1.85.0.md b/posts/Rust-1.85.0.md similarity index 100% rename from posts/2025-02-20-Rust-1.85.0.md rename to posts/Rust-1.85.0.md diff --git a/posts/2016-05-26-Rust-1.9.md b/posts/Rust-1.9.md similarity index 100% rename from posts/2016-05-26-Rust-1.9.md rename to posts/Rust-1.9.md diff --git a/posts/2017-09-05-Rust-2017-Survey-Results.md b/posts/Rust-2017-Survey-Results.md similarity index 100% rename from posts/2017-09-05-Rust-2017-Survey-Results.md rename to posts/Rust-2017-Survey-Results.md diff --git a/posts/2018-12-17-Rust-2018-dev-tools.md b/posts/Rust-2018-dev-tools.md similarity index 100% rename from posts/2018-12-17-Rust-2018-dev-tools.md rename to posts/Rust-2018-dev-tools.md diff --git a/posts/2021-07-21-Rust-2021-public-testing.md b/posts/Rust-2021-public-testing.md similarity index 100% rename from posts/2021-07-21-Rust-2021-public-testing.md rename to posts/Rust-2021-public-testing.md diff --git a/posts/2024-11-27-Rust-2024-public-testing.md b/posts/Rust-2024-public-testing.md similarity index 100% rename from posts/2024-11-27-Rust-2024-public-testing.md rename to posts/Rust-2024-public-testing.md diff --git a/posts/2015-04-24-Rust-Once-Run-Everywhere.md b/posts/Rust-Once-Run-Everywhere.md similarity index 100% rename from posts/2015-04-24-Rust-Once-Run-Everywhere.md rename to posts/Rust-Once-Run-Everywhere.md diff --git a/posts/2017-07-05-Rust-Roadmap-Update.md b/posts/Rust-Roadmap-Update.md similarity index 100% rename from posts/2017-07-05-Rust-Roadmap-Update.md rename to posts/Rust-Roadmap-Update.md diff --git a/posts/2022-02-15-Rust-Survey-2021.md b/posts/Rust-Survey-2021.md similarity index 100% rename from posts/2022-02-15-Rust-Survey-2021.md rename to posts/Rust-Survey-2021.md diff --git a/posts/2023-08-07-Rust-Survey-2023-Results.md b/posts/Rust-Survey-2023-Results.md similarity index 100% rename from posts/2023-08-07-Rust-Survey-2023-Results.md rename to posts/Rust-Survey-2023-Results.md diff --git a/posts/2024-02-21-Rust-participates-in-GSoC-2024.md b/posts/Rust-participates-in-GSoC-2024.md similarity index 100% rename from posts/2024-02-21-Rust-participates-in-GSoC-2024.md rename to posts/Rust-participates-in-GSoC-2024.md diff --git a/posts/2025-03-03-Rust-participates-in-GSoC-2025.md b/posts/Rust-participates-in-GSoC-2025.md similarity index 100% rename from posts/2025-03-03-Rust-participates-in-GSoC-2025.md rename to posts/Rust-participates-in-GSoC-2025.md diff --git a/posts/2018-11-27-Rust-survey-2018.md b/posts/Rust-survey-2018.md similarity index 100% rename from posts/2018-11-27-Rust-survey-2018.md rename to posts/Rust-survey-2018.md diff --git a/posts/2020-04-17-Rust-survey-2019.md b/posts/Rust-survey-2019.md similarity index 100% rename from posts/2020-04-17-Rust-survey-2019.md rename to posts/Rust-survey-2019.md diff --git a/posts/2018-05-15-Rust-turns-three.md b/posts/Rust-turns-three.md similarity index 100% rename from posts/2018-05-15-Rust-turns-three.md rename to posts/Rust-turns-three.md diff --git a/posts/2020-05-07-Rust.1.43.1.md b/posts/Rust.1.43.1.md similarity index 100% rename from posts/2020-05-07-Rust.1.43.1.md rename to posts/Rust.1.43.1.md diff --git a/posts/2020-06-18-Rust.1.44.1.md b/posts/Rust.1.44.1.md similarity index 100% rename from posts/2020-06-18-Rust.1.44.1.md rename to posts/Rust.1.44.1.md diff --git a/posts/2023-05-29-RustConf.md b/posts/RustConf.md similarity index 100% rename from posts/2023-05-29-RustConf.md rename to posts/RustConf.md diff --git a/posts/2019-10-15-Rustup-1.20.0.md b/posts/Rustup-1.20.0.md similarity index 100% rename from posts/2019-10-15-Rustup-1.20.0.md rename to posts/Rustup-1.20.0.md diff --git a/posts/2020-07-06-Rustup-1.22.0.md b/posts/Rustup-1.22.0.md similarity index 100% rename from posts/2020-07-06-Rustup-1.22.0.md rename to posts/Rustup-1.22.0.md diff --git a/posts/2020-07-08-Rustup-1.22.1.md b/posts/Rustup-1.22.1.md similarity index 100% rename from posts/2020-07-08-Rustup-1.22.1.md rename to posts/Rustup-1.22.1.md diff --git a/posts/2020-11-27-Rustup-1.23.0.md b/posts/Rustup-1.23.0.md similarity index 100% rename from posts/2020-11-27-Rustup-1.23.0.md rename to posts/Rustup-1.23.0.md diff --git a/posts/2021-04-27-Rustup-1.24.0.md b/posts/Rustup-1.24.0.md similarity index 100% rename from posts/2021-04-27-Rustup-1.24.0.md rename to posts/Rustup-1.24.0.md diff --git a/posts/2021-04-29-Rustup-1.24.1.md b/posts/Rustup-1.24.1.md similarity index 100% rename from posts/2021-04-29-Rustup-1.24.1.md rename to posts/Rustup-1.24.1.md diff --git a/posts/2021-05-17-Rustup-1.24.2.md b/posts/Rustup-1.24.2.md similarity index 100% rename from posts/2021-05-17-Rustup-1.24.2.md rename to posts/Rustup-1.24.2.md diff --git a/posts/2021-06-08-Rustup-1.24.3.md b/posts/Rustup-1.24.3.md similarity index 100% rename from posts/2021-06-08-Rustup-1.24.3.md rename to posts/Rustup-1.24.3.md diff --git a/posts/2022-07-11-Rustup-1.25.0.md b/posts/Rustup-1.25.0.md similarity index 100% rename from posts/2022-07-11-Rustup-1.25.0.md rename to posts/Rustup-1.25.0.md diff --git a/posts/2022-07-12-Rustup-1.25.1.md b/posts/Rustup-1.25.1.md similarity index 100% rename from posts/2022-07-12-Rustup-1.25.1.md rename to posts/Rustup-1.25.1.md diff --git a/posts/2023-02-01-Rustup-1.25.2.md b/posts/Rustup-1.25.2.md similarity index 100% rename from posts/2023-02-01-Rustup-1.25.2.md rename to posts/Rustup-1.25.2.md diff --git a/posts/2023-04-25-Rustup-1.26.0.md b/posts/Rustup-1.26.0.md similarity index 100% rename from posts/2023-04-25-Rustup-1.26.0.md rename to posts/Rustup-1.26.0.md diff --git a/posts/2024-03-11-Rustup-1.27.0.md b/posts/Rustup-1.27.0.md similarity index 100% rename from posts/2024-03-11-Rustup-1.27.0.md rename to posts/Rustup-1.27.0.md diff --git a/posts/2024-05-06-Rustup-1.27.1.md b/posts/Rustup-1.27.1.md similarity index 100% rename from posts/2024-05-06-Rustup-1.27.1.md rename to posts/Rustup-1.27.1.md diff --git a/posts/2025-03-02-Rustup-1.28.0.md b/posts/Rustup-1.28.0.md similarity index 100% rename from posts/2025-03-02-Rustup-1.28.0.md rename to posts/Rustup-1.28.0.md diff --git a/posts/2025-03-04-Rustup-1.28.1.md b/posts/Rustup-1.28.1.md similarity index 100% rename from posts/2025-03-04-Rustup-1.28.1.md rename to posts/Rustup-1.28.1.md diff --git a/posts/2020-09-21-Scheduling-2021-Roadmap.md b/posts/Scheduling-2021-Roadmap.md similarity index 100% rename from posts/2020-09-21-Scheduling-2021-Roadmap.md rename to posts/Scheduling-2021-Roadmap.md diff --git a/posts/2019-09-30-Security-advisory-for-cargo.md b/posts/Security-advisory-for-cargo.md similarity index 100% rename from posts/2019-09-30-Security-advisory-for-cargo.md rename to posts/Security-advisory-for-cargo.md diff --git a/posts/2018-09-21-Security-advisory-for-std.md b/posts/Security-advisory-for-std.md similarity index 100% rename from posts/2018-09-21-Security-advisory-for-std.md rename to posts/Security-advisory-for-std.md diff --git a/posts/2019-05-13-Security-advisory.md b/posts/Security-advisory.md similarity index 100% rename from posts/2019-05-13-Security-advisory.md rename to posts/Security-advisory.md diff --git a/posts/2016-08-10-Shape-of-errors-to-come.md b/posts/Shape-of-errors-to-come.md similarity index 100% rename from posts/2016-08-10-Shape-of-errors-to-come.md rename to posts/Shape-of-errors-to-come.md diff --git a/posts/2014-10-30-Stability.md b/posts/Stability.md similarity index 100% rename from posts/2014-10-30-Stability.md rename to posts/Stability.md diff --git a/posts/2016-06-30-State-of-Rust-Survey-2016.md b/posts/State-of-Rust-Survey-2016.md similarity index 100% rename from posts/2016-06-30-State-of-Rust-Survey-2016.md rename to posts/State-of-Rust-Survey-2016.md diff --git a/posts/2018-01-31-The-2018-Rust-Event-Lineup.md b/posts/The-2018-Rust-Event-Lineup.md similarity index 100% rename from posts/2018-01-31-The-2018-Rust-Event-Lineup.md rename to posts/The-2018-Rust-Event-Lineup.md diff --git a/posts/2019-05-20-The-2019-Rust-Event-Lineup.md b/posts/The-2019-Rust-Event-Lineup.md similarity index 100% rename from posts/2019-05-20-The-2019-Rust-Event-Lineup.md rename to posts/The-2019-Rust-Event-Lineup.md diff --git a/posts/2016-12-15-Underhanded-Rust.md b/posts/Underhanded-Rust.md similarity index 100% rename from posts/2016-12-15-Underhanded-Rust.md rename to posts/Underhanded-Rust.md diff --git a/posts/2018-10-19-Update-on-crates.io-incident.md b/posts/Update-on-crates.io-incident.md similarity index 100% rename from posts/2018-10-19-Update-on-crates.io-incident.md rename to posts/Update-on-crates.io-incident.md diff --git a/posts/2023-05-09-Updating-musl-targets.md b/posts/Updating-musl-targets.md similarity index 100% rename from posts/2023-05-09-Updating-musl-targets.md rename to posts/Updating-musl-targets.md diff --git a/posts/2024-02-26-Windows-7.md b/posts/Windows-7.md similarity index 100% rename from posts/2024-02-26-Windows-7.md rename to posts/Windows-7.md diff --git a/posts/2018-11-29-a-new-look-for-rust-lang-org.md b/posts/a-new-look-for-rust-lang-org.md similarity index 100% rename from posts/2018-11-29-a-new-look-for-rust-lang-org.md rename to posts/a-new-look-for-rust-lang-org.md diff --git a/posts/2018-04-06-all-hands.md b/posts/all-hands.md similarity index 100% rename from posts/2018-04-06-all-hands.md rename to posts/all-hands.md diff --git a/posts/2023-01-09-android-ndk-update-r25.md b/posts/android-ndk-update-r25.md similarity index 100% rename from posts/2023-01-09-android-ndk-update-r25.md rename to posts/android-ndk-update-r25.md diff --git a/posts/2023-10-19-announcing-the-new-rust-project-directors.md b/posts/announcing-the-new-rust-project-directors.md similarity index 100% rename from posts/2023-10-19-announcing-the-new-rust-project-directors.md rename to posts/announcing-the-new-rust-project-directors.md diff --git a/posts/2024-12-05-annual-survey-2024-launch.md b/posts/annual-survey-2024-launch.md similarity index 100% rename from posts/2024-12-05-annual-survey-2024-launch.md rename to posts/annual-survey-2024-launch.md diff --git a/posts/2023-12-21-async-fn-rpit-in-traits.md b/posts/async-fn-rpit-in-traits.md similarity index 100% rename from posts/2023-12-21-async-fn-rpit-in-traits.md rename to posts/async-fn-rpit-in-traits.md diff --git a/posts/2021-04-14-async-vision-doc-shiny-future.md b/posts/async-vision-doc-shiny-future.md similarity index 100% rename from posts/2021-04-14-async-vision-doc-shiny-future.md rename to posts/async-vision-doc-shiny-future.md diff --git a/posts/2021-03-18-async-vision-doc.md b/posts/async-vision-doc.md similarity index 100% rename from posts/2021-03-18-async-vision-doc.md rename to posts/async-vision-doc.md diff --git a/posts/2023-10-26-broken-badges-and-23k-keywords.md b/posts/broken-badges-and-23k-keywords.md similarity index 100% rename from posts/2023-10-26-broken-badges-and-23k-keywords.md rename to posts/broken-badges-and-23k-keywords.md diff --git a/posts/2018-12-06-call-for-rust-2019-roadmap-blogposts.md b/posts/call-for-rust-2019-roadmap-blogposts.md similarity index 100% rename from posts/2018-12-06-call-for-rust-2019-roadmap-blogposts.md rename to posts/call-for-rust-2019-roadmap-blogposts.md diff --git a/posts/2023-12-11-cargo-cache-cleaning.md b/posts/cargo-cache-cleaning.md similarity index 100% rename from posts/2023-12-11-cargo-cache-cleaning.md rename to posts/cargo-cache-cleaning.md diff --git a/posts/2022-09-14-cargo-cves.md b/posts/cargo-cves.md similarity index 100% rename from posts/2022-09-14-cargo-cves.md rename to posts/cargo-cves.md diff --git a/posts/2016-05-05-cargo-pillars.md b/posts/cargo-pillars.md similarity index 100% rename from posts/2016-05-05-cargo-pillars.md rename to posts/cargo-pillars.md diff --git a/posts/2022-01-31-changes-in-the-core-team.md b/posts/changes-in-the-core-team@0.md similarity index 100% rename from posts/2022-01-31-changes-in-the-core-team.md rename to posts/changes-in-the-core-team@0.md diff --git a/posts/2022-07-12-changes-in-the-core-team.md b/posts/changes-in-the-core-team@1.md similarity index 100% rename from posts/2022-07-12-changes-in-the-core-team.md rename to posts/changes-in-the-core-team@1.md diff --git a/posts/2024-05-06-check-cfg.md b/posts/check-cfg.md similarity index 100% rename from posts/2024-05-06-check-cfg.md rename to posts/check-cfg.md diff --git a/posts/2023-08-29-committing-lockfiles.md b/posts/committing-lockfiles.md similarity index 100% rename from posts/2023-08-29-committing-lockfiles.md rename to posts/committing-lockfiles.md diff --git a/posts/2016-07-25-conf-lineup.md b/posts/conf-lineup@0.md similarity index 100% rename from posts/2016-07-25-conf-lineup.md rename to posts/conf-lineup@0.md diff --git a/posts/2017-07-18-conf-lineup.md b/posts/conf-lineup@1.md similarity index 100% rename from posts/2017-07-18-conf-lineup.md rename to posts/conf-lineup@1.md diff --git a/posts/2020-01-31-conf-lineup.md b/posts/conf-lineup@2.md similarity index 100% rename from posts/2020-01-31-conf-lineup.md rename to posts/conf-lineup@2.md diff --git a/posts/2022-09-15-const-eval-safety-rule-revision.md b/posts/const-eval-safety-rule-revision.md similarity index 100% rename from posts/2022-09-15-const-eval-safety-rule-revision.md rename to posts/const-eval-safety-rule-revision.md diff --git a/posts/2021-02-26-const-generics-mvp-beta.md b/posts/const-generics-mvp-beta.md similarity index 100% rename from posts/2021-02-26-const-generics-mvp-beta.md rename to posts/const-generics-mvp-beta.md diff --git a/posts/2024-08-26-council-survey.md b/posts/council-survey.md similarity index 100% rename from posts/2024-08-26-council-survey.md rename to posts/council-survey.md diff --git a/posts/2024-07-29-crates-io-development-update.md b/posts/crates-io-development-update@0.md similarity index 100% rename from posts/2024-07-29-crates-io-development-update.md rename to posts/crates-io-development-update@0.md diff --git a/posts/2025-02-05-crates-io-development-update.md b/posts/crates-io-development-update@1.md similarity index 100% rename from posts/2025-02-05-crates-io-development-update.md rename to posts/crates-io-development-update@1.md diff --git a/posts/2024-03-11-crates-io-download-changes.md b/posts/crates-io-download-changes.md similarity index 100% rename from posts/2024-03-11-crates-io-download-changes.md rename to posts/crates-io-download-changes.md diff --git a/posts/2023-10-27-crates-io-non-canonical-downloads.md b/posts/crates-io-non-canonical-downloads.md similarity index 100% rename from posts/2023-10-27-crates-io-non-canonical-downloads.md rename to posts/crates-io-non-canonical-downloads.md diff --git a/posts/2020-07-14-crates-io-security-advisory.md b/posts/crates-io-security-advisory.md similarity index 100% rename from posts/2020-07-14-crates-io-security-advisory.md rename to posts/crates-io-security-advisory.md diff --git a/posts/2022-02-14-crates-io-snapshot-branches.md b/posts/crates-io-snapshot-branches.md similarity index 100% rename from posts/2022-02-14-crates-io-snapshot-branches.md rename to posts/crates-io-snapshot-branches.md diff --git a/posts/2024-02-06-crates-io-status-codes.md b/posts/crates-io-status-codes.md similarity index 100% rename from posts/2024-02-06-crates-io-status-codes.md rename to posts/crates-io-status-codes.md diff --git a/posts/2023-09-22-crates-io-usage-policy-rfc.md b/posts/crates-io-usage-policy-rfc.md similarity index 100% rename from posts/2023-09-22-crates-io-usage-policy-rfc.md rename to posts/crates-io-usage-policy-rfc.md diff --git a/posts/2021-11-01-cve-2021-42574.md b/posts/cve-2021-42574.md similarity index 100% rename from posts/2021-11-01-cve-2021-42574.md rename to posts/cve-2021-42574.md diff --git a/posts/2022-01-20-cve-2022-21658.md b/posts/cve-2022-21658.md similarity index 100% rename from posts/2022-01-20-cve-2022-21658.md rename to posts/cve-2022-21658.md diff --git a/posts/2022-03-08-cve-2022-24713.md b/posts/cve-2022-24713.md similarity index 100% rename from posts/2022-03-08-cve-2022-24713.md rename to posts/cve-2022-24713.md diff --git a/posts/2023-01-10-cve-2022-46176.md b/posts/cve-2022-46176.md similarity index 100% rename from posts/2023-01-10-cve-2022-46176.md rename to posts/cve-2022-46176.md diff --git a/posts/2023-08-03-cve-2023-38497.md b/posts/cve-2023-38497.md similarity index 100% rename from posts/2023-08-03-cve-2023-38497.md rename to posts/cve-2023-38497.md diff --git a/posts/2024-04-09-cve-2024-24576.md b/posts/cve-2024-24576.md similarity index 100% rename from posts/2024-04-09-cve-2024-24576.md rename to posts/cve-2024-24576.md diff --git a/posts/2024-09-04-cve-2024-43402.md b/posts/cve-2024-43402.md similarity index 100% rename from posts/2024-09-04-cve-2024-43402.md rename to posts/cve-2024-43402.md diff --git a/posts/2020-03-15-docs-rs-opt-into-fewer-targets.md b/posts/docs-rs-opt-into-fewer-targets.md similarity index 100% rename from posts/2020-03-15-docs-rs-opt-into-fewer-targets.md rename to posts/docs-rs-opt-into-fewer-targets.md diff --git a/posts/2021-05-11-edition-2021.md b/posts/edition-2021.md similarity index 100% rename from posts/2021-05-11-edition-2021.md rename to posts/edition-2021.md diff --git a/posts/2023-08-30-electing-new-project-directors.md b/posts/electing-new-project-directors.md similarity index 100% rename from posts/2023-08-30-electing-new-project-directors.md rename to posts/electing-new-project-directors.md diff --git a/posts/2024-05-17-enabling-rust-lld-on-linux.md b/posts/enabling-rust-lld-on-linux.md similarity index 100% rename from posts/2024-05-17-enabling-rust-lld-on-linux.md rename to posts/enabling-rust-lld-on-linux.md diff --git a/posts/2020-06-10-event-lineup-update.md b/posts/event-lineup-update.md similarity index 100% rename from posts/2020-06-10-event-lineup-update.md rename to posts/event-lineup-update.md diff --git a/posts/2020-05-15-five-years-of-rust.md b/posts/five-years-of-rust.md similarity index 100% rename from posts/2020-05-15-five-years-of-rust.md rename to posts/five-years-of-rust.md diff --git a/posts/2022-10-28-gats-stabilization.md b/posts/gats-stabilization.md similarity index 100% rename from posts/2022-10-28-gats-stabilization.md rename to posts/gats-stabilization.md diff --git a/posts/2024-11-07-gccrs-an-alternative-compiler-for-rust.md b/posts/gccrs-an-alternative-compiler-for-rust.md similarity index 100% rename from posts/2024-11-07-gccrs-an-alternative-compiler-for-rust.md rename to posts/gccrs-an-alternative-compiler-for-rust.md diff --git a/posts/2019-06-03-governance-wg-announcement.md b/posts/governance-wg-announcement.md similarity index 100% rename from posts/2019-06-03-governance-wg-announcement.md rename to posts/governance-wg-announcement.md diff --git a/posts/2024-11-07-gsoc-2024-results.md b/posts/gsoc-2024-results.md similarity index 100% rename from posts/2024-11-07-gsoc-2024-results.md rename to posts/gsoc-2024-results.md diff --git a/posts/2024-05-01-gsoc-2024-selected-projects.md b/posts/gsoc-2024-selected-projects.md similarity index 100% rename from posts/2024-05-01-gsoc-2024-selected-projects.md rename to posts/gsoc-2024-selected-projects.md diff --git a/posts/2018-10-30-help-test-rust-2018.md b/posts/help-test-rust-2018.md similarity index 100% rename from posts/2018-10-30-help-test-rust-2018.md rename to posts/help-test-rust-2018.md diff --git a/posts/2024-03-30-i128-layout-update.md b/posts/i128-layout-update.md similarity index 100% rename from posts/2024-03-30-i128-layout-update.md rename to posts/i128-layout-update.md diff --git a/posts/2017-09-18-impl-future-for-rust.md b/posts/impl-future-for-rust.md similarity index 100% rename from posts/2017-09-18-impl-future-for-rust.md rename to posts/impl-future-for-rust.md diff --git a/posts/2024-09-05-impl-trait-capture-rules.md b/posts/impl-trait-capture-rules.md similarity index 100% rename from posts/2024-09-05-impl-trait-capture-rules.md rename to posts/impl-trait-capture-rules.md diff --git a/posts/2023-06-23-improved-api-tokens-for-crates-io.md b/posts/improved-api-tokens-for-crates-io.md similarity index 100% rename from posts/2023-06-23-improved-api-tokens-for-crates-io.md rename to posts/improved-api-tokens-for-crates-io.md diff --git a/posts/2016-09-08-incremental.md b/posts/incremental.md similarity index 100% rename from posts/2016-09-08-incremental.md rename to posts/incremental.md diff --git a/posts/2019-10-03-inside-rust-blog.md b/posts/inside-rust-blog.md similarity index 100% rename from posts/2019-10-03-inside-rust-blog.md rename to posts/inside-rust-blog.md diff --git a/posts/inside-rust/2020-07-27-1.45.1-prerelease.md b/posts/inside-rust/1.45.1-prerelease.md similarity index 100% rename from posts/inside-rust/2020-07-27-1.45.1-prerelease.md rename to posts/inside-rust/1.45.1-prerelease.md diff --git a/posts/inside-rust/2020-08-24-1.46.0-prerelease.md b/posts/inside-rust/1.46.0-prerelease.md similarity index 100% rename from posts/inside-rust/2020-08-24-1.46.0-prerelease.md rename to posts/inside-rust/1.46.0-prerelease.md diff --git a/posts/inside-rust/2020-10-07-1.47.0-prerelease-2.md b/posts/inside-rust/1.47.0-prerelease-2.md similarity index 100% rename from posts/inside-rust/2020-10-07-1.47.0-prerelease-2.md rename to posts/inside-rust/1.47.0-prerelease-2.md diff --git a/posts/inside-rust/2020-10-06-1.47.0-prerelease.md b/posts/inside-rust/1.47.0-prerelease.md similarity index 100% rename from posts/inside-rust/2020-10-06-1.47.0-prerelease.md rename to posts/inside-rust/1.47.0-prerelease.md diff --git a/posts/inside-rust/2020-11-16-1.48.0-prerelease.md b/posts/inside-rust/1.48.0-prerelease.md similarity index 100% rename from posts/inside-rust/2020-11-16-1.48.0-prerelease.md rename to posts/inside-rust/1.48.0-prerelease.md diff --git a/posts/inside-rust/2020-12-29-1.49.0-prerelease.md b/posts/inside-rust/1.49.0-prerelease.md similarity index 100% rename from posts/inside-rust/2020-12-29-1.49.0-prerelease.md rename to posts/inside-rust/1.49.0-prerelease.md diff --git a/posts/inside-rust/2021-02-09-1.50.0-prerelease.md b/posts/inside-rust/1.50.0-prerelease.md similarity index 100% rename from posts/inside-rust/2021-02-09-1.50.0-prerelease.md rename to posts/inside-rust/1.50.0-prerelease.md diff --git a/posts/inside-rust/2021-03-23-1.51.0-prerelease.md b/posts/inside-rust/1.51.0-prerelease.md similarity index 100% rename from posts/inside-rust/2021-03-23-1.51.0-prerelease.md rename to posts/inside-rust/1.51.0-prerelease.md diff --git a/posts/inside-rust/2021-05-04-1.52.0-prerelease.md b/posts/inside-rust/1.52.0-prerelease.md similarity index 100% rename from posts/inside-rust/2021-05-04-1.52.0-prerelease.md rename to posts/inside-rust/1.52.0-prerelease.md diff --git a/posts/inside-rust/2021-06-15-1.53.0-prelease.md b/posts/inside-rust/1.53.0-prelease.md similarity index 100% rename from posts/inside-rust/2021-06-15-1.53.0-prelease.md rename to posts/inside-rust/1.53.0-prelease.md diff --git a/posts/inside-rust/2021-07-26-1.54.0-prerelease.md b/posts/inside-rust/1.54.0-prerelease.md similarity index 100% rename from posts/inside-rust/2021-07-26-1.54.0-prerelease.md rename to posts/inside-rust/1.54.0-prerelease.md diff --git a/posts/inside-rust/2021-09-07-1.55.0-prerelease.md b/posts/inside-rust/1.55.0-prerelease.md similarity index 100% rename from posts/inside-rust/2021-09-07-1.55.0-prerelease.md rename to posts/inside-rust/1.55.0-prerelease.md diff --git a/posts/inside-rust/2021-10-18-1.56.0-prerelease.md b/posts/inside-rust/1.56.0-prerelease.md similarity index 100% rename from posts/inside-rust/2021-10-18-1.56.0-prerelease.md rename to posts/inside-rust/1.56.0-prerelease.md diff --git a/posts/inside-rust/2021-11-30-1.57.0-prerelease.md b/posts/inside-rust/1.57.0-prerelease.md similarity index 100% rename from posts/inside-rust/2021-11-30-1.57.0-prerelease.md rename to posts/inside-rust/1.57.0-prerelease.md diff --git a/posts/inside-rust/2022-01-11-1.58.0-prerelease.md b/posts/inside-rust/1.58.0-prerelease.md similarity index 100% rename from posts/inside-rust/2022-01-11-1.58.0-prerelease.md rename to posts/inside-rust/1.58.0-prerelease.md diff --git a/posts/inside-rust/2022-02-22-1.59.0-prerelease.md b/posts/inside-rust/1.59.0-prerelease.md similarity index 100% rename from posts/inside-rust/2022-02-22-1.59.0-prerelease.md rename to posts/inside-rust/1.59.0-prerelease.md diff --git a/posts/inside-rust/2022-04-04-1.60.0-prerelease.md b/posts/inside-rust/1.60.0-prerelease.md similarity index 100% rename from posts/inside-rust/2022-04-04-1.60.0-prerelease.md rename to posts/inside-rust/1.60.0-prerelease.md diff --git a/posts/inside-rust/2022-05-16-1.61.0-prerelease.md b/posts/inside-rust/1.61.0-prerelease.md similarity index 100% rename from posts/inside-rust/2022-05-16-1.61.0-prerelease.md rename to posts/inside-rust/1.61.0-prerelease.md diff --git a/posts/inside-rust/2022-06-28-1.62.0-prerelease.md b/posts/inside-rust/1.62.0-prerelease.md similarity index 100% rename from posts/inside-rust/2022-06-28-1.62.0-prerelease.md rename to posts/inside-rust/1.62.0-prerelease.md diff --git a/posts/inside-rust/2022-07-16-1.62.1-prerelease.md b/posts/inside-rust/1.62.1-prerelease.md similarity index 100% rename from posts/inside-rust/2022-07-16-1.62.1-prerelease.md rename to posts/inside-rust/1.62.1-prerelease.md diff --git a/posts/inside-rust/2022-08-09-1.63.0-prerelease.md b/posts/inside-rust/1.63.0-prerelease.md similarity index 100% rename from posts/inside-rust/2022-08-09-1.63.0-prerelease.md rename to posts/inside-rust/1.63.0-prerelease.md diff --git a/posts/inside-rust/2022-09-19-1.64.0-prerelease.md b/posts/inside-rust/1.64.0-prerelease.md similarity index 100% rename from posts/inside-rust/2022-09-19-1.64.0-prerelease.md rename to posts/inside-rust/1.64.0-prerelease.md diff --git a/posts/inside-rust/2022-10-31-1.65.0-prerelease.md b/posts/inside-rust/1.65.0-prerelease.md similarity index 100% rename from posts/inside-rust/2022-10-31-1.65.0-prerelease.md rename to posts/inside-rust/1.65.0-prerelease.md diff --git a/posts/inside-rust/2022-12-12-1.66.0-prerelease.md b/posts/inside-rust/1.66.0-prerelease.md similarity index 100% rename from posts/inside-rust/2022-12-12-1.66.0-prerelease.md rename to posts/inside-rust/1.66.0-prerelease.md diff --git a/posts/inside-rust/2023-01-25-1.67.0-prerelease.md b/posts/inside-rust/1.67.0-prerelease.md similarity index 100% rename from posts/inside-rust/2023-01-25-1.67.0-prerelease.md rename to posts/inside-rust/1.67.0-prerelease.md diff --git a/posts/inside-rust/2023-02-07-1.67.1-prerelease.md b/posts/inside-rust/1.67.1-prerelease.md similarity index 100% rename from posts/inside-rust/2023-02-07-1.67.1-prerelease.md rename to posts/inside-rust/1.67.1-prerelease.md diff --git a/posts/inside-rust/2023-03-06-1.68.0-prerelease.md b/posts/inside-rust/1.68.0-prerelease.md similarity index 100% rename from posts/inside-rust/2023-03-06-1.68.0-prerelease.md rename to posts/inside-rust/1.68.0-prerelease.md diff --git a/posts/inside-rust/2023-03-20-1.68.1-prerelease.md b/posts/inside-rust/1.68.1-prerelease.md similarity index 100% rename from posts/inside-rust/2023-03-20-1.68.1-prerelease.md rename to posts/inside-rust/1.68.1-prerelease.md diff --git a/posts/inside-rust/2023-03-27-1.68.2-prerelease.md b/posts/inside-rust/1.68.2-prerelease.md similarity index 100% rename from posts/inside-rust/2023-03-27-1.68.2-prerelease.md rename to posts/inside-rust/1.68.2-prerelease.md diff --git a/posts/inside-rust/2023-04-17-1.69.0-prerelease.md b/posts/inside-rust/1.69.0-prerelease.md similarity index 100% rename from posts/inside-rust/2023-04-17-1.69.0-prerelease.md rename to posts/inside-rust/1.69.0-prerelease.md diff --git a/posts/inside-rust/2023-05-29-1.70.0-prerelease.md b/posts/inside-rust/1.70.0-prerelease.md similarity index 100% rename from posts/inside-rust/2023-05-29-1.70.0-prerelease.md rename to posts/inside-rust/1.70.0-prerelease.md diff --git a/posts/inside-rust/2023-07-10-1.71.0-prerelease.md b/posts/inside-rust/1.71.0-prerelease.md similarity index 100% rename from posts/inside-rust/2023-07-10-1.71.0-prerelease.md rename to posts/inside-rust/1.71.0-prerelease.md diff --git a/posts/inside-rust/2023-08-01-1.71.1-prerelease.md b/posts/inside-rust/1.71.1-prerelease.md similarity index 100% rename from posts/inside-rust/2023-08-01-1.71.1-prerelease.md rename to posts/inside-rust/1.71.1-prerelease.md diff --git a/posts/inside-rust/2023-08-21-1.72.0-prerelease.md b/posts/inside-rust/1.72.0-prerelease.md similarity index 100% rename from posts/inside-rust/2023-08-21-1.72.0-prerelease.md rename to posts/inside-rust/1.72.0-prerelease.md diff --git a/posts/inside-rust/2023-09-14-1.72.1-prerelease.md b/posts/inside-rust/1.72.1-prerelease.md similarity index 100% rename from posts/inside-rust/2023-09-14-1.72.1-prerelease.md rename to posts/inside-rust/1.72.1-prerelease.md diff --git a/posts/inside-rust/2023-10-03-1.73.0-prerelease.md b/posts/inside-rust/1.73.0-prerelease.md similarity index 100% rename from posts/inside-rust/2023-10-03-1.73.0-prerelease.md rename to posts/inside-rust/1.73.0-prerelease.md diff --git a/posts/inside-rust/2023-11-13-1.74.0-prerelease.md b/posts/inside-rust/1.74.0-prerelease.md similarity index 100% rename from posts/inside-rust/2023-11-13-1.74.0-prerelease.md rename to posts/inside-rust/1.74.0-prerelease.md diff --git a/posts/inside-rust/2023-12-05-1.74.1-prerelease.md b/posts/inside-rust/1.74.1-prerelease.md similarity index 100% rename from posts/inside-rust/2023-12-05-1.74.1-prerelease.md rename to posts/inside-rust/1.74.1-prerelease.md diff --git a/posts/inside-rust/2023-12-21-1.75.0-prerelease.md b/posts/inside-rust/1.75.0-prerelease.md similarity index 100% rename from posts/inside-rust/2023-12-21-1.75.0-prerelease.md rename to posts/inside-rust/1.75.0-prerelease.md diff --git a/posts/inside-rust/2024-02-04-1.76.0-prerelease.md b/posts/inside-rust/1.76.0-prerelease.md similarity index 100% rename from posts/inside-rust/2024-02-04-1.76.0-prerelease.md rename to posts/inside-rust/1.76.0-prerelease.md diff --git a/posts/inside-rust/2024-03-17-1.77.0-prerelease.md b/posts/inside-rust/1.77.0-prerelease.md similarity index 100% rename from posts/inside-rust/2024-03-17-1.77.0-prerelease.md rename to posts/inside-rust/1.77.0-prerelease.md diff --git a/posts/inside-rust/2024-03-27-1.77.1-prerelease.md b/posts/inside-rust/1.77.1-prerelease.md similarity index 100% rename from posts/inside-rust/2024-03-27-1.77.1-prerelease.md rename to posts/inside-rust/1.77.1-prerelease.md diff --git a/posts/inside-rust/2024-03-22-2024-edition-update.md b/posts/inside-rust/2024-edition-update.md similarity index 100% rename from posts/inside-rust/2024-03-22-2024-edition-update.md rename to posts/inside-rust/2024-edition-update.md diff --git a/posts/inside-rust/2019-10-11-AsyncAwait-Not-Send-Error-Improvements.md b/posts/inside-rust/AsyncAwait-Not-Send-Error-Improvements.md similarity index 100% rename from posts/inside-rust/2019-10-11-AsyncAwait-Not-Send-Error-Improvements.md rename to posts/inside-rust/AsyncAwait-Not-Send-Error-Improvements.md diff --git a/posts/inside-rust/2019-10-07-AsyncAwait-WG-Focus-Issues.md b/posts/inside-rust/AsyncAwait-WG-Focus-Issues.md similarity index 100% rename from posts/inside-rust/2019-10-07-AsyncAwait-WG-Focus-Issues.md rename to posts/inside-rust/AsyncAwait-WG-Focus-Issues.md diff --git a/posts/inside-rust/2020-10-16-Backlog-Bonanza.md b/posts/inside-rust/Backlog-Bonanza.md similarity index 100% rename from posts/inside-rust/2020-10-16-Backlog-Bonanza.md rename to posts/inside-rust/Backlog-Bonanza.md diff --git a/posts/inside-rust/2022-04-12-CTCFT-april.md b/posts/inside-rust/CTCFT-april.md similarity index 100% rename from posts/inside-rust/2022-04-12-CTCFT-april.md rename to posts/inside-rust/CTCFT-april.md diff --git a/posts/inside-rust/2022-02-11-CTCFT-february.md b/posts/inside-rust/CTCFT-february.md similarity index 100% rename from posts/inside-rust/2022-02-11-CTCFT-february.md rename to posts/inside-rust/CTCFT-february.md diff --git a/posts/inside-rust/2022-03-16-CTCFT-march.md b/posts/inside-rust/CTCFT-march.md similarity index 100% rename from posts/inside-rust/2022-03-16-CTCFT-march.md rename to posts/inside-rust/CTCFT-march.md diff --git a/posts/inside-rust/2022-05-10-CTCFT-may.md b/posts/inside-rust/CTCFT-may.md similarity index 100% rename from posts/inside-rust/2022-05-10-CTCFT-may.md rename to posts/inside-rust/CTCFT-may.md diff --git a/posts/inside-rust/2020-02-06-Cleanup-Crew-ICE-breakers.md b/posts/inside-rust/Cleanup-Crew-ICE-breakers.md similarity index 100% rename from posts/inside-rust/2020-02-06-Cleanup-Crew-ICE-breakers.md rename to posts/inside-rust/Cleanup-Crew-ICE-breakers.md diff --git a/posts/inside-rust/2019-11-04-Clippy-removes-plugin-interface.md b/posts/inside-rust/Clippy-removes-plugin-interface.md similarity index 100% rename from posts/inside-rust/2019-11-04-Clippy-removes-plugin-interface.md rename to posts/inside-rust/Clippy-removes-plugin-interface.md diff --git a/posts/inside-rust/2022-05-26-Concluding-events-mods.md b/posts/inside-rust/Concluding-events-mods.md similarity index 100% rename from posts/inside-rust/2022-05-26-Concluding-events-mods.md rename to posts/inside-rust/Concluding-events-mods.md diff --git a/posts/inside-rust/2020-10-23-Core-team-membership.md b/posts/inside-rust/Core-team-membership.md similarity index 100% rename from posts/inside-rust/2020-10-23-Core-team-membership.md rename to posts/inside-rust/Core-team-membership.md diff --git a/posts/inside-rust/2020-01-14-Goverance-wg-cfp.md b/posts/inside-rust/Goverance-wg-cfp.md similarity index 100% rename from posts/inside-rust/2020-01-14-Goverance-wg-cfp.md rename to posts/inside-rust/Goverance-wg-cfp.md diff --git a/posts/inside-rust/2020-02-11-Goverance-wg.md b/posts/inside-rust/Goverance-wg@0.md similarity index 100% rename from posts/inside-rust/2020-02-11-Goverance-wg.md rename to posts/inside-rust/Goverance-wg@0.md diff --git a/posts/inside-rust/2020-02-27-Goverance-wg.md b/posts/inside-rust/Goverance-wg@1.md similarity index 100% rename from posts/inside-rust/2020-02-27-Goverance-wg.md rename to posts/inside-rust/Goverance-wg@1.md diff --git a/posts/inside-rust/2020-04-14-Governance-WG-updated.md b/posts/inside-rust/Governance-WG-updated.md similarity index 100% rename from posts/inside-rust/2020-04-14-Governance-WG-updated.md rename to posts/inside-rust/Governance-WG-updated.md diff --git a/posts/inside-rust/2020-04-23-Governance-wg.md b/posts/inside-rust/Governance-wg.md similarity index 100% rename from posts/inside-rust/2020-04-23-Governance-wg.md rename to posts/inside-rust/Governance-wg.md diff --git a/posts/inside-rust/2020-01-23-Introducing-cargo-audit-fix-and-more.md b/posts/inside-rust/Introducing-cargo-audit-fix-and-more.md similarity index 100% rename from posts/inside-rust/2020-01-23-Introducing-cargo-audit-fix-and-more.md rename to posts/inside-rust/Introducing-cargo-audit-fix-and-more.md diff --git a/posts/inside-rust/2019-10-03-Keeping-secure-with-cargo-audit-0.9.md b/posts/inside-rust/Keeping-secure-with-cargo-audit-0.9.md similarity index 100% rename from posts/inside-rust/2019-10-03-Keeping-secure-with-cargo-audit-0.9.md rename to posts/inside-rust/Keeping-secure-with-cargo-audit-0.9.md diff --git a/posts/inside-rust/2019-10-22-LLVM-ICE-breakers.md b/posts/inside-rust/LLVM-ICE-breakers.md similarity index 100% rename from posts/inside-rust/2019-10-22-LLVM-ICE-breakers.md rename to posts/inside-rust/LLVM-ICE-breakers.md diff --git a/posts/inside-rust/2019-10-11-Lang-Team-Meeting.md b/posts/inside-rust/Lang-Team-Meeting.md similarity index 100% rename from posts/inside-rust/2019-10-11-Lang-Team-Meeting.md rename to posts/inside-rust/Lang-Team-Meeting.md diff --git a/posts/inside-rust/2021-10-08-Lang-team-Oct-update.md b/posts/inside-rust/Lang-team-Oct-update.md similarity index 100% rename from posts/inside-rust/2021-10-08-Lang-team-Oct-update.md rename to posts/inside-rust/Lang-team-Oct-update.md diff --git a/posts/inside-rust/2021-07-12-Lang-team-july-update.md b/posts/inside-rust/Lang-team-july-update.md similarity index 100% rename from posts/inside-rust/2021-07-12-Lang-team-july-update.md rename to posts/inside-rust/Lang-team-july-update.md diff --git a/posts/inside-rust/2019-11-22-Lang-team-meeting.md b/posts/inside-rust/Lang-team-meeting.md similarity index 100% rename from posts/inside-rust/2019-11-22-Lang-team-meeting.md rename to posts/inside-rust/Lang-team-meeting.md diff --git a/posts/inside-rust/2020-07-02-Ownership-Std-Implementation.md b/posts/inside-rust/Ownership-Std-Implementation.md similarity index 100% rename from posts/inside-rust/2020-07-02-Ownership-Std-Implementation.md rename to posts/inside-rust/Ownership-Std-Implementation.md diff --git a/posts/inside-rust/2020-09-29-Portable-SIMD-PG.md b/posts/inside-rust/Portable-SIMD-PG.md similarity index 100% rename from posts/inside-rust/2020-09-29-Portable-SIMD-PG.md rename to posts/inside-rust/Portable-SIMD-PG.md diff --git a/posts/inside-rust/2021-09-06-Splitting-const-generics.md b/posts/inside-rust/Splitting-const-generics.md similarity index 100% rename from posts/inside-rust/2021-09-06-Splitting-const-generics.md rename to posts/inside-rust/Splitting-const-generics.md diff --git a/posts/inside-rust/2020-11-15-Using-rustc_codegen_cranelift.md b/posts/inside-rust/Using-rustc_codegen_cranelift.md similarity index 100% rename from posts/inside-rust/2020-11-15-Using-rustc_codegen_cranelift.md rename to posts/inside-rust/Using-rustc_codegen_cranelift.md diff --git a/posts/inside-rust/2019-09-25-Welcome.md b/posts/inside-rust/Welcome.md similarity index 100% rename from posts/inside-rust/2019-09-25-Welcome.md rename to posts/inside-rust/Welcome.md diff --git a/posts/inside-rust/2020-11-23-What-the-error-handling-project-group-is-working-on.md b/posts/inside-rust/What-the-error-handling-project-group-is-working-on.md similarity index 100% rename from posts/inside-rust/2020-11-23-What-the-error-handling-project-group-is-working-on.md rename to posts/inside-rust/What-the-error-handling-project-group-is-working-on.md diff --git a/posts/inside-rust/2021-07-01-What-the-error-handling-project-group-is-working-towards.md b/posts/inside-rust/What-the-error-handling-project-group-is-working-towards.md similarity index 100% rename from posts/inside-rust/2021-07-01-What-the-error-handling-project-group-is-working-towards.md rename to posts/inside-rust/What-the-error-handling-project-group-is-working-towards.md diff --git a/posts/inside-rust/2021-04-26-aaron-hill-compiler-team.md b/posts/inside-rust/aaron-hill-compiler-team.md similarity index 100% rename from posts/inside-rust/2021-04-26-aaron-hill-compiler-team.md rename to posts/inside-rust/aaron-hill-compiler-team.md diff --git a/posts/inside-rust/2020-03-18-all-hands-retrospective.md b/posts/inside-rust/all-hands-retrospective.md similarity index 100% rename from posts/inside-rust/2020-03-18-all-hands-retrospective.md rename to posts/inside-rust/all-hands-retrospective.md diff --git a/posts/inside-rust/2024-09-02-all-hands.md b/posts/inside-rust/all-hands.md similarity index 100% rename from posts/inside-rust/2024-09-02-all-hands.md rename to posts/inside-rust/all-hands.md diff --git a/posts/inside-rust/2024-05-07-announcing-project-goals.md b/posts/inside-rust/announcing-project-goals.md similarity index 100% rename from posts/inside-rust/2024-05-07-announcing-project-goals.md rename to posts/inside-rust/announcing-project-goals.md diff --git a/posts/inside-rust/2019-12-09-announcing-the-docsrs-team.md b/posts/inside-rust/announcing-the-docsrs-team.md similarity index 100% rename from posts/inside-rust/2019-12-09-announcing-the-docsrs-team.md rename to posts/inside-rust/announcing-the-docsrs-team.md diff --git a/posts/inside-rust/2022-09-29-announcing-the-rust-style-team.md b/posts/inside-rust/announcing-the-rust-style-team.md similarity index 100% rename from posts/inside-rust/2022-09-29-announcing-the-rust-style-team.md rename to posts/inside-rust/announcing-the-rust-style-team.md diff --git a/posts/inside-rust/2023-05-09-api-token-scopes.md b/posts/inside-rust/api-token-scopes.md similarity index 100% rename from posts/inside-rust/2023-05-09-api-token-scopes.md rename to posts/inside-rust/api-token-scopes.md diff --git a/posts/inside-rust/2022-04-15-apr-steering-cycle.md b/posts/inside-rust/apr-steering-cycle.md similarity index 100% rename from posts/inside-rust/2022-04-15-apr-steering-cycle.md rename to posts/inside-rust/apr-steering-cycle.md diff --git a/posts/inside-rust/2024-08-09-async-closures-call-for-testing.md b/posts/inside-rust/async-closures-call-for-testing.md similarity index 100% rename from posts/inside-rust/2024-08-09-async-closures-call-for-testing.md rename to posts/inside-rust/async-closures-call-for-testing.md diff --git a/posts/inside-rust/2022-11-17-async-fn-in-trait-nightly.md b/posts/inside-rust/async-fn-in-trait-nightly.md similarity index 100% rename from posts/inside-rust/2022-11-17-async-fn-in-trait-nightly.md rename to posts/inside-rust/async-fn-in-trait-nightly.md diff --git a/posts/inside-rust/2022-02-03-async-in-2022.md b/posts/inside-rust/async-in-2022.md similarity index 100% rename from posts/inside-rust/2022-02-03-async-in-2022.md rename to posts/inside-rust/async-in-2022.md diff --git a/posts/inside-rust/2019-12-18-bisecting-rust-compiler.md b/posts/inside-rust/bisecting-rust-compiler.md similarity index 100% rename from posts/inside-rust/2019-12-18-bisecting-rust-compiler.md rename to posts/inside-rust/bisecting-rust-compiler.md diff --git a/posts/inside-rust/2021-06-15-boxyuwu-leseulartichaut-the8472-compiler-contributors.md b/posts/inside-rust/boxyuwu-leseulartichaut-the8472-compiler-contributors.md similarity index 100% rename from posts/inside-rust/2021-06-15-boxyuwu-leseulartichaut-the8472-compiler-contributors.md rename to posts/inside-rust/boxyuwu-leseulartichaut-the8472-compiler-contributors.md diff --git a/posts/inside-rust/2023-08-24-cargo-config-merging.md b/posts/inside-rust/cargo-config-merging.md similarity index 100% rename from posts/inside-rust/2023-08-24-cargo-config-merging.md rename to posts/inside-rust/cargo-config-merging.md diff --git a/posts/inside-rust/2020-01-10-cargo-in-2020.md b/posts/inside-rust/cargo-in-2020.md similarity index 100% rename from posts/inside-rust/2020-01-10-cargo-in-2020.md rename to posts/inside-rust/cargo-in-2020.md diff --git a/posts/inside-rust/2023-04-06-cargo-new-members.md b/posts/inside-rust/cargo-new-members.md similarity index 100% rename from posts/inside-rust/2023-04-06-cargo-new-members.md rename to posts/inside-rust/cargo-new-members.md diff --git a/posts/inside-rust/2023-05-01-cargo-postmortem.md b/posts/inside-rust/cargo-postmortem.md similarity index 100% rename from posts/inside-rust/2023-05-01-cargo-postmortem.md rename to posts/inside-rust/cargo-postmortem.md diff --git a/posts/inside-rust/2023-01-30-cargo-sparse-protocol.md b/posts/inside-rust/cargo-sparse-protocol.md similarity index 100% rename from posts/inside-rust/2023-01-30-cargo-sparse-protocol.md rename to posts/inside-rust/cargo-sparse-protocol.md diff --git a/posts/inside-rust/2022-03-31-cargo-team-changes.md b/posts/inside-rust/cargo-team-changes.md similarity index 100% rename from posts/inside-rust/2022-03-31-cargo-team-changes.md rename to posts/inside-rust/cargo-team-changes.md diff --git a/posts/inside-rust/2020-12-14-changes-to-compiler-team.md b/posts/inside-rust/changes-to-compiler-team.md similarity index 100% rename from posts/inside-rust/2020-12-14-changes-to-compiler-team.md rename to posts/inside-rust/changes-to-compiler-team.md diff --git a/posts/inside-rust/2021-01-19-changes-to-rustdoc-team.md b/posts/inside-rust/changes-to-rustdoc-team.md similarity index 100% rename from posts/inside-rust/2021-01-19-changes-to-rustdoc-team.md rename to posts/inside-rust/changes-to-rustdoc-team.md diff --git a/posts/inside-rust/2020-08-30-changes-to-x-py-defaults.md b/posts/inside-rust/changes-to-x-py-defaults.md similarity index 100% rename from posts/inside-rust/2020-08-30-changes-to-x-py-defaults.md rename to posts/inside-rust/changes-to-x-py-defaults.md diff --git a/posts/inside-rust/2020-12-28-cjgillot-and-nadrieril-for-compiler-contributors.md b/posts/inside-rust/cjgillot-and-nadrieril-for-compiler-contributors.md similarity index 100% rename from posts/inside-rust/2020-12-28-cjgillot-and-nadrieril-for-compiler-contributors.md rename to posts/inside-rust/cjgillot-and-nadrieril-for-compiler-contributors.md diff --git a/posts/inside-rust/2022-07-13-clippy-team-changes.md b/posts/inside-rust/clippy-team-changes.md similarity index 100% rename from posts/inside-rust/2022-07-13-clippy-team-changes.md rename to posts/inside-rust/clippy-team-changes.md diff --git a/posts/inside-rust/2022-08-08-compiler-team-2022-midyear-report.md b/posts/inside-rust/compiler-team-2022-midyear-report.md similarity index 100% rename from posts/inside-rust/2022-08-08-compiler-team-2022-midyear-report.md rename to posts/inside-rust/compiler-team-2022-midyear-report.md diff --git a/posts/inside-rust/2022-02-22-compiler-team-ambitions-2022.md b/posts/inside-rust/compiler-team-ambitions-2022.md similarity index 100% rename from posts/inside-rust/2022-02-22-compiler-team-ambitions-2022.md rename to posts/inside-rust/compiler-team-ambitions-2022.md diff --git a/posts/inside-rust/2021-04-15-compiler-team-april-steering-cycle.md b/posts/inside-rust/compiler-team-april-steering-cycle.md similarity index 100% rename from posts/inside-rust/2021-04-15-compiler-team-april-steering-cycle.md rename to posts/inside-rust/compiler-team-april-steering-cycle.md diff --git a/posts/inside-rust/2021-07-30-compiler-team-august-steering-cycle.md b/posts/inside-rust/compiler-team-august-steering-cycle.md similarity index 100% rename from posts/inside-rust/2021-07-30-compiler-team-august-steering-cycle.md rename to posts/inside-rust/compiler-team-august-steering-cycle.md diff --git a/posts/inside-rust/2023-02-10-compiler-team-feb-steering-cycle.md b/posts/inside-rust/compiler-team-feb-steering-cycle.md similarity index 100% rename from posts/inside-rust/2023-02-10-compiler-team-feb-steering-cycle.md rename to posts/inside-rust/compiler-team-feb-steering-cycle.md diff --git a/posts/inside-rust/2021-07-02-compiler-team-july-steering-cycle.md b/posts/inside-rust/compiler-team-july-steering-cycle.md similarity index 100% rename from posts/inside-rust/2021-07-02-compiler-team-july-steering-cycle.md rename to posts/inside-rust/compiler-team-july-steering-cycle.md diff --git a/posts/inside-rust/2021-06-23-compiler-team-june-steering-cycle.md b/posts/inside-rust/compiler-team-june-steering-cycle.md similarity index 100% rename from posts/inside-rust/2021-06-23-compiler-team-june-steering-cycle.md rename to posts/inside-rust/compiler-team-june-steering-cycle.md diff --git a/posts/inside-rust/2019-10-15-compiler-team-meeting.md b/posts/inside-rust/compiler-team-meeting@0.md similarity index 100% rename from posts/inside-rust/2019-10-15-compiler-team-meeting.md rename to posts/inside-rust/compiler-team-meeting@0.md diff --git a/posts/inside-rust/2019-10-21-compiler-team-meeting.md b/posts/inside-rust/compiler-team-meeting@1.md similarity index 100% rename from posts/inside-rust/2019-10-21-compiler-team-meeting.md rename to posts/inside-rust/compiler-team-meeting@1.md diff --git a/posts/inside-rust/2019-10-30-compiler-team-meeting.md b/posts/inside-rust/compiler-team-meeting@2.md similarity index 100% rename from posts/inside-rust/2019-10-30-compiler-team-meeting.md rename to posts/inside-rust/compiler-team-meeting@2.md diff --git a/posts/inside-rust/2019-11-07-compiler-team-meeting.md b/posts/inside-rust/compiler-team-meeting@3.md similarity index 100% rename from posts/inside-rust/2019-11-07-compiler-team-meeting.md rename to posts/inside-rust/compiler-team-meeting@3.md diff --git a/posts/inside-rust/2019-11-11-compiler-team-meeting.md b/posts/inside-rust/compiler-team-meeting@4.md similarity index 100% rename from posts/inside-rust/2019-11-11-compiler-team-meeting.md rename to posts/inside-rust/compiler-team-meeting@4.md diff --git a/posts/inside-rust/2019-11-19-compiler-team-meeting.md b/posts/inside-rust/compiler-team-meeting@5.md similarity index 100% rename from posts/inside-rust/2019-11-19-compiler-team-meeting.md rename to posts/inside-rust/compiler-team-meeting@5.md diff --git a/posts/inside-rust/2020-02-07-compiler-team-meeting.md b/posts/inside-rust/compiler-team-meeting@6.md similarity index 100% rename from posts/inside-rust/2020-02-07-compiler-team-meeting.md rename to posts/inside-rust/compiler-team-meeting@6.md diff --git a/posts/inside-rust/2024-11-12-compiler-team-new-members.md b/posts/inside-rust/compiler-team-new-members.md similarity index 100% rename from posts/inside-rust/2024-11-12-compiler-team-new-members.md rename to posts/inside-rust/compiler-team-new-members.md diff --git a/posts/inside-rust/2024-11-01-compiler-team-reorg.md b/posts/inside-rust/compiler-team-reorg.md similarity index 100% rename from posts/inside-rust/2024-11-01-compiler-team-reorg.md rename to posts/inside-rust/compiler-team-reorg.md diff --git a/posts/inside-rust/2022-09-23-compiler-team-sep-oct-steering-cycle.md b/posts/inside-rust/compiler-team-sep-oct-steering-cycle.md similarity index 100% rename from posts/inside-rust/2022-09-23-compiler-team-sep-oct-steering-cycle.md rename to posts/inside-rust/compiler-team-sep-oct-steering-cycle.md diff --git a/posts/inside-rust/2019-11-25-const-if-match.md b/posts/inside-rust/const-if-match.md similarity index 100% rename from posts/inside-rust/2019-11-25-const-if-match.md rename to posts/inside-rust/const-if-match.md diff --git a/posts/inside-rust/2019-12-02-const-prop-on-by-default.md b/posts/inside-rust/const-prop-on-by-default.md similarity index 100% rename from posts/inside-rust/2019-12-02-const-prop-on-by-default.md rename to posts/inside-rust/const-prop-on-by-default.md diff --git a/posts/inside-rust/2023-01-24-content-delivery-networks.md b/posts/inside-rust/content-delivery-networks.md similarity index 100% rename from posts/inside-rust/2023-01-24-content-delivery-networks.md rename to posts/inside-rust/content-delivery-networks.md diff --git a/posts/inside-rust/2020-05-27-contributor-survey.md b/posts/inside-rust/contributor-survey.md similarity index 100% rename from posts/inside-rust/2020-05-27-contributor-survey.md rename to posts/inside-rust/contributor-survey.md diff --git a/posts/inside-rust/2021-05-04-core-team-update.md b/posts/inside-rust/core-team-update.md similarity index 100% rename from posts/inside-rust/2021-05-04-core-team-update.md rename to posts/inside-rust/core-team-update.md diff --git a/posts/inside-rust/2021-04-03-core-team-updates.md b/posts/inside-rust/core-team-updates.md similarity index 100% rename from posts/inside-rust/2021-04-03-core-team-updates.md rename to posts/inside-rust/core-team-updates.md diff --git a/posts/inside-rust/2023-10-23-coroutines.md b/posts/inside-rust/coroutines.md similarity index 100% rename from posts/inside-rust/2023-10-23-coroutines.md rename to posts/inside-rust/coroutines.md diff --git a/posts/inside-rust/2020-02-26-crates-io-incident-report.md b/posts/inside-rust/crates-io-incident-report.md similarity index 100% rename from posts/inside-rust/2020-02-26-crates-io-incident-report.md rename to posts/inside-rust/crates-io-incident-report.md diff --git a/posts/inside-rust/2023-09-01-crates-io-malware-postmortem.md b/posts/inside-rust/crates-io-malware-postmortem.md similarity index 100% rename from posts/inside-rust/2023-09-01-crates-io-malware-postmortem.md rename to posts/inside-rust/crates-io-malware-postmortem.md diff --git a/posts/inside-rust/2023-07-21-crates-io-postmortem.md b/posts/inside-rust/crates-io-postmortem.md similarity index 100% rename from posts/inside-rust/2023-07-21-crates-io-postmortem.md rename to posts/inside-rust/crates-io-postmortem.md diff --git a/posts/inside-rust/2021-02-01-davidtwco-jackhuey-compiler-members.md b/posts/inside-rust/davidtwco-jackhuey-compiler-members.md similarity index 100% rename from posts/inside-rust/2021-02-01-davidtwco-jackhuey-compiler-members.md rename to posts/inside-rust/davidtwco-jackhuey-compiler-members.md diff --git a/posts/inside-rust/2022-08-16-diagnostic-effort.md b/posts/inside-rust/diagnostic-effort.md similarity index 100% rename from posts/inside-rust/2022-08-16-diagnostic-effort.md rename to posts/inside-rust/diagnostic-effort.md diff --git a/posts/inside-rust/2023-02-08-dns-outage-portmortem.md b/posts/inside-rust/dns-outage-portmortem.md similarity index 100% rename from posts/inside-rust/2023-02-08-dns-outage-portmortem.md rename to posts/inside-rust/dns-outage-portmortem.md diff --git a/posts/inside-rust/2019-10-24-docsrs-outage-postmortem.md b/posts/inside-rust/docsrs-outage-postmortem.md similarity index 100% rename from posts/inside-rust/2019-10-24-docsrs-outage-postmortem.md rename to posts/inside-rust/docsrs-outage-postmortem.md diff --git a/posts/inside-rust/2019-10-17-ecstatic-morse-for-compiler-contributors.md b/posts/inside-rust/ecstatic-morse-for-compiler-contributors.md similarity index 100% rename from posts/inside-rust/2019-10-17-ecstatic-morse-for-compiler-contributors.md rename to posts/inside-rust/ecstatic-morse-for-compiler-contributors.md diff --git a/posts/inside-rust/2024-09-06-electing-new-project-directors.md b/posts/inside-rust/electing-new-project-directors.md similarity index 100% rename from posts/inside-rust/2024-09-06-electing-new-project-directors.md rename to posts/inside-rust/electing-new-project-directors.md diff --git a/posts/inside-rust/2024-08-22-embedded-wg-micro-survey.md b/posts/inside-rust/embedded-wg-micro-survey.md similarity index 100% rename from posts/inside-rust/2024-08-22-embedded-wg-micro-survey.md rename to posts/inside-rust/embedded-wg-micro-survey.md diff --git a/posts/inside-rust/2020-09-18-error-handling-wg-announcement.md b/posts/inside-rust/error-handling-wg-announcement.md similarity index 100% rename from posts/inside-rust/2020-09-18-error-handling-wg-announcement.md rename to posts/inside-rust/error-handling-wg-announcement.md diff --git a/posts/inside-rust/2019-11-14-evaluating-github-actions.md b/posts/inside-rust/evaluating-github-actions.md similarity index 100% rename from posts/inside-rust/2019-11-14-evaluating-github-actions.md rename to posts/inside-rust/evaluating-github-actions.md diff --git a/posts/inside-rust/2020-11-11-exploring-pgo-for-the-rust-compiler.md b/posts/inside-rust/exploring-pgo-for-the-rust-compiler.md similarity index 100% rename from posts/inside-rust/2020-11-11-exploring-pgo-for-the-rust-compiler.md rename to posts/inside-rust/exploring-pgo-for-the-rust-compiler.md diff --git a/posts/inside-rust/2020-01-24-feb-lang-team-design-meetings.md b/posts/inside-rust/feb-lang-team-design-meetings.md similarity index 100% rename from posts/inside-rust/2020-01-24-feb-lang-team-design-meetings.md rename to posts/inside-rust/feb-lang-team-design-meetings.md diff --git a/posts/inside-rust/2022-02-17-feb-steering-cycle.md b/posts/inside-rust/feb-steering-cycle.md similarity index 100% rename from posts/inside-rust/2022-02-17-feb-steering-cycle.md rename to posts/inside-rust/feb-steering-cycle.md diff --git a/posts/inside-rust/2020-02-27-ffi-unwind-design-meeting.md b/posts/inside-rust/ffi-unwind-design-meeting.md similarity index 100% rename from posts/inside-rust/2020-02-27-ffi-unwind-design-meeting.md rename to posts/inside-rust/ffi-unwind-design-meeting.md diff --git a/posts/inside-rust/2021-01-26-ffi-unwind-longjmp.md b/posts/inside-rust/ffi-unwind-longjmp.md similarity index 100% rename from posts/inside-rust/2021-01-26-ffi-unwind-longjmp.md rename to posts/inside-rust/ffi-unwind-longjmp.md diff --git a/posts/inside-rust/2021-12-17-follow-up-on-the-moderation-issue.md b/posts/inside-rust/follow-up-on-the-moderation-issue.md similarity index 100% rename from posts/inside-rust/2021-12-17-follow-up-on-the-moderation-issue.md rename to posts/inside-rust/follow-up-on-the-moderation-issue.md diff --git a/posts/inside-rust/2019-12-23-formatting-the-compiler.md b/posts/inside-rust/formatting-the-compiler.md similarity index 100% rename from posts/inside-rust/2019-12-23-formatting-the-compiler.md rename to posts/inside-rust/formatting-the-compiler.md diff --git a/posts/inside-rust/2020-03-27-goodbye-docs-team.md b/posts/inside-rust/goodbye-docs-team.md similarity index 100% rename from posts/inside-rust/2020-03-27-goodbye-docs-team.md rename to posts/inside-rust/goodbye-docs-team.md diff --git a/posts/inside-rust/2019-11-13-goverance-wg-cfp.md b/posts/inside-rust/goverance-wg-cfp.md similarity index 100% rename from posts/inside-rust/2019-11-13-goverance-wg-cfp.md rename to posts/inside-rust/goverance-wg-cfp.md diff --git a/posts/inside-rust/2023-02-22-governance-reform-rfc.md b/posts/inside-rust/governance-reform-rfc.md similarity index 100% rename from posts/inside-rust/2023-02-22-governance-reform-rfc.md rename to posts/inside-rust/governance-reform-rfc.md diff --git a/posts/inside-rust/2022-05-19-governance-update.md b/posts/inside-rust/governance-update@0.md similarity index 100% rename from posts/inside-rust/2022-05-19-governance-update.md rename to posts/inside-rust/governance-update@0.md diff --git a/posts/inside-rust/2022-10-06-governance-update.md b/posts/inside-rust/governance-update@1.md similarity index 100% rename from posts/inside-rust/2022-10-06-governance-update.md rename to posts/inside-rust/governance-update@1.md diff --git a/posts/inside-rust/2019-12-03-governance-wg-meeting.md b/posts/inside-rust/governance-wg-meeting@0.md similarity index 100% rename from posts/inside-rust/2019-12-03-governance-wg-meeting.md rename to posts/inside-rust/governance-wg-meeting@0.md diff --git a/posts/inside-rust/2019-12-10-governance-wg-meeting.md b/posts/inside-rust/governance-wg-meeting@1.md similarity index 100% rename from posts/inside-rust/2019-12-10-governance-wg-meeting.md rename to posts/inside-rust/governance-wg-meeting@1.md diff --git a/posts/inside-rust/2019-12-20-governance-wg-meeting.md b/posts/inside-rust/governance-wg-meeting@2.md similarity index 100% rename from posts/inside-rust/2019-12-20-governance-wg-meeting.md rename to posts/inside-rust/governance-wg-meeting@2.md diff --git a/posts/inside-rust/2020-03-17-governance-wg.md b/posts/inside-rust/governance-wg.md similarity index 100% rename from posts/inside-rust/2020-03-17-governance-wg.md rename to posts/inside-rust/governance-wg.md diff --git a/posts/inside-rust/2019-12-04-ide-future.md b/posts/inside-rust/ide-future.md similarity index 100% rename from posts/inside-rust/2019-12-04-ide-future.md rename to posts/inside-rust/ide-future.md diff --git a/posts/inside-rust/2022-04-19-imposter-syndrome.md b/posts/inside-rust/imposter-syndrome.md similarity index 100% rename from posts/inside-rust/2022-04-19-imposter-syndrome.md rename to posts/inside-rust/imposter-syndrome.md diff --git a/posts/inside-rust/2021-11-25-in-response-to-the-moderation-team-resignation.md b/posts/inside-rust/in-response-to-the-moderation-team-resignation.md similarity index 100% rename from posts/inside-rust/2021-11-25-in-response-to-the-moderation-team-resignation.md rename to posts/inside-rust/in-response-to-the-moderation-team-resignation.md diff --git a/posts/inside-rust/2025-03-05-inferred-const-generic-arguments.md b/posts/inside-rust/inferred-const-generic-arguments.md similarity index 100% rename from posts/inside-rust/2025-03-05-inferred-const-generic-arguments.md rename to posts/inside-rust/inferred-const-generic-arguments.md diff --git a/posts/inside-rust/2023-09-08-infra-team-leadership-change.md b/posts/inside-rust/infra-team-leadership-change.md similarity index 100% rename from posts/inside-rust/2023-09-08-infra-team-leadership-change.md rename to posts/inside-rust/infra-team-leadership-change.md diff --git a/posts/inside-rust/2019-10-15-infra-team-meeting.md b/posts/inside-rust/infra-team-meeting@0.md similarity index 100% rename from posts/inside-rust/2019-10-15-infra-team-meeting.md rename to posts/inside-rust/infra-team-meeting@0.md diff --git a/posts/inside-rust/2019-10-22-infra-team-meeting.md b/posts/inside-rust/infra-team-meeting@1.md similarity index 100% rename from posts/inside-rust/2019-10-22-infra-team-meeting.md rename to posts/inside-rust/infra-team-meeting@1.md diff --git a/posts/inside-rust/2019-10-29-infra-team-meeting.md b/posts/inside-rust/infra-team-meeting@2.md similarity index 100% rename from posts/inside-rust/2019-10-29-infra-team-meeting.md rename to posts/inside-rust/infra-team-meeting@2.md diff --git a/posts/inside-rust/2019-11-06-infra-team-meeting.md b/posts/inside-rust/infra-team-meeting@3.md similarity index 100% rename from posts/inside-rust/2019-11-06-infra-team-meeting.md rename to posts/inside-rust/infra-team-meeting@3.md diff --git a/posts/inside-rust/2019-11-18-infra-team-meeting.md b/posts/inside-rust/infra-team-meeting@4.md similarity index 100% rename from posts/inside-rust/2019-11-18-infra-team-meeting.md rename to posts/inside-rust/infra-team-meeting@4.md diff --git a/posts/inside-rust/2019-11-19-infra-team-meeting.md b/posts/inside-rust/infra-team-meeting@5.md similarity index 100% rename from posts/inside-rust/2019-11-19-infra-team-meeting.md rename to posts/inside-rust/infra-team-meeting@5.md diff --git a/posts/inside-rust/2019-12-11-infra-team-meeting.md b/posts/inside-rust/infra-team-meeting@6.md similarity index 100% rename from posts/inside-rust/2019-12-11-infra-team-meeting.md rename to posts/inside-rust/infra-team-meeting@6.md diff --git a/posts/inside-rust/2019-12-20-infra-team-meeting.md b/posts/inside-rust/infra-team-meeting@7.md similarity index 100% rename from posts/inside-rust/2019-12-20-infra-team-meeting.md rename to posts/inside-rust/infra-team-meeting@7.md diff --git a/posts/inside-rust/2020-02-25-intro-rustc-self-profile.md b/posts/inside-rust/intro-rustc-self-profile.md similarity index 100% rename from posts/inside-rust/2020-02-25-intro-rustc-self-profile.md rename to posts/inside-rust/intro-rustc-self-profile.md diff --git a/posts/inside-rust/2022-01-18-jan-steering-cycle.md b/posts/inside-rust/jan-steering-cycle.md similarity index 100% rename from posts/inside-rust/2022-01-18-jan-steering-cycle.md rename to posts/inside-rust/jan-steering-cycle.md diff --git a/posts/inside-rust/2019-12-19-jasper-and-wiser-full-members-of-compiler-team.md b/posts/inside-rust/jasper-and-wiser-full-members-of-compiler-team.md similarity index 100% rename from posts/inside-rust/2019-12-19-jasper-and-wiser-full-members-of-compiler-team.md rename to posts/inside-rust/jasper-and-wiser-full-members-of-compiler-team.md diff --git a/posts/inside-rust/2021-04-20-jsha-rustdoc-member.md b/posts/inside-rust/jsha-rustdoc-member.md similarity index 100% rename from posts/inside-rust/2021-04-20-jsha-rustdoc-member.md rename to posts/inside-rust/jsha-rustdoc-member.md diff --git a/posts/inside-rust/2020-02-20-jtgeibel-crates-io-co-lead.md b/posts/inside-rust/jtgeibel-crates-io-co-lead.md similarity index 100% rename from posts/inside-rust/2020-02-20-jtgeibel-crates-io-co-lead.md rename to posts/inside-rust/jtgeibel-crates-io-co-lead.md diff --git a/posts/inside-rust/2022-06-03-jun-steering-cycle.md b/posts/inside-rust/jun-steering-cycle.md similarity index 100% rename from posts/inside-rust/2022-06-03-jun-steering-cycle.md rename to posts/inside-rust/jun-steering-cycle.md diff --git a/posts/inside-rust/2023-09-04-keeping-secure-with-cargo-audit-0.18.md b/posts/inside-rust/keeping-secure-with-cargo-audit-0.18.md similarity index 100% rename from posts/inside-rust/2023-09-04-keeping-secure-with-cargo-audit-0.18.md rename to posts/inside-rust/keeping-secure-with-cargo-audit-0.18.md diff --git a/posts/inside-rust/2023-02-23-keyword-generics-progress-report-feb-2023.md b/posts/inside-rust/keyword-generics-progress-report-feb-2023.md similarity index 100% rename from posts/inside-rust/2023-02-23-keyword-generics-progress-report-feb-2023.md rename to posts/inside-rust/keyword-generics-progress-report-feb-2023.md diff --git a/posts/inside-rust/2022-07-27-keyword-generics.md b/posts/inside-rust/keyword-generics.md similarity index 100% rename from posts/inside-rust/2022-07-27-keyword-generics.md rename to posts/inside-rust/keyword-generics.md diff --git a/posts/inside-rust/2023-02-14-lang-advisors.md b/posts/inside-rust/lang-advisors.md similarity index 100% rename from posts/inside-rust/2023-02-14-lang-advisors.md rename to posts/inside-rust/lang-advisors.md diff --git a/posts/inside-rust/2022-04-04-lang-roadmap-2024.md b/posts/inside-rust/lang-roadmap-2024.md similarity index 100% rename from posts/inside-rust/2022-04-04-lang-roadmap-2024.md rename to posts/inside-rust/lang-roadmap-2024.md diff --git a/posts/inside-rust/2021-04-17-lang-team-apr-update.md b/posts/inside-rust/lang-team-apr-update.md similarity index 100% rename from posts/inside-rust/2021-04-17-lang-team-apr-update.md rename to posts/inside-rust/lang-team-apr-update.md diff --git a/posts/inside-rust/2022-04-06-lang-team-april-update.md b/posts/inside-rust/lang-team-april-update.md similarity index 100% rename from posts/inside-rust/2022-04-06-lang-team-april-update.md rename to posts/inside-rust/lang-team-april-update.md diff --git a/posts/inside-rust/2021-08-04-lang-team-aug-update.md b/posts/inside-rust/lang-team-aug-update.md similarity index 100% rename from posts/inside-rust/2021-08-04-lang-team-aug-update.md rename to posts/inside-rust/lang-team-aug-update.md diff --git a/posts/inside-rust/2024-02-13-lang-team-colead.md b/posts/inside-rust/lang-team-colead.md similarity index 100% rename from posts/inside-rust/2024-02-13-lang-team-colead.md rename to posts/inside-rust/lang-team-colead.md diff --git a/posts/inside-rust/2020-07-29-lang-team-design-meeting-min-const-generics.md b/posts/inside-rust/lang-team-design-meeting-min-const-generics.md similarity index 100% rename from posts/inside-rust/2020-07-29-lang-team-design-meeting-min-const-generics.md rename to posts/inside-rust/lang-team-design-meeting-min-const-generics.md diff --git a/posts/inside-rust/2020-07-08-lang-team-design-meeting-update.md b/posts/inside-rust/lang-team-design-meeting-update.md similarity index 100% rename from posts/inside-rust/2020-07-08-lang-team-design-meeting-update.md rename to posts/inside-rust/lang-team-design-meeting-update.md diff --git a/posts/inside-rust/2020-07-29-lang-team-design-meeting-wf-types.md b/posts/inside-rust/lang-team-design-meeting-wf-types.md similarity index 100% rename from posts/inside-rust/2020-07-29-lang-team-design-meeting-wf-types.md rename to posts/inside-rust/lang-team-design-meeting-wf-types.md diff --git a/posts/inside-rust/2020-01-10-lang-team-design-meetings.md b/posts/inside-rust/lang-team-design-meetings@0.md similarity index 100% rename from posts/inside-rust/2020-01-10-lang-team-design-meetings.md rename to posts/inside-rust/lang-team-design-meetings@0.md diff --git a/posts/inside-rust/2020-03-11-lang-team-design-meetings.md b/posts/inside-rust/lang-team-design-meetings@1.md similarity index 100% rename from posts/inside-rust/2020-03-11-lang-team-design-meetings.md rename to posts/inside-rust/lang-team-design-meetings@1.md diff --git a/posts/inside-rust/2020-04-10-lang-team-design-meetings.md b/posts/inside-rust/lang-team-design-meetings@2.md similarity index 100% rename from posts/inside-rust/2020-04-10-lang-team-design-meetings.md rename to posts/inside-rust/lang-team-design-meetings@2.md diff --git a/posts/inside-rust/2021-02-03-lang-team-feb-update.md b/posts/inside-rust/lang-team-feb-update@0.md similarity index 100% rename from posts/inside-rust/2021-02-03-lang-team-feb-update.md rename to posts/inside-rust/lang-team-feb-update@0.md diff --git a/posts/inside-rust/2022-02-18-lang-team-feb-update.md b/posts/inside-rust/lang-team-feb-update@1.md similarity index 100% rename from posts/inside-rust/2022-02-18-lang-team-feb-update.md rename to posts/inside-rust/lang-team-feb-update@1.md diff --git a/posts/inside-rust/2021-03-03-lang-team-mar-update.md b/posts/inside-rust/lang-team-mar-update@0.md similarity index 100% rename from posts/inside-rust/2021-03-03-lang-team-mar-update.md rename to posts/inside-rust/lang-team-mar-update@0.md diff --git a/posts/inside-rust/2022-03-09-lang-team-mar-update.md b/posts/inside-rust/lang-team-mar-update@1.md similarity index 100% rename from posts/inside-rust/2022-03-09-lang-team-mar-update.md rename to posts/inside-rust/lang-team-mar-update@1.md diff --git a/posts/inside-rust/2020-05-08-lang-team-meetings-rescheduled.md b/posts/inside-rust/lang-team-meetings-rescheduled.md similarity index 100% rename from posts/inside-rust/2020-05-08-lang-team-meetings-rescheduled.md rename to posts/inside-rust/lang-team-meetings-rescheduled.md diff --git a/posts/inside-rust/2023-02-14-lang-team-membership-update.md b/posts/inside-rust/lang-team-membership-update.md similarity index 100% rename from posts/inside-rust/2023-02-14-lang-team-membership-update.md rename to posts/inside-rust/lang-team-membership-update.md diff --git a/posts/inside-rust/2020-07-09-lang-team-path-to-membership.md b/posts/inside-rust/lang-team-path-to-membership.md similarity index 100% rename from posts/inside-rust/2020-07-09-lang-team-path-to-membership.md rename to posts/inside-rust/lang-team-path-to-membership.md diff --git a/posts/inside-rust/2024-05-28-launching-pad-representative.md b/posts/inside-rust/launching-pad-representative.md similarity index 100% rename from posts/inside-rust/2024-05-28-launching-pad-representative.md rename to posts/inside-rust/launching-pad-representative.md diff --git a/posts/inside-rust/2023-08-29-leadership-council-membership-changes.md b/posts/inside-rust/leadership-council-membership-changes.md similarity index 100% rename from posts/inside-rust/2023-08-29-leadership-council-membership-changes.md rename to posts/inside-rust/leadership-council-membership-changes.md diff --git a/posts/inside-rust/2024-02-19-leadership-council-repr-selection.md b/posts/inside-rust/leadership-council-repr-selection@0.md similarity index 100% rename from posts/inside-rust/2024-02-19-leadership-council-repr-selection.md rename to posts/inside-rust/leadership-council-repr-selection@0.md diff --git a/posts/inside-rust/2024-04-01-leadership-council-repr-selection.md b/posts/inside-rust/leadership-council-repr-selection@1.md similarity index 100% rename from posts/inside-rust/2024-04-01-leadership-council-repr-selection.md rename to posts/inside-rust/leadership-council-repr-selection@1.md diff --git a/posts/inside-rust/2024-08-20-leadership-council-repr-selection.md b/posts/inside-rust/leadership-council-repr-selection@2.md similarity index 100% rename from posts/inside-rust/2024-08-20-leadership-council-repr-selection.md rename to posts/inside-rust/leadership-council-repr-selection@2.md diff --git a/posts/inside-rust/2024-09-27-leadership-council-repr-selection.md b/posts/inside-rust/leadership-council-repr-selection@3.md similarity index 100% rename from posts/inside-rust/2024-09-27-leadership-council-repr-selection.md rename to posts/inside-rust/leadership-council-repr-selection@3.md diff --git a/posts/inside-rust/2025-02-14-leadership-council-repr-selection.md b/posts/inside-rust/leadership-council-repr-selection@4.md similarity index 100% rename from posts/inside-rust/2025-02-14-leadership-council-repr-selection.md rename to posts/inside-rust/leadership-council-repr-selection@4.md diff --git a/posts/inside-rust/2023-07-25-leadership-council-update.md b/posts/inside-rust/leadership-council-update@0.md similarity index 100% rename from posts/inside-rust/2023-07-25-leadership-council-update.md rename to posts/inside-rust/leadership-council-update@0.md diff --git a/posts/inside-rust/2023-11-13-leadership-council-update.md b/posts/inside-rust/leadership-council-update@1.md similarity index 100% rename from posts/inside-rust/2023-11-13-leadership-council-update.md rename to posts/inside-rust/leadership-council-update@1.md diff --git a/posts/inside-rust/2024-02-13-leadership-council-update.md b/posts/inside-rust/leadership-council-update@2.md similarity index 100% rename from posts/inside-rust/2024-02-13-leadership-council-update.md rename to posts/inside-rust/leadership-council-update@2.md diff --git a/posts/inside-rust/2024-05-14-leadership-council-update.md b/posts/inside-rust/leadership-council-update@3.md similarity index 100% rename from posts/inside-rust/2024-05-14-leadership-council-update.md rename to posts/inside-rust/leadership-council-update@3.md diff --git a/posts/inside-rust/2024-09-06-leadership-council-update.md b/posts/inside-rust/leadership-council-update@4.md similarity index 100% rename from posts/inside-rust/2024-09-06-leadership-council-update.md rename to posts/inside-rust/leadership-council-update@4.md diff --git a/posts/inside-rust/2024-12-09-leadership-council-update.md b/posts/inside-rust/leadership-council-update@5.md similarity index 100% rename from posts/inside-rust/2024-12-09-leadership-council-update.md rename to posts/inside-rust/leadership-council-update@5.md diff --git a/posts/inside-rust/2023-08-25-leadership-initiatives.md b/posts/inside-rust/leadership-initiatives.md similarity index 100% rename from posts/inside-rust/2023-08-25-leadership-initiatives.md rename to posts/inside-rust/leadership-initiatives.md diff --git a/posts/inside-rust/2022-04-20-libs-aspirations.md b/posts/inside-rust/libs-aspirations.md similarity index 100% rename from posts/inside-rust/2022-04-20-libs-aspirations.md rename to posts/inside-rust/libs-aspirations.md diff --git a/posts/inside-rust/2021-11-15-libs-contributors-the8472-kodraus.md b/posts/inside-rust/libs-contributors-the8472-kodraus.md similarity index 100% rename from posts/inside-rust/2021-11-15-libs-contributors-the8472-kodraus.md rename to posts/inside-rust/libs-contributors-the8472-kodraus.md diff --git a/posts/inside-rust/2022-04-18-libs-contributors.md b/posts/inside-rust/libs-contributors@0.md similarity index 100% rename from posts/inside-rust/2022-04-18-libs-contributors.md rename to posts/inside-rust/libs-contributors@0.md diff --git a/posts/inside-rust/2022-08-10-libs-contributors.md b/posts/inside-rust/libs-contributors@1.md similarity index 100% rename from posts/inside-rust/2022-08-10-libs-contributors.md rename to posts/inside-rust/libs-contributors@1.md diff --git a/posts/inside-rust/2022-11-29-libs-member.md b/posts/inside-rust/libs-member.md similarity index 100% rename from posts/inside-rust/2022-11-29-libs-member.md rename to posts/inside-rust/libs-member.md diff --git a/posts/inside-rust/2020-06-29-lto-improvements.md b/posts/inside-rust/lto-improvements.md similarity index 100% rename from posts/inside-rust/2020-06-29-lto-improvements.md rename to posts/inside-rust/lto-improvements.md diff --git a/posts/inside-rust/2022-03-11-mar-steering-cycle.md b/posts/inside-rust/mar-steering-cycle.md similarity index 100% rename from posts/inside-rust/2022-03-11-mar-steering-cycle.md rename to posts/inside-rust/mar-steering-cycle.md diff --git a/posts/inside-rust/2020-06-08-new-inline-asm.md b/posts/inside-rust/new-inline-asm.md similarity index 100% rename from posts/inside-rust/2020-06-08-new-inline-asm.md rename to posts/inside-rust/new-inline-asm.md diff --git a/posts/inside-rust/2020-07-27-opening-up-the-core-team-agenda.md b/posts/inside-rust/opening-up-the-core-team-agenda.md similarity index 100% rename from posts/inside-rust/2020-07-27-opening-up-the-core-team-agenda.md rename to posts/inside-rust/opening-up-the-core-team-agenda.md diff --git a/posts/inside-rust/2020-02-27-pietro-joins-core-team.md b/posts/inside-rust/pietro-joins-core-team.md similarity index 100% rename from posts/inside-rust/2020-02-27-pietro-joins-core-team.md rename to posts/inside-rust/pietro-joins-core-team.md diff --git a/posts/inside-rust/2019-10-25-planning-meeting-update.md b/posts/inside-rust/planning-meeting-update.md similarity index 100% rename from posts/inside-rust/2019-10-25-planning-meeting-update.md rename to posts/inside-rust/planning-meeting-update.md diff --git a/posts/inside-rust/2021-03-04-planning-rust-2021.md b/posts/inside-rust/planning-rust-2021.md similarity index 100% rename from posts/inside-rust/2021-03-04-planning-rust-2021.md rename to posts/inside-rust/planning-rust-2021.md diff --git a/posts/inside-rust/2019-10-24-pnkfelix-compiler-team-co-lead.md b/posts/inside-rust/pnkfelix-compiler-team-co-lead.md similarity index 100% rename from posts/inside-rust/2019-10-24-pnkfelix-compiler-team-co-lead.md rename to posts/inside-rust/pnkfelix-compiler-team-co-lead.md diff --git a/posts/inside-rust/2023-10-06-polonius-update.md b/posts/inside-rust/polonius-update.md similarity index 100% rename from posts/inside-rust/2023-10-06-polonius-update.md rename to posts/inside-rust/polonius-update.md diff --git a/posts/inside-rust/2023-09-22-project-director-nominees.md b/posts/inside-rust/project-director-nominees.md similarity index 100% rename from posts/inside-rust/2023-09-22-project-director-nominees.md rename to posts/inside-rust/project-director-nominees.md diff --git a/posts/inside-rust/2024-12-17-project-director-update.md b/posts/inside-rust/project-director-update@0.md similarity index 100% rename from posts/inside-rust/2024-12-17-project-director-update.md rename to posts/inside-rust/project-director-update@0.md diff --git a/posts/inside-rust/2025-01-30-project-director-update.md b/posts/inside-rust/project-director-update@1.md similarity index 100% rename from posts/inside-rust/2025-01-30-project-director-update.md rename to posts/inside-rust/project-director-update@1.md diff --git a/posts/inside-rust/2025-02-24-project-director-update.md b/posts/inside-rust/project-director-update@2.md similarity index 100% rename from posts/inside-rust/2025-02-24-project-director-update.md rename to posts/inside-rust/project-director-update@2.md diff --git a/posts/inside-rust/2024-11-04-project-goals-2025h1-call-for-proposals.md b/posts/inside-rust/project-goals-2025h1-call-for-proposals.md similarity index 100% rename from posts/inside-rust/2024-11-04-project-goals-2025h1-call-for-proposals.md rename to posts/inside-rust/project-goals-2025h1-call-for-proposals.md diff --git a/posts/inside-rust/2020-03-04-recent-future-pattern-matching-improvements.md b/posts/inside-rust/recent-future-pattern-matching-improvements.md similarity index 100% rename from posts/inside-rust/2020-03-04-recent-future-pattern-matching-improvements.md rename to posts/inside-rust/recent-future-pattern-matching-improvements.md diff --git a/posts/inside-rust/2025-02-27-relnotes-interest-group.md b/posts/inside-rust/relnotes-interest-group.md similarity index 100% rename from posts/inside-rust/2025-02-27-relnotes-interest-group.md rename to posts/inside-rust/relnotes-interest-group.md diff --git a/posts/inside-rust/2020-03-13-rename-rustc-guide.md b/posts/inside-rust/rename-rustc-guide.md similarity index 100% rename from posts/inside-rust/2020-03-13-rename-rustc-guide.md rename to posts/inside-rust/rename-rustc-guide.md diff --git a/posts/inside-rust/2023-08-02-rotating-compiler-leads.md b/posts/inside-rust/rotating-compiler-leads.md similarity index 100% rename from posts/inside-rust/2023-08-02-rotating-compiler-leads.md rename to posts/inside-rust/rotating-compiler-leads.md diff --git a/posts/inside-rust/2024-09-26-rtn-call-for-testing.md b/posts/inside-rust/rtn-call-for-testing.md similarity index 100% rename from posts/inside-rust/2024-09-26-rtn-call-for-testing.md rename to posts/inside-rust/rtn-call-for-testing.md diff --git a/posts/inside-rust/2020-07-23-rust-ci-is-moving-to-github-actions.md b/posts/inside-rust/rust-ci-is-moving-to-github-actions.md similarity index 100% rename from posts/inside-rust/2020-07-23-rust-ci-is-moving-to-github-actions.md rename to posts/inside-rust/rust-ci-is-moving-to-github-actions.md diff --git a/posts/inside-rust/2024-05-09-rust-leads-summit.md b/posts/inside-rust/rust-leads-summit.md similarity index 100% rename from posts/inside-rust/2024-05-09-rust-leads-summit.md rename to posts/inside-rust/rust-leads-summit.md diff --git a/posts/inside-rust/2020-03-26-rustc-dev-guide-overview.md b/posts/inside-rust/rustc-dev-guide-overview.md similarity index 100% rename from posts/inside-rust/2020-03-26-rustc-dev-guide-overview.md rename to posts/inside-rust/rustc-dev-guide-overview.md diff --git a/posts/inside-rust/2019-10-28-rustc-learning-working-group-introduction.md b/posts/inside-rust/rustc-learning-working-group-introduction.md similarity index 100% rename from posts/inside-rust/2019-10-28-rustc-learning-working-group-introduction.md rename to posts/inside-rust/rustc-learning-working-group-introduction.md diff --git a/posts/inside-rust/2021-01-15-rustdoc-performance-improvements.md b/posts/inside-rust/rustdoc-performance-improvements.md similarity index 100% rename from posts/inside-rust/2021-01-15-rustdoc-performance-improvements.md rename to posts/inside-rust/rustdoc-performance-improvements.md diff --git a/posts/inside-rust/2021-04-28-rustup-1.24.0-incident-report.md b/posts/inside-rust/rustup-1.24.0-incident-report.md similarity index 100% rename from posts/inside-rust/2021-04-28-rustup-1.24.0-incident-report.md rename to posts/inside-rust/rustup-1.24.0-incident-report.md diff --git a/posts/inside-rust/2021-02-15-shrinkmem-rustc-sprint.md b/posts/inside-rust/shrinkmem-rustc-sprint.md similarity index 100% rename from posts/inside-rust/2021-02-15-shrinkmem-rustc-sprint.md rename to posts/inside-rust/shrinkmem-rustc-sprint.md diff --git a/posts/inside-rust/2020-11-12-source-based-code-coverage.md b/posts/inside-rust/source-based-code-coverage.md similarity index 100% rename from posts/inside-rust/2020-11-12-source-based-code-coverage.md rename to posts/inside-rust/source-based-code-coverage.md diff --git a/posts/inside-rust/2023-11-15-spec-vision.md b/posts/inside-rust/spec-vision.md similarity index 100% rename from posts/inside-rust/2023-11-15-spec-vision.md rename to posts/inside-rust/spec-vision.md diff --git a/posts/inside-rust/2023-05-03-stabilizing-async-fn-in-trait.md b/posts/inside-rust/stabilizing-async-fn-in-trait.md similarity index 100% rename from posts/inside-rust/2023-05-03-stabilizing-async-fn-in-trait.md rename to posts/inside-rust/stabilizing-async-fn-in-trait.md diff --git a/posts/inside-rust/2020-09-17-stabilizing-intra-doc-links.md b/posts/inside-rust/stabilizing-intra-doc-links.md similarity index 100% rename from posts/inside-rust/2020-09-17-stabilizing-intra-doc-links.md rename to posts/inside-rust/stabilizing-intra-doc-links.md diff --git a/posts/inside-rust/2022-06-21-survey-2021-report.md b/posts/inside-rust/survey-2021-report.md similarity index 100% rename from posts/inside-rust/2022-06-21-survey-2021-report.md rename to posts/inside-rust/survey-2021-report.md diff --git a/posts/inside-rust/2020-03-19-terminating-rust.md b/posts/inside-rust/terminating-rust.md similarity index 100% rename from posts/inside-rust/2020-03-19-terminating-rust.md rename to posts/inside-rust/terminating-rust.md diff --git a/posts/inside-rust/2025-01-10-test-infra-dec-2024.md b/posts/inside-rust/test-infra-dec-2024.md similarity index 100% rename from posts/inside-rust/2025-01-10-test-infra-dec-2024.md rename to posts/inside-rust/test-infra-dec-2024.md diff --git a/posts/inside-rust/2024-12-09-test-infra-nov-2024.md b/posts/inside-rust/test-infra-nov-2024.md similarity index 100% rename from posts/inside-rust/2024-12-09-test-infra-nov-2024.md rename to posts/inside-rust/test-infra-nov-2024.md diff --git a/posts/inside-rust/2024-11-04-test-infra-oct-2024-2.md b/posts/inside-rust/test-infra-oct-2024-2.md similarity index 100% rename from posts/inside-rust/2024-11-04-test-infra-oct-2024-2.md rename to posts/inside-rust/test-infra-oct-2024-2.md diff --git a/posts/inside-rust/2024-10-10-test-infra-oct-2024.md b/posts/inside-rust/test-infra-oct-2024.md similarity index 100% rename from posts/inside-rust/2024-10-10-test-infra-oct-2024.md rename to posts/inside-rust/test-infra-oct-2024.md diff --git a/posts/inside-rust/2024-01-03-this-development-cycle-in-cargo-1-76.md b/posts/inside-rust/this-development-cycle-in-cargo-1-76.md similarity index 100% rename from posts/inside-rust/2024-01-03-this-development-cycle-in-cargo-1-76.md rename to posts/inside-rust/this-development-cycle-in-cargo-1-76.md diff --git a/posts/inside-rust/2024-02-13-this-development-cycle-in-cargo-1-77.md b/posts/inside-rust/this-development-cycle-in-cargo-1-77.md similarity index 100% rename from posts/inside-rust/2024-02-13-this-development-cycle-in-cargo-1-77.md rename to posts/inside-rust/this-development-cycle-in-cargo-1-77.md diff --git a/posts/inside-rust/2024-03-26-this-development-cycle-in-cargo-1.78.md b/posts/inside-rust/this-development-cycle-in-cargo-1.78.md similarity index 100% rename from posts/inside-rust/2024-03-26-this-development-cycle-in-cargo-1.78.md rename to posts/inside-rust/this-development-cycle-in-cargo-1.78.md diff --git a/posts/inside-rust/2024-05-07-this-development-cycle-in-cargo-1.79.md b/posts/inside-rust/this-development-cycle-in-cargo-1.79.md similarity index 100% rename from posts/inside-rust/2024-05-07-this-development-cycle-in-cargo-1.79.md rename to posts/inside-rust/this-development-cycle-in-cargo-1.79.md diff --git a/posts/inside-rust/2024-06-19-this-development-cycle-in-cargo-1.80.md b/posts/inside-rust/this-development-cycle-in-cargo-1.80.md similarity index 100% rename from posts/inside-rust/2024-06-19-this-development-cycle-in-cargo-1.80.md rename to posts/inside-rust/this-development-cycle-in-cargo-1.80.md diff --git a/posts/inside-rust/2024-08-15-this-development-cycle-in-cargo-1.81.md b/posts/inside-rust/this-development-cycle-in-cargo-1.81.md similarity index 100% rename from posts/inside-rust/2024-08-15-this-development-cycle-in-cargo-1.81.md rename to posts/inside-rust/this-development-cycle-in-cargo-1.81.md diff --git a/posts/inside-rust/2024-10-01-this-development-cycle-in-cargo-1.82.md b/posts/inside-rust/this-development-cycle-in-cargo-1.82.md similarity index 100% rename from posts/inside-rust/2024-10-01-this-development-cycle-in-cargo-1.82.md rename to posts/inside-rust/this-development-cycle-in-cargo-1.82.md diff --git a/posts/inside-rust/2024-10-31-this-development-cycle-in-cargo-1.83.md b/posts/inside-rust/this-development-cycle-in-cargo-1.83.md similarity index 100% rename from posts/inside-rust/2024-10-31-this-development-cycle-in-cargo-1.83.md rename to posts/inside-rust/this-development-cycle-in-cargo-1.83.md diff --git a/posts/inside-rust/2024-12-13-this-development-cycle-in-cargo-1.84.md b/posts/inside-rust/this-development-cycle-in-cargo-1.84.md similarity index 100% rename from posts/inside-rust/2024-12-13-this-development-cycle-in-cargo-1.84.md rename to posts/inside-rust/this-development-cycle-in-cargo-1.84.md diff --git a/posts/inside-rust/2025-01-17-this-development-cycle-in-cargo-1.85.md b/posts/inside-rust/this-development-cycle-in-cargo-1.85.md similarity index 100% rename from posts/inside-rust/2025-01-17-this-development-cycle-in-cargo-1.85.md rename to posts/inside-rust/this-development-cycle-in-cargo-1.85.md diff --git a/posts/inside-rust/2025-02-27-this-development-cycle-in-cargo-1.86.md b/posts/inside-rust/this-development-cycle-in-cargo-1.86.md similarity index 100% rename from posts/inside-rust/2025-02-27-this-development-cycle-in-cargo-1.86.md rename to posts/inside-rust/this-development-cycle-in-cargo-1.86.md diff --git a/posts/inside-rust/2023-04-12-trademark-policy-draft-feedback.md b/posts/inside-rust/trademark-policy-draft-feedback.md similarity index 100% rename from posts/inside-rust/2023-04-12-trademark-policy-draft-feedback.md rename to posts/inside-rust/trademark-policy-draft-feedback.md diff --git a/posts/inside-rust/2023-07-17-trait-system-refactor-initiative.md b/posts/inside-rust/trait-system-refactor-initiative@0.md similarity index 100% rename from posts/inside-rust/2023-07-17-trait-system-refactor-initiative.md rename to posts/inside-rust/trait-system-refactor-initiative@0.md diff --git a/posts/inside-rust/2023-12-22-trait-system-refactor-initiative.md b/posts/inside-rust/trait-system-refactor-initiative@1.md similarity index 100% rename from posts/inside-rust/2023-12-22-trait-system-refactor-initiative.md rename to posts/inside-rust/trait-system-refactor-initiative@1.md diff --git a/posts/inside-rust/2024-12-04-trait-system-refactor-initiative.md b/posts/inside-rust/trait-system-refactor-initiative@2.md similarity index 100% rename from posts/inside-rust/2024-12-04-trait-system-refactor-initiative.md rename to posts/inside-rust/trait-system-refactor-initiative@2.md diff --git a/posts/inside-rust/2020-03-28-traits-sprint-1.md b/posts/inside-rust/traits-sprint-1.md similarity index 100% rename from posts/inside-rust/2020-03-28-traits-sprint-1.md rename to posts/inside-rust/traits-sprint-1.md diff --git a/posts/inside-rust/2020-05-18-traits-sprint-2.md b/posts/inside-rust/traits-sprint-2.md similarity index 100% rename from posts/inside-rust/2020-05-18-traits-sprint-2.md rename to posts/inside-rust/traits-sprint-2.md diff --git a/posts/inside-rust/2020-07-17-traits-sprint-3.md b/posts/inside-rust/traits-sprint-3.md similarity index 100% rename from posts/inside-rust/2020-07-17-traits-sprint-3.md rename to posts/inside-rust/traits-sprint-3.md diff --git a/posts/inside-rust/2020-03-13-twir-new-lead.md b/posts/inside-rust/twir-new-lead.md similarity index 100% rename from posts/inside-rust/2020-03-13-twir-new-lead.md rename to posts/inside-rust/twir-new-lead.md diff --git a/posts/inside-rust/2024-04-12-types-team-leadership.md b/posts/inside-rust/types-team-leadership.md similarity index 100% rename from posts/inside-rust/2024-04-12-types-team-leadership.md rename to posts/inside-rust/types-team-leadership.md diff --git a/posts/inside-rust/2020-04-10-upcoming-compiler-team-design-meeting.md b/posts/inside-rust/upcoming-compiler-team-design-meeting@0.md similarity index 100% rename from posts/inside-rust/2020-04-10-upcoming-compiler-team-design-meeting.md rename to posts/inside-rust/upcoming-compiler-team-design-meeting@0.md diff --git a/posts/inside-rust/2020-06-08-upcoming-compiler-team-design-meeting.md b/posts/inside-rust/upcoming-compiler-team-design-meeting@1.md similarity index 100% rename from posts/inside-rust/2020-06-08-upcoming-compiler-team-design-meeting.md rename to posts/inside-rust/upcoming-compiler-team-design-meeting@1.md diff --git a/posts/inside-rust/2019-11-22-upcoming-compiler-team-design-meetings.md b/posts/inside-rust/upcoming-compiler-team-design-meetings@0.md similarity index 100% rename from posts/inside-rust/2019-11-22-upcoming-compiler-team-design-meetings.md rename to posts/inside-rust/upcoming-compiler-team-design-meetings@0.md diff --git a/posts/inside-rust/2020-01-24-upcoming-compiler-team-design-meetings.md b/posts/inside-rust/upcoming-compiler-team-design-meetings@1.md similarity index 100% rename from posts/inside-rust/2020-01-24-upcoming-compiler-team-design-meetings.md rename to posts/inside-rust/upcoming-compiler-team-design-meetings@1.md diff --git a/posts/inside-rust/2020-02-14-upcoming-compiler-team-design-meetings.md b/posts/inside-rust/upcoming-compiler-team-design-meetings@2.md similarity index 100% rename from posts/inside-rust/2020-02-14-upcoming-compiler-team-design-meetings.md rename to posts/inside-rust/upcoming-compiler-team-design-meetings@2.md diff --git a/posts/inside-rust/2020-03-13-upcoming-compiler-team-design-meetings.md b/posts/inside-rust/upcoming-compiler-team-design-meetings@3.md similarity index 100% rename from posts/inside-rust/2020-03-13-upcoming-compiler-team-design-meetings.md rename to posts/inside-rust/upcoming-compiler-team-design-meetings@3.md diff --git a/posts/inside-rust/2020-08-28-upcoming-compiler-team-design-meetings.md b/posts/inside-rust/upcoming-compiler-team-design-meetings@4.md similarity index 100% rename from posts/inside-rust/2020-08-28-upcoming-compiler-team-design-meetings.md rename to posts/inside-rust/upcoming-compiler-team-design-meetings@4.md diff --git a/posts/inside-rust/2020-04-07-update-on-the-github-actions-evaluation.md b/posts/inside-rust/update-on-the-github-actions-evaluation.md similarity index 100% rename from posts/inside-rust/2020-04-07-update-on-the-github-actions-evaluation.md rename to posts/inside-rust/update-on-the-github-actions-evaluation.md diff --git a/posts/inside-rust/2020-05-26-website-retrospective.md b/posts/inside-rust/website-retrospective.md similarity index 100% rename from posts/inside-rust/2020-05-26-website-retrospective.md rename to posts/inside-rust/website-retrospective.md diff --git a/posts/inside-rust/2024-08-01-welcome-tc-to-the-lang-team.md b/posts/inside-rust/welcome-tc-to-the-lang-team.md similarity index 100% rename from posts/inside-rust/2024-08-01-welcome-tc-to-the-lang-team.md rename to posts/inside-rust/welcome-tc-to-the-lang-team.md diff --git a/posts/inside-rust/2019-12-20-wg-learning-update.md b/posts/inside-rust/wg-learning-update.md similarity index 100% rename from posts/inside-rust/2019-12-20-wg-learning-update.md rename to posts/inside-rust/wg-learning-update.md diff --git a/posts/inside-rust/2020-06-09-windows-notification-group.md b/posts/inside-rust/windows-notification-group.md similarity index 100% rename from posts/inside-rust/2020-06-09-windows-notification-group.md rename to posts/inside-rust/windows-notification-group.md diff --git a/posts/2023-06-20-introducing-leadership-council.md b/posts/introducing-leadership-council.md similarity index 100% rename from posts/2023-06-20-introducing-leadership-council.md rename to posts/introducing-leadership-council.md diff --git a/posts/2017-03-02-lang-ergonomics.md b/posts/lang-ergonomics.md similarity index 100% rename from posts/2017-03-02-lang-ergonomics.md rename to posts/lang-ergonomics.md diff --git a/posts/2020-08-18-laying-the-foundation-for-rusts-future.md b/posts/laying-the-foundation-for-rusts-future.md similarity index 100% rename from posts/2020-08-18-laying-the-foundation-for-rusts-future.md rename to posts/laying-the-foundation-for-rusts-future.md diff --git a/posts/2017-05-05-libz-blitz.md b/posts/libz-blitz.md similarity index 100% rename from posts/2017-05-05-libz-blitz.md rename to posts/libz-blitz.md diff --git a/posts/2020-12-11-lock-poisoning-survey.md b/posts/lock-poisoning-survey.md similarity index 100% rename from posts/2020-12-11-lock-poisoning-survey.md rename to posts/lock-poisoning-survey.md diff --git a/posts/2022-05-10-malicious-crate-rustdecimal.md b/posts/malicious-crate-rustdecimal.md similarity index 100% rename from posts/2022-05-10-malicious-crate-rustdecimal.md rename to posts/malicious-crate-rustdecimal.md diff --git a/posts/2021-01-04-mdbook-security-advisory.md b/posts/mdbook-security-advisory.md similarity index 100% rename from posts/2021-01-04-mdbook-security-advisory.md rename to posts/mdbook-security-advisory.md diff --git a/posts/2018-01-03-new-years-rust-a-call-for-community-blogposts.md b/posts/new-years-rust-a-call-for-community-blogposts.md similarity index 100% rename from posts/2018-01-03-new-years-rust-a-call-for-community-blogposts.md rename to posts/new-years-rust-a-call-for-community-blogposts.md diff --git a/posts/2022-08-05-nll-by-default.md b/posts/nll-by-default.md similarity index 100% rename from posts/2022-08-05-nll-by-default.md rename to posts/nll-by-default.md diff --git a/posts/2019-11-01-nll-hard-errors.md b/posts/nll-hard-errors.md similarity index 100% rename from posts/2019-11-01-nll-hard-errors.md rename to posts/nll-hard-errors.md diff --git a/posts/2023-11-09-parallel-rustc.md b/posts/parallel-rustc.md similarity index 100% rename from posts/2023-11-09-parallel-rustc.md rename to posts/parallel-rustc.md diff --git a/posts/2024-12-16-project-goals-nov-update.md b/posts/project-goals-nov-update.md similarity index 100% rename from posts/2024-12-16-project-goals-nov-update.md rename to posts/project-goals-nov-update.md diff --git a/posts/2024-10-31-project-goals-oct-update.md b/posts/project-goals-oct-update.md similarity index 100% rename from posts/2024-10-31-project-goals-oct-update.md rename to posts/project-goals-oct-update.md diff --git a/posts/2020-01-03-reducing-support-for-32-bit-apple-targets.md b/posts/reducing-support-for-32-bit-apple-targets.md similarity index 100% rename from posts/2020-01-03-reducing-support-for-32-bit-apple-targets.md rename to posts/reducing-support-for-32-bit-apple-targets.md diff --git a/posts/2023-07-05-regex-1.9.md b/posts/regex-1.9.md similarity index 100% rename from posts/2023-07-05-regex-1.9.md rename to posts/regex-1.9.md diff --git a/posts/2020-10-20-regression-labels.md b/posts/regression-labels.md similarity index 100% rename from posts/2020-10-20-regression-labels.md rename to posts/regression-labels.md diff --git a/posts/2017-02-06-roadmap.md b/posts/roadmap@0.md similarity index 100% rename from posts/2017-02-06-roadmap.md rename to posts/roadmap@0.md diff --git a/posts/2018-03-12-roadmap.md b/posts/roadmap@1.md similarity index 100% rename from posts/2018-03-12-roadmap.md rename to posts/roadmap@1.md diff --git a/posts/2019-04-23-roadmap.md b/posts/roadmap@2.md similarity index 100% rename from posts/2019-04-23-roadmap.md rename to posts/roadmap@2.md diff --git a/posts/2025-01-22-rust-2024-beta.md b/posts/rust-2024-beta.md similarity index 100% rename from posts/2025-01-22-rust-2024-beta.md rename to posts/rust-2024-beta.md diff --git a/posts/2022-02-21-rust-analyzer-joins-rust-org.md b/posts/rust-analyzer-joins-rust-org.md similarity index 100% rename from posts/2022-02-21-rust-analyzer-joins-rust-org.md rename to posts/rust-analyzer-joins-rust-org.md diff --git a/posts/2016-05-16-rust-at-one-year.md b/posts/rust-at-one-year.md similarity index 100% rename from posts/2016-05-16-rust-at-one-year.md rename to posts/rust-at-one-year.md diff --git a/posts/2017-05-15-rust-at-two-years.md b/posts/rust-at-two-years.md similarity index 100% rename from posts/2017-05-15-rust-at-two-years.md rename to posts/rust-at-two-years.md diff --git a/posts/2017-12-21-rust-in-2017.md b/posts/rust-in-2017.md similarity index 100% rename from posts/2017-12-21-rust-in-2017.md rename to posts/rust-in-2017.md diff --git a/posts/2020-12-16-rust-survey-2020.md b/posts/rust-survey-2020.md similarity index 100% rename from posts/2020-12-16-rust-survey-2020.md rename to posts/rust-survey-2020.md diff --git a/posts/2022-06-28-rust-unconference.md b/posts/rust-unconference.md similarity index 100% rename from posts/2022-06-28-rust-unconference.md rename to posts/rust-unconference.md diff --git a/posts/2020-03-10-rustconf-cfp.md b/posts/rustconf-cfp.md similarity index 100% rename from posts/2020-03-10-rustconf-cfp.md rename to posts/rustconf-cfp.md diff --git a/posts/2023-07-01-rustfmt-supports-let-else-statements.md b/posts/rustfmt-supports-let-else-statements.md similarity index 100% rename from posts/2023-07-01-rustfmt-supports-let-else-statements.md rename to posts/rustfmt-supports-let-else-statements.md diff --git a/posts/2016-05-13-rustup.md b/posts/rustup.md similarity index 100% rename from posts/2016-05-13-rustup.md rename to posts/rustup.md diff --git a/posts/2018-07-06-security-advisory-for-rustdoc.md b/posts/security-advisory-for-rustdoc.md similarity index 100% rename from posts/2018-07-06-security-advisory-for-rustdoc.md rename to posts/security-advisory-for-rustdoc.md diff --git a/posts/2021-05-15-six-years-of-rust.md b/posts/six-years-of-rust.md similarity index 100% rename from posts/2021-05-15-six-years-of-rust.md rename to posts/six-years-of-rust.md diff --git a/posts/2022-06-22-sparse-registry-testing.md b/posts/sparse-registry-testing.md similarity index 100% rename from posts/2022-06-22-sparse-registry-testing.md rename to posts/sparse-registry-testing.md diff --git a/posts/2019-12-03-survey-launch.md b/posts/survey-launch@0.md similarity index 100% rename from posts/2019-12-03-survey-launch.md rename to posts/survey-launch@0.md diff --git a/posts/2020-09-10-survey-launch.md b/posts/survey-launch@1.md similarity index 100% rename from posts/2020-09-10-survey-launch.md rename to posts/survey-launch@1.md diff --git a/posts/2021-12-08-survey-launch.md b/posts/survey-launch@2.md similarity index 100% rename from posts/2021-12-08-survey-launch.md rename to posts/survey-launch@2.md diff --git a/posts/2022-12-05-survey-launch.md b/posts/survey-launch@3.md similarity index 100% rename from posts/2022-12-05-survey-launch.md rename to posts/survey-launch@3.md diff --git a/posts/2023-12-18-survey-launch.md b/posts/survey-launch@4.md similarity index 100% rename from posts/2023-12-18-survey-launch.md rename to posts/survey-launch@4.md diff --git a/posts/2016-05-09-survey.md b/posts/survey@0.md similarity index 100% rename from posts/2016-05-09-survey.md rename to posts/survey@0.md diff --git a/posts/2017-05-03-survey.md b/posts/survey@1.md similarity index 100% rename from posts/2017-05-03-survey.md rename to posts/survey@1.md diff --git a/posts/2018-08-08-survey.md b/posts/survey@2.md similarity index 100% rename from posts/2018-08-08-survey.md rename to posts/survey@2.md diff --git a/posts/2020-12-07-the-foundation-conversation.md b/posts/the-foundation-conversation.md similarity index 100% rename from posts/2020-12-07-the-foundation-conversation.md rename to posts/the-foundation-conversation.md diff --git a/posts/2024-11-06-trademark-update.md b/posts/trademark-update.md similarity index 100% rename from posts/2024-11-06-trademark-update.md rename to posts/trademark-update.md diff --git a/posts/2015-05-11-traits.md b/posts/traits.md similarity index 100% rename from posts/2015-05-11-traits.md rename to posts/traits.md diff --git a/posts/2023-01-20-types-announcement.md b/posts/types-announcement.md similarity index 100% rename from posts/2023-01-20-types-announcement.md rename to posts/types-announcement.md diff --git a/posts/2024-06-26-types-team-update.md b/posts/types-team-update.md similarity index 100% rename from posts/2024-06-26-types-team-update.md rename to posts/types-team-update.md diff --git a/posts/2019-09-18-upcoming-docsrs-changes.md b/posts/upcoming-docsrs-changes.md similarity index 100% rename from posts/2019-09-18-upcoming-docsrs-changes.md rename to posts/upcoming-docsrs-changes.md diff --git a/posts/2024-04-09-updates-to-rusts-wasi-targets.md b/posts/updates-to-rusts-wasi-targets.md similarity index 100% rename from posts/2024-04-09-updates-to-rusts-wasi-targets.md rename to posts/updates-to-rusts-wasi-targets.md diff --git a/posts/2024-11-26-wasip2-tier-2.md b/posts/wasip2-tier-2.md similarity index 100% rename from posts/2024-11-26-wasip2-tier-2.md rename to posts/wasip2-tier-2.md diff --git a/posts/2024-09-24-webassembly-targets-change-in-default-target-features.md b/posts/webassembly-targets-change-in-default-target-features.md similarity index 100% rename from posts/2024-09-24-webassembly-targets-change-in-default-target-features.md rename to posts/webassembly-targets-change-in-default-target-features.md diff --git a/posts/2020-09-14-wg-prio-call-for-contributors.md b/posts/wg-prio-call-for-contributors.md similarity index 100% rename from posts/2020-09-14-wg-prio-call-for-contributors.md rename to posts/wg-prio-call-for-contributors.md diff --git a/posts/2018-07-27-what-is-rust-2018.md b/posts/what-is-rust-2018.md similarity index 100% rename from posts/2018-07-27-what-is-rust-2018.md rename to posts/what-is-rust-2018.md From 415fac6e25f4ef986ed6aba43edc9ae5047d2cb0 Mon Sep 17 00:00:00 2001 From: Remo Senekowitsch Date: Sat, 8 Mar 2025 21:52:22 +0100 Subject: [PATCH 5/7] Remove name disambiguator from post urls --- src/posts.rs | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/posts.rs b/src/posts.rs index 39845dab2..0f27a8b6f 100644 --- a/src/posts.rs +++ b/src/posts.rs @@ -31,7 +31,17 @@ pub struct Post { impl Post { pub(crate) fn open(path: &Path, manifest: &Manifest) -> eyre::Result { // yeah this might blow up, but it won't - let filename = path.file_name().unwrap().to_str().unwrap().into(); + let filename = { + let filename = path.file_name().unwrap().to_str().unwrap().to_string(); + // '@' is used as a disambiguator between file names that were + // previously identical except for the date prefix (which was + // removed). The URL doesn't need the disambiguator, because it has + // the date in it. Also, we must remove it to preserve permalinks. + match filename.split_once('@') { + Some((pre, _)) => format!("{pre}.md"), + None => filename, + } + }; let contents = std::fs::read_to_string(path)?; From c60dbfab3aee679051e91fbf529f1ed52e049139 Mon Sep 17 00:00:00 2001 From: Remo Senekowitsch Date: Sat, 8 Mar 2025 21:59:32 +0100 Subject: [PATCH 6/7] Prevent snapshots from picking up old junk If a previous run of the static site generator created new files, these will be left lying around, even if subsequent runs wouldn't generate that file anymore. This will lead to either a false negative or a false positive. - The file shouldn't be generated and isn't. Tests incorrectly fail because it's still there. - The file should be generated but isn't. Tests incorrectly pass because it's still there. --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index 8415a4261..e12e8ebe5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -305,6 +305,7 @@ pub fn main() -> eyre::Result<()> { #[test] fn snapshot() { + std::fs::remove_dir_all(concat!(env!("CARGO_MANIFEST_DIR"), "/site")).unwrap(); main().unwrap(); let timestamped_files = ["releases.json", "feed.xml"]; let inexplicably_non_deterministic_files = ["images/2023-08-rust-survey-2022/experiences.png"]; From ff9ca6565b530efdc5ca0f759a9ce640111367aa Mon Sep 17 00:00:00 2001 From: Remo Senekowitsch Date: Sat, 8 Mar 2025 22:34:41 +0100 Subject: [PATCH 7/7] Update front matter example in readme --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 3efaad88a..7e4baf291 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,7 @@ When writing a new blog post, keep in mind the file headers: ```md +++ layout = "post" +date = 2015-03-15 title = "Title of the blog post" author = "Blog post author (or on behalf of which team)" release = true # (to be only used for official posts about Rust releases announcements)