File tree Expand file tree Collapse file tree 8 files changed +46
-15
lines changed Expand file tree Collapse file tree 8 files changed +46
-15
lines changed Original file line number Diff line number Diff line change 1- [package ]
2- name = " vm-superio"
3- version = " 0.3.0"
4- description = " Emulation for legacy devices"
5- keywords = [" superio" , " emulation" ]
6- repository = " https://github.com/rust-vmm/vm-superio"
7- readme = " README.md"
8- authors = [" rust-vmm AWS maintainers <rust-vmm-maintainers@amazon.com>" ]
9- license = " Apache-2.0 OR BSD-3-Clause"
10- edition = " 2018"
11-
12- [dev-dependencies ]
13- libc = " >=0.2.39"
14- vmm-sys-util = " >=0.7.0"
1+ [workspace ]
2+ members = [
3+ " crates/vm-superio" ,
4+ " crates/vm-superio-ser" ,
5+ ]
Original file line number Diff line number Diff line change 1+ [package ]
2+ name = " vm-superio-ser"
3+ version = " 0.1.0"
4+ description = " Serialization for legacy device states"
5+ keywords = [" superio" , " serialization" , " versioning" ]
6+ repository = " https://github.com/rust-vmm/vm-superio"
7+ readme = " README.md"
8+ authors = [" rust-vmm AWS maintainers <rust-vmm-maintainers@amazon.com>" ]
9+ license = " Apache-2.0 OR BSD-3-Clause"
10+ edition = " 2018"
11+
12+ [dependencies ]
13+ serde = { version = " >=1.0.27" , features = [" derive" ] }
14+ versionize = " >=0.1.6"
15+ versionize_derive = " >=0.1.3"
16+ vm-superio = { path = " ../vm-superio" }
Original file line number Diff line number Diff line change 1+ // Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2+ //
3+ // SPDX-License-Identifier: Apache-2.0 OR BSD-3-Clause
4+
5+ //! Adds to the state objects from `vm-superio` serialization capabilities.
6+ //!
7+ //! Provides wrappers over the state objects from `vm-superio` crate which
8+ //! implement the `Serialize`, `Deserialize` and `Versionize` traits as well.
9+
10+ #![ deny( missing_docs) ]
Original file line number Diff line number Diff line change 1+ [package ]
2+ name = " vm-superio"
3+ version = " 0.3.0"
4+ description = " Emulation for legacy devices"
5+ keywords = [" superio" , " emulation" ]
6+ repository = " https://github.com/rust-vmm/vm-superio"
7+ readme = " README.md"
8+ authors = [" rust-vmm AWS maintainers <rust-vmm-maintainers@amazon.com>" ]
9+ license = " Apache-2.0 OR BSD-3-Clause"
10+ edition = " 2018"
11+
12+ [dev-dependencies ]
13+ libc = " >=0.2.39"
14+ vmm-sys-util = " >=0.7.0"
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -203,7 +203,7 @@ impl<EV: RtcEvents> Rtc<EV> {
203203
204204 // A struct implementing RtcEvents for tracking the occurrence of
205205 // significant events.
206- events,
206+ events
207207 }
208208 }
209209
File renamed without changes.
You can’t perform that action at this time.
0 commit comments