Skip to content

Commit

Permalink
Merge pull request #35 from rust-vsock/edition
Browse files Browse the repository at this point in the history
Update to latest Rust edition and tidy up
  • Loading branch information
qwandor authored Nov 27, 2023
2 parents 68dd544 + 722174e commit 4532e3b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ repository = "https://github.com/rust-vsock/vsock-rs"
homepage = "https://github.com/rust-vsock/vsock-rs"
readme = "README.md"
license = "Apache-2.0"
edition = "2018"
edition = "2021"
exclude = ["test_fixture"]

[dependencies]
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# vsock-rs

Virtio socket support for Rust. Implements VsockListener and VsockStream
which are analogous to the `std::net::TcpListener` and `std::net::TcpStream` types.
which are analogous to the `std::net::TcpListener` and `std::net::TcpStream` types.

## Usage

Expand All @@ -11,7 +11,7 @@ Refer to the crate [documentation](https://docs.rs/vsock).

### Prerequisites

You will need a recent qemu-system-x86_64 build in your path.
You will need a recent `qemu-system-x86_64` build in your path.

### Host

Expand All @@ -21,7 +21,7 @@ Setup the required virtio kernel modules:
make kmod
```

Start the test vm, you can shutdown the vm with the keyboard shortcut ```Ctrl+A``` and then ```x```:
Start the test vm, you can shutdown the vm with the keyboard shortcut `Ctrl+A` and then `x`:

```
make vm
Expand All @@ -33,4 +33,4 @@ Run the test suite with:

```
make check
```
```

0 comments on commit 4532e3b

Please sign in to comment.