aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJack O'Connor <[email protected]>2023-03-25 16:02:01 -0700
committerJack O'Connor <[email protected]>2023-03-25 16:36:37 -0700
commita9750c7fec924db6a20fc87fa90269cdecbe75bd (patch)
tree620b9ff7c74b3b2bdb2a9e543c12924a882cd60f /tools
parent64747d48ffe9d1fbf4b71e94cabeb8a211461081 (diff)
upgrade all Cargo.toml files to edition=2021
The MSRV is already 1.60, so this doesn't affect much. The only impact to other code is that we no longer need to explicitly import TryInto.
Diffstat (limited to 'tools')
-rw-r--r--tools/compiler_version/Cargo.toml2
-rw-r--r--tools/instruction_set_support/Cargo.toml2
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/compiler_version/Cargo.toml b/tools/compiler_version/Cargo.toml
index 1046cf2..8625094 100644
--- a/tools/compiler_version/Cargo.toml
+++ b/tools/compiler_version/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "compiler_version"
version = "0.0.0"
-edition = "2018"
+edition = "2021"
[build-dependencies]
cc = "1.0.50"
diff --git a/tools/instruction_set_support/Cargo.toml b/tools/instruction_set_support/Cargo.toml
index 9e30174..eef8a80 100644
--- a/tools/instruction_set_support/Cargo.toml
+++ b/tools/instruction_set_support/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "instruction_set_support"
version = "0.0.0"
-edition = "2018"
+edition = "2021"
[dependencies]