File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 55 - main
66 workflow_dispatch :
77env :
8- RUST_VERSION : 1.73 .0
8+ RUST_VERSION : 1.84 .0
99jobs :
1010 build :
1111 name : Build
Original file line number Diff line number Diff line change 11[package ]
22name = " dbs-snapshot"
3- version = " 1.5.1 "
3+ version = " 1.5.2 "
44authors = [
55 " Amazon Firecracker team <firecracker-devel@amazon.com>" ,
66 " Kata Containers Developers" ,
@@ -18,7 +18,7 @@ bench = false
1818
1919[dependencies ]
2020libc = " 0.2.117"
21- versionize = " 0.1.10 "
21+ versionize = " 0.2.0 "
2222versionize_derive = " 0.1.5"
2323thiserror = " 1.0.32"
2424displaydoc = " 0.2.4"
Original file line number Diff line number Diff line change 2222//! Each structure, union or enum is versioned separately and only needs to increment their version
2323//! if a field is added or removed. For each state snapshot we define 2 versions:
2424//! - **the format version** which refers to the SnapshotHdr, CRC, or the representation of
25- //! primitives types (currently we use versionize that uses serde bincode as a backend). The current
26- //! implementation does not have any logic dependent on it.
25+ //! primitives types (currently we use versionize that uses serde bincode as a backend). The current
26+ //! implementation does not have any logic dependent on it.
2727//! - **the data version** which refers to the state.
2828mod persist;
2929use std:: fmt:: Debug ;
You can’t perform that action at this time.
0 commit comments