From 2101462186636917abd5bd353877c81c0586ec18 Mon Sep 17 00:00:00 2001 From: aarnav Date: Wed, 11 Sep 2024 16:35:53 +0200 Subject: [PATCH] change Cargo edition to 2021 from 2018 --- acat/Cargo.toml | 2 +- config/Cargo.toml | 2 +- fuzz_runner/Cargo.toml | 2 +- libnyx/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/acat/Cargo.toml b/acat/Cargo.toml index 89bf817..dd3239a 100644 --- a/acat/Cargo.toml +++ b/acat/Cargo.toml @@ -2,7 +2,7 @@ name = "acat" version = "0.1.0" authors = ["Sergej Schumilo "] -edition = "2018" +edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/config/Cargo.toml b/config/Cargo.toml index d0225d4..0f842c0 100644 --- a/config/Cargo.toml +++ b/config/Cargo.toml @@ -2,7 +2,7 @@ name = "config" version = "0.1.0" authors = ["coco "] -edition = "2018" +edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/fuzz_runner/Cargo.toml b/fuzz_runner/Cargo.toml index 23e8a52..c70d0e8 100644 --- a/fuzz_runner/Cargo.toml +++ b/fuzz_runner/Cargo.toml @@ -2,7 +2,7 @@ name = "fuzz_runner" version = "0.1.0" authors = ["coco "] -edition = "2018" +edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/libnyx/Cargo.toml b/libnyx/Cargo.toml index 3cb4a47..e0fbe4a 100644 --- a/libnyx/Cargo.toml +++ b/libnyx/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "libnyx" version = "0.1.0" -edition = "2018" +edition = "2021" [lib] name = "libnyx"