Skip to content
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
11 changes: 0 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,3 @@ exclude = [
"linkchecker"
]
resolver = "2"

[workspace.package]
edition = "2024"
license = "MIT OR Apache-2.0"

[workspace.dependencies]
diagnostics = { path = "tools/diagnostics" }
grammar = { path = "tools/grammar" }
pathdiff = "0.2.3"
regex = "1.12.2"
walkdir = "2.5.0"
4 changes: 2 additions & 2 deletions tools/diagnostics/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "diagnostics"
edition.workspace = true
license.workspace = true
edition = "2024"
license = "MIT OR Apache-2.0"

[dependencies]
12 changes: 6 additions & 6 deletions tools/grammar/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
name = "grammar"
edition.workspace = true
license.workspace = true
edition = "2024"
license = "MIT OR Apache-2.0"

[dependencies]
diagnostics.workspace = true
pathdiff.workspace = true
regex.workspace = true
walkdir.workspace = true
diagnostics = { path = "../diagnostics" }
pathdiff = "0.2.3"
regex = "1.12.2"
walkdir = "2.5.0"
12 changes: 6 additions & 6 deletions tools/mdbook-spec/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "mdbook-spec"
edition.workspace = true
license.workspace = true
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/"
default-run = "mdbook-spec"
Expand All @@ -10,15 +10,15 @@ default-run = "mdbook-spec"

[dependencies]
anyhow = "1.0.79"
diagnostics.workspace = true
grammar.workspace = true
diagnostics = { path = "../diagnostics" }
grammar = { path = "../grammar" }
mdbook-markdown = "0.5.1"
mdbook-preprocessor = "0.5.1"
once_cell = "1.19.0"
pathdiff = "0.2.1"
railroad = { version = "0.3.2", default-features = false }
regex.workspace = true
regex = "1.12.2"
semver = "1.0.21"
serde_json = "1.0.113"
tempfile = "3.10.1"
walkdir.workspace = true
walkdir = "2.5.0"
4 changes: 2 additions & 2 deletions tools/style-check/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "style-check"
edition.workspace = true
license.workspace = true
edition = "2024"
license = "MIT OR Apache-2.0"
authors = ["steveklabnik <steve@steveklabnik.com>"]

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions tools/xtask/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xtask"
edition.workspace = true
license.workspace = true
edition = "2024"
license = "MIT OR Apache-2.0"

[dependencies]