From 2cab580b4e8aee30db2c757d6e5226a0100eaa94 Mon Sep 17 00:00:00 2001 From: lubeilin <1791778603@qq.com> Date: Tue, 26 Sep 2023 21:53:55 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common/Cargo.toml | 2 +- vnt-cli/Cargo.toml | 3 ++- vnt-jni/Cargo.toml | 2 +- vnt/src/lib.rs | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/common/Cargo.toml b/common/Cargo.toml index 0cba155..90894af 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "common" -version = "1.2.4" +version = "1.2.5" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/vnt-cli/Cargo.toml b/vnt-cli/Cargo.toml index 1f8af26..9f63d60 100644 --- a/vnt-cli/Cargo.toml +++ b/vnt-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vnt-cli" -version = "1.2.4" +version = "1.2.5" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -15,6 +15,7 @@ os_info = "3.7.0" dirs = "4.0.0" serde = "1.0" serde_json = "1.0.94" +serde_yaml = "0.9.25" log = "0.4.17" log4rs = "1.2.0" [dependencies.uuid] diff --git a/vnt-jni/Cargo.toml b/vnt-jni/Cargo.toml index a689460..b5d75d8 100644 --- a/vnt-jni/Cargo.toml +++ b/vnt-jni/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vnt-jni" -version = "1.2.4" +version = "1.2.5" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/vnt/src/lib.rs b/vnt/src/lib.rs index d219f57..f3821ea 100644 --- a/vnt/src/lib.rs +++ b/vnt/src/lib.rs @@ -1,5 +1,5 @@ use crate::error::Error; -pub const VNT_VERSION: &'static str = "1.2.4.4"; +pub const VNT_VERSION: &'static str = "1.2.5"; pub type Result = std::result::Result; pub mod channel;