From 57604acf93f3bd940ce4cf22621b95e00614bfcd Mon Sep 17 00:00:00 2001 From: Simon Renblad Date: Mon, 5 Aug 2024 13:11:56 +0800 Subject: [PATCH] update version --- experiments/Cargo.toml | 2 +- libasync/Cargo.toml | 2 +- libboard_zynq/Cargo.toml | 2 +- libconfig/Cargo.toml | 2 +- libcortex_a9/Cargo.toml | 2 +- libregister/Cargo.toml | 2 +- libsupport_zynq/Cargo.toml | 2 +- szl/Cargo.toml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/experiments/Cargo.toml b/experiments/Cargo.toml index b8456c8..50f04a8 100644 --- a/experiments/Cargo.toml +++ b/experiments/Cargo.toml @@ -3,7 +3,7 @@ name = "experiments" description = "Developing bare-metal Rust on Zynq" version = "0.0.0" authors = ["M-Labs"] -edition = "2018" +edition = "2021" [features] target_zc706 = ["libboard_zynq/target_zc706", "libsupport_zynq/target_zc706"] diff --git a/libasync/Cargo.toml b/libasync/Cargo.toml index 9693d02..630b73f 100644 --- a/libasync/Cargo.toml +++ b/libasync/Cargo.toml @@ -3,7 +3,7 @@ name = "libasync" description = "low-level async support" version = "0.0.0" authors = ["M-Labs"] -edition = "2018" +edition = "2021" [dependencies] #futures = { version = "0.3", default-features = false } diff --git a/libboard_zynq/Cargo.toml b/libboard_zynq/Cargo.toml index d3b4ae2..1307609 100644 --- a/libboard_zynq/Cargo.toml +++ b/libboard_zynq/Cargo.toml @@ -3,7 +3,7 @@ name = "libboard_zynq" description = "Drivers for peripherals in the Zynq PS" version = "0.0.0" authors = ["M-Labs"] -edition = "2018" +edition = "2021" [features] target_zc706 = [] diff --git a/libconfig/Cargo.toml b/libconfig/Cargo.toml index 43ea995..48f1293 100644 --- a/libconfig/Cargo.toml +++ b/libconfig/Cargo.toml @@ -2,7 +2,7 @@ name = "libconfig" version = "0.1.0" authors = ["M-Labs"] -edition = "2018" +edition = "2021" [dependencies] libboard_zynq = { path = "../libboard_zynq" } diff --git a/libcortex_a9/Cargo.toml b/libcortex_a9/Cargo.toml index 1553eb9..f5c1ade 100644 --- a/libcortex_a9/Cargo.toml +++ b/libcortex_a9/Cargo.toml @@ -2,7 +2,7 @@ name = "libcortex_a9" version = "0.0.0" authors = ["M-Labs"] -edition = "2018" +edition = "2021" [features] power_saving = [] diff --git a/libregister/Cargo.toml b/libregister/Cargo.toml index 227e658..4fcda83 100644 --- a/libregister/Cargo.toml +++ b/libregister/Cargo.toml @@ -2,7 +2,7 @@ name = "libregister" version = "0.0.0" authors = ["M-Labs"] -edition = "2018" +edition = "2021" [dependencies] vcell = "0.1" diff --git a/libsupport_zynq/Cargo.toml b/libsupport_zynq/Cargo.toml index 9adf2f9..d520575 100644 --- a/libsupport_zynq/Cargo.toml +++ b/libsupport_zynq/Cargo.toml @@ -3,7 +3,7 @@ name = "libsupport_zynq" description = "Software support for running in the Zynq PS" version = "0.0.0" authors = ["M-Labs"] -edition = "2018" +edition = "2021" [features] target_zc706 = ["libboard_zynq/target_zc706"] diff --git a/szl/Cargo.toml b/szl/Cargo.toml index b1a33ae..958ae3a 100644 --- a/szl/Cargo.toml +++ b/szl/Cargo.toml @@ -3,7 +3,7 @@ name = "szl" description = "Simple Zynq Loader" version = "0.1.0" authors = ["M-Labs"] -edition = "2018" +edition = "2021" [features] target_zc706 = ["libboard_zynq/target_zc706", "libsupport_zynq/target_zc706", "libconfig/target_zc706"]