diff --git a/.github/workflows/bvt.yaml b/.github/workflows/bvt.yaml index 610d98b4969..7bdd4083649 100644 --- a/.github/workflows/bvt.yaml +++ b/.github/workflows/bvt.yaml @@ -5,7 +5,7 @@ on: - main workflow_dispatch: env: - RUST_VERSION: 1.73.0 + RUST_VERSION: 1.84.0 jobs: build: name: Build diff --git a/Cargo.toml b/Cargo.toml index f60a353180b..640c244816f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dbs-snapshot" -version = "1.5.1" +version = "1.5.2" authors = [ "Amazon Firecracker team ", "Kata Containers Developers", @@ -18,7 +18,7 @@ bench = false [dependencies] libc = "0.2.117" -versionize = "0.1.10" +versionize = "0.2.0" versionize_derive = "0.1.5" thiserror = "1.0.32" displaydoc = "0.2.4" diff --git a/src/lib.rs b/src/lib.rs index e7ff020f4a6..ead0f823db7 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -22,8 +22,8 @@ //! Each structure, union or enum is versioned separately and only needs to increment their version //! if a field is added or removed. For each state snapshot we define 2 versions: //! - **the format version** which refers to the SnapshotHdr, CRC, or the representation of -//! primitives types (currently we use versionize that uses serde bincode as a backend). The current -//! implementation does not have any logic dependent on it. +//! primitives types (currently we use versionize that uses serde bincode as a backend). The current +//! implementation does not have any logic dependent on it. //! - **the data version** which refers to the state. mod persist; use std::fmt::Debug;