Skip to content

Commit 39239d0

Browse files
committed
Set up some workspace inheritance
1 parent 8bee12b commit 39239d0

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,7 @@ exclude = [
66
"linkchecker"
77
]
88
resolver = "2"
9+
10+
[workspace.package]
11+
edition = "2024"
12+
license = "MIT OR Apache-2.0"

tools/mdbook-spec/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "mdbook-spec"
3-
edition = "2024"
4-
license = "MIT OR Apache-2.0"
3+
edition.workspace = true
4+
license.workspace = true
55
description = "An mdBook preprocessor to help with the Rust specification."
66
repository = "https://github.com/rust-lang/spec/"
77
default-run = "mdbook-spec"

tools/style-check/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
[package]
22
name = "style-check"
3+
edition.workspace = true
4+
license.workspace = true
35
authors = ["steveklabnik <steve@steveklabnik.com>"]
4-
edition = "2024"
56

67
[dependencies]
78
pulldown-cmark = "0.10.0"

tools/xtask/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[package]
22
name = "xtask"
3-
edition = "2024"
3+
edition.workspace = true
4+
license.workspace = true
45

56
[dependencies]

0 commit comments

Comments
 (0)