Skip to content

Commit 1022c8b

Browse files
Set MSRV and edition for all packages
1 parent a671fc1 commit 1022c8b

File tree

7 files changed

+15
-7
lines changed

7 files changed

+15
-7
lines changed

Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ repository = "https://github.com/davidlattimore/wild"
77
license = "MIT OR Apache-2.0"
88
version = "0.3.0"
99
readme = "README.md"
10+
rust-version = "1.83"
11+
edition = "2021"
1012

1113
[profile.opt-debug]
1214
inherits = "release"

libwild/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ name = "libwild"
33
version.workspace = true
44
license.workspace = true
55
repository.workspace = true
6-
edition = "2021"
6+
rust-version.workspace = true
7+
edition.workspace = true
78

89
[dependencies]
910
ahash = { version = "0.8.11", default-features = false, features = ["std"] }

linker-diff/Cargo.toml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
[package]
22
name = "linker-diff"
3+
description = "Diffs and validates ELF binaries"
34
version.workspace = true
45
license.workspace = true
56
repository.workspace = true
6-
description = "Diffs and validates ELF binaries"
7-
edition = "2021"
7+
rust-version.workspace = true
8+
edition.workspace = true
89

910
[dependencies]
1011
linker-layout = { path = "../linker-layout" }

linker-layout/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ name = "linker-layout"
33
version.workspace = true
44
license.workspace = true
55
repository.workspace = true
6-
edition = "2021"
6+
rust-version.workspace = true
7+
edition.workspace = true
78

89
[dependencies]
910
anyhow = "1.0.95"

linker-trace/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ name = "linker-trace"
33
version.workspace = true
44
license.workspace = true
55
repository.workspace = true
6-
edition = "2021"
6+
rust-version.workspace = true
7+
edition.workspace = true
78

89
[dependencies]
910
anyhow = "1.0.95"

linker-utils/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ name = "linker-utils"
33
version.workspace = true
44
license.workspace = true
55
repository.workspace = true
6-
edition = "2021"
6+
rust-version.workspace = true
7+
edition.workspace = true
78

89
[dependencies]
910
object = { version = "0.36.7", default-features = false, features = [

wild/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ name = "wild"
33
version.workspace = true
44
license.workspace = true
55
repository.workspace = true
6-
edition = "2021"
6+
rust-version.workspace = true
7+
edition.workspace = true
78

89
[dependencies]
910
libwild = { path = "../libwild" }

0 commit comments

Comments
 (0)