From af5f8417e595d7155b343efdbc63d6c337102058 Mon Sep 17 00:00:00 2001 From: overweight Date: Wed, 5 Jul 2023 10:51:21 +0800 Subject: [PATCH] build: update version to 0.2.4 --- Cargo.toml | 2 +- coms/service/Cargo.toml | 2 +- coms/target/Cargo.toml | 2 +- exts/hostname_setup/Cargo.toml | 4 ++-- exts/init/Cargo.toml | 4 ++-- exts/sctl/Cargo.toml | 4 ++-- libs/basic/Cargo.toml | 2 +- libs/cgroup/Cargo.toml | 2 +- libs/constants/Cargo.toml | 2 +- libs/event/Cargo.toml | 2 +- libs/libtests/Cargo.toml | 2 +- libs/macros/Cargo.toml | 2 +- libs/watchdog/Cargo.toml | 2 +- 23 files changed, 28 insertions(+), 28 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 89efa33..089e7ab 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sysmaster" -version = "0.2.2" +version = "0.2.4" authors = ["sysmaster"] edition = "2021" build = "build.rs" diff --git a/coms/service/Cargo.toml b/coms/service/Cargo.toml index e87706e..0f37cf8 100644 --- a/coms/service/Cargo.toml +++ b/coms/service/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "service" -version = "0.1.0" +version = "0.2.4" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/coms/target/Cargo.toml b/coms/target/Cargo.toml index 69d8bda..7223879 100644 --- a/coms/target/Cargo.toml +++ b/coms/target/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "target" -version = "0.1.0" +version = "0.2.4" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/exts/hostname_setup/Cargo.toml b/exts/hostname_setup/Cargo.toml index b2cbdcf..0758da6 100644 --- a/exts/hostname_setup/Cargo.toml +++ b/exts/hostname_setup/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "hostname_setup" -version = "0.1.0" +version = "0.2.4" edition = "2021" [dependencies] nix = "0.24" log = "0.4" libc = "0.2.*" -constants = { version = "0.1.0", path = "../../libs/constants" } +constants = { path = "../../libs/constants" } basic = { path = "../../libs/basic" } diff --git a/exts/init/Cargo.toml b/exts/init/Cargo.toml index e351b61..f72b52a 100644 --- a/exts/init/Cargo.toml +++ b/exts/init/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "init" -version = "0.1.0" +version = "0.2.4" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -constants = { version = "0.1.0", path = "../../libs/constants" } +constants = { path = "../../libs/constants" } libc = "0.2.*" nix = "0.24" diff --git a/exts/sctl/Cargo.toml b/exts/sctl/Cargo.toml index b0c0bfc..21c00c7 100644 --- a/exts/sctl/Cargo.toml +++ b/exts/sctl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sctl" -version = "0.1.0" +version = "0.2.4" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -10,4 +10,4 @@ clap = { version = "3.1.8", features = ["derive"] } cmdproto = { path = "../../libs/cmdproto" } basic = { path = "../../libs/basic" } nix = "0.24" -constants = { version = "0.1.0", path = "../../libs/constants" } +constants = { path = "../../libs/constants" } diff --git a/libs/basic/Cargo.toml b/libs/basic/Cargo.toml index c18991a..3d2c9cc 100644 --- a/libs/basic/Cargo.toml +++ b/libs/basic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "basic" -version = "0.1.0" +version = "0.2.4" authors = ["overweight "] edition = "2021" diff --git a/libs/cgroup/Cargo.toml b/libs/cgroup/Cargo.toml index c7d17d2..f772c80 100644 --- a/libs/cgroup/Cargo.toml +++ b/libs/cgroup/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cgroup" -version = "0.1.0" +version = "0.2.4" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/libs/constants/Cargo.toml b/libs/constants/Cargo.toml index 06d8173..f0552de 100644 --- a/libs/constants/Cargo.toml +++ b/libs/constants/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "constants" -version = "0.1.0" +version = "0.2.4" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/libs/event/Cargo.toml b/libs/event/Cargo.toml index 21dad06..8cd9398 100644 --- a/libs/event/Cargo.toml +++ b/libs/event/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "event" -version = "0.1.0" +version = "0.2.4" authors = ["overweight "] edition = "2021" diff --git a/libs/libtests/Cargo.toml b/libs/libtests/Cargo.toml index 0d80f5b..b14166c 100644 --- a/libs/libtests/Cargo.toml +++ b/libs/libtests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libtests" -version = "0.1.0" +version = "0.2.4" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/libs/macros/Cargo.toml b/libs/macros/Cargo.toml index 955b94c..e7d178a 100644 --- a/libs/macros/Cargo.toml +++ b/libs/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "macros" -version = "0.1.0" +version = "0.2.4" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/libs/watchdog/Cargo.toml b/libs/watchdog/Cargo.toml index 5583d9a..458b55d 100644 --- a/libs/watchdog/Cargo.toml +++ b/libs/watchdog/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "watchdog" -version = "0.1.0" +version = "0.2.4" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html -- 2.33.0