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;