-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a CHANGELOG, and filled the `description` and `keywords` fields of the Cargo.toml. The `description` field is a requirement for crates.io. Signed-off-by: Laura Loghin <[email protected]>
- Loading branch information
Showing
2 changed files
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Changelog | ||
|
||
## v0.1.0 | ||
|
||
This is the first `vm-device` release. | ||
The `vm-device` crate provides device traits defining read and write operations | ||
on specialized buses, a device manager for operating devices and dispatching | ||
I/O, and abstractions for defining resources and their constraints (e.g. a | ||
specific bus address range, IRQ number, etc.). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,8 @@ | |
name = "vm-device" | ||
version = "0.1.0" | ||
authors = ["Samuel Ortiz <[email protected]>", "Liu Jiang <[email protected]>", "rust-vmm AWS maintainers <[email protected]>"] | ||
description = "management for virtual devices and resources" | ||
keywords = ["bus", "manager", "virtualization"] | ||
edition = "2018" | ||
repository = "https://github.com/rust-vmm/vm-device" | ||
license = "Apache-2.0 OR BSD-3-Clause" | ||
|