Skip to content

Commit a061e61

Browse files
committed
workspace: upgrade to Rust edition 2024
1 parent 4d7880e commit a061e61

File tree

7 files changed

+7
-6
lines changed

7 files changed

+7
-6
lines changed

.github/workflows/rust-crate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- 'stable'
1313
- 'beta'
1414
- 'nightly'
15-
- '1.58.0'
15+
- '1.85.0'
1616
os:
1717
- 'ubuntu-24.04'
1818
- 'macos-13'

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ members = [
66
'llvm-option-parser',
77
'text-stub-library',
88
]
9+
resolver = "3"

binary-portability/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "binary-portability"
33
version = "0.1.0-pre"
4-
edition = "2021"
4+
edition = "2024"
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"
77
authors = ["Gregory Szorc <[email protected]>"]

llvm-command-parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "llvm-command-parser"
33
version = "0.1.0"
4-
edition = "2021"
4+
edition = "2024"
55
authors = ["Gregory Szorc <[email protected]>"]
66
license = "MPL-2.0"
77
description = "Parsing of LLVM program arguments"

llvm-command-tablegen-json/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "llvm-command-tablegen-json"
33
version = "1.0.0-pre"
4-
edition = "2021"
4+
edition = "2024"
55
authors = ["Gregory Szorc <[email protected]>"]
66
license = "Apache-2.0"
77
description = "LLVM tablejson JSON for LLVM commands"

llvm-option-parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "llvm-option-parser"
33
version = "0.1.0-pre"
4-
edition = "2021"
4+
edition = "2024"
55
authors = ["Gregory Szorc <[email protected]>"]
66
license = "MPL-2.0"
77
description = "Generic LLVM command option parser based on tablegen data"

text-stub-library/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "text-stub-library"
33
version = "0.9.0"
44
authors = ["Gregory Szorc <[email protected]>"]
5-
edition = "2021"
5+
edition = "2024"
66
license = "MIT OR Apache-2.0"
77
description = "Interface to text stub files (.tbd files)"
88
keywords = ["apple", "macos", "tbd"]

0 commit comments

Comments
 (0)