Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Upcoming

-[[#245](https://github.com/rust-vmm/vmm-sys-util/pull/245)]: Make sock_ctrl_msg support unix.

## v0.14.0

### Changed
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ rustdoc-args = ["--cfg", "docsrs"]
with-serde = ["serde", "serde_derive"]

[dependencies]
libc = "0.2.39"
libc = "0.2.127"
serde = { version = "1.0.27", optional = true }
serde_derive = { version = "1.0.27", optional = true }

Expand Down
1 change: 0 additions & 1 deletion src/linux/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,5 @@ pub mod fallocate;
pub mod poll;
pub mod seek_hole;
pub mod signal;
pub mod sock_ctrl_msg;
pub mod timerfd;
pub mod write_zeroes;
1 change: 1 addition & 0 deletions src/unix/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Copyright 2022 rust-vmm Authors or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: BSD-3-Clause
pub mod file_traits;
pub mod sock_ctrl_msg;
pub mod tempdir;
pub mod terminal;
Loading