Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update tools to Rust 2024 #1773

Merged
merged 3 commits into from
Apr 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mdbook-spec/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "mdbook-spec"
version = "0.1.2"
edition = "2021"
edition = "2024"
license = "MIT OR Apache-2.0"
description = "An mdBook preprocessor to help with the Rust specification."
repository = "https://github.com/rust-lang/spec/"
Expand Down
4 changes: 2 additions & 2 deletions mdbook-spec/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#![deny(rust_2018_idioms, unused_lifetimes)]

use crate::rules::Rules;
use anyhow::{bail, Context, Result};
use anyhow::{Context, Result, bail};
use mdbook::BookItem;
use mdbook::book::{Book, Chapter};
use mdbook::errors::Error;
use mdbook::preprocess::{CmdPreprocessor, Preprocessor, PreprocessorContext};
use mdbook::BookItem;
use once_cell::sync::Lazy;
use regex::{Captures, Regex};
use semver::{Version, VersionReq};
Expand Down
4 changes: 2 additions & 2 deletions mdbook-spec/src/rules.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
//! Handling for rule identifiers.

use crate::test_links::RuleToTests;
use crate::{warn_or_err, Diagnostics, Spec};
use mdbook::book::Book;
use crate::{Diagnostics, Spec, warn_or_err};
use mdbook::BookItem;
use mdbook::book::Book;
use once_cell::sync::Lazy;
use regex::{Captures, Regex};
use std::collections::{BTreeMap, HashSet};
Expand Down
6 changes: 3 additions & 3 deletions mdbook-spec/src/std_links.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
//! Support for translating links to the standard library.

use crate::{bug, warn_or_err, Diagnostics};
use anyhow::{bail, Result};
use mdbook::book::{Book, Chapter};
use crate::{Diagnostics, bug, warn_or_err};
use anyhow::{Result, bail};
use mdbook::BookItem;
use mdbook::book::{Book, Chapter};
use once_cell::sync::Lazy;
use pulldown_cmark::{BrokenLink, CowStr, Event, LinkType, Options, Parser, Tag};
use regex::Regex;
Expand Down
1 change: 1 addition & 0 deletions rustfmt.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
style_edition = "2024"
2 changes: 1 addition & 1 deletion style-check/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "style-check"
version = "0.1.0"
authors = ["steveklabnik <[email protected]>"]
edition = "2021"
edition = "2024"

[dependencies]
pulldown-cmark = "0.10.0"