Updates the requirements on nix to permit the latest version.
Changelog
*Sourced from [nix's changelog](https://github.com/nix-rust/nix/blob/master/CHANGELOG.md).*
> ## [0.14.0] - 2019-05-21
> ### Added
> - Add IP_RECVIF & IP_RECVDSTADDR. Enable IP_PKTINFO and IP6_PKTINFO on netbsd/openbsd.
> ([#1002](https://github-redirect.dependabot.com/nix-rust/nix/pull/1002))
> - Added `inotify_init1`, `inotify_add_watch` and `inotify_rm_watch` wrappers for
> Android and Linux. ([#1016](https://github-redirect.dependabot.com/nix-rust/nix/pull/1016))
> - Add `ALG_SET_IV`, `ALG_SET_OP` and `ALG_SET_AEAD_ASSOCLEN` control messages and `AF_ALG`
> socket types on Linux and Android ([#1031](https://github-redirect.dependabot.com/nix-rust/nix/pull/1031))
> - Add killpg
> ([#1034](https://github-redirect.dependabot.com/nix-rust/nix/pull/1034))
> - Added ENOTSUP errno support for Linux and Android.
> ([#969](https://github-redirect.dependabot.com/nix-rust/nix/pull/969))
> - Add several errno constants from OpenBSD 6.2
> ([#1036](https://github-redirect.dependabot.com/nix-rust/nix/pull/1036))
> - Added `from_std` and `to_std` methods for `sys::socket::IpAddr`
> ([#1043](https://github-redirect.dependabot.com/nix-rust/nix/pull/1043))
> - Added `nix::unistd:seteuid` and `nix::unistd::setegid` for those platforms that do
> not support `setresuid` nor `setresgid` respectively.
> ([#1044](https://github-redirect.dependabot.com/nix-rust/nix/pull/1044))
> - Added a `access` wrapper
> ([#1045](https://github-redirect.dependabot.com/nix-rust/nix/pull/1045))
> - Add `forkpty`
> ([#1042](https://github-redirect.dependabot.com/nix-rust/nix/pull/1042))
> - Add `sched_yield`
> ([#1050](https://github-redirect.dependabot.com/nix-rust/nix/pull/1050))
>
> ### Changed
> - `PollFd` event flags renamed to `PollFlags` ([#1024](https://github-redirect.dependabot.com/nix-rust/nix/pull/1024/))
> - `recvmsg` now returns an Iterator over `ControlMessageOwned` objects rather
> than `ControlMessage` objects. This is sadly not backwards-compatible. Fix
> code like this:
> ```rust
> if let ControlMessage::ScmRights(&fds) = cmsg {
> ```
>
> By replacing it with code like this:
> ```rust
> if let ControlMessageOwned::ScmRights(fds) = cmsg {
> ```
> ([#1020](https://github-redirect.dependabot.com/nix-rust/nix/pull/1020))
> - Replaced `CmsgSpace` with the `cmsg_space` macro.
> ([#1020](https://github-redirect.dependabot.com/nix-rust/nix/pull/1020))
>
> ### Fixed
> - Fixed multiple bugs when using `sendmsg` and `recvmsg` with ancillary control messages
> ([#1020](https://github-redirect.dependabot.com/nix-rust/nix/pull/1020))
> - Macros exported by `nix` may now be imported via `use` on the Rust 2018
> edition without importing helper macros.
> ([#1041](https://github-redirect.dependabot.com/nix-rust/nix/pull/1041))
>
> ... (truncated)
Commits
- [`fdc4b46`](https://github.com/nix-rust/nix/commit/fdc4b46ac1ace4a8a850a8127fa650a1b4024848) Merge [#1061](https://github-redirect.dependabot.com/nix-rust/nix/issues/1061)
- [`15dd6c1`](https://github.com/nix-rust/nix/commit/15dd6c1279b6848930de6a1fb11d202b5daeeb73) Release v0.14.0
- [`1135b64`](https://github.com/nix-rust/nix/commit/1135b648299846dc901e8d53ba2d080bf09aeb3f) Merge [#1050](https://github-redirect.dependabot.com/nix-rust/nix/issues/1050)
- [`0a7adb1`](https://github.com/nix-rust/nix/commit/0a7adb1a1e64821ac4b203a7bd9dc6abd910a17c) [skip ci] add missing CHANGELOG entry for PR [#1055](https://github-redirect.dependabot.com/nix-rust/nix/issues/1055)
- [`06d7463`](https://github.com/nix-rust/nix/commit/06d7463ffb66a591143cc4b1d22b90b314b04633) Merge [#1054](https://github-redirect.dependabot.com/nix-rust/nix/issues/1054)
- [`45ec8fc`](https://github.com/nix-rust/nix/commit/45ec8fc2eea2a49e618f8febdae68df07f98d68d) Implement `sched_yield`.
- [`b33f273`](https://github.com/nix-rust/nix/commit/b33f273f55d5315e45f2bdca47ec1af25a540f56) Remove a redundant "use libc"
- [`434b866`](https://github.com/nix-rust/nix/commit/434b8669a11eed573968781c6732d9eccd24b765) Merge [#1055](https://github-redirect.dependabot.com/nix-rust/nix/issues/1055)
- [`196b05b`](https://github.com/nix-rust/nix/commit/196b05b5c7be39b73dcadca5457948d807fdf913) Fix build on arm and s390x after recent libc changes
- [`63aec50`](https://github.com/nix-rust/nix/commit/63aec5066b6bca637f45a4acc23aa8f8079ca050) Merge [#1048](https://github-redirect.dependabot.com/nix-rust/nix/issues/1048)
- Additional commits viewable in [compare view](https://github.com/nix-rust/nix/compare/v0.13.0...v0.14.0)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
Finally, you can contact us by mentioning @dependabot.
Updates the requirements on nix to permit the latest version.
Changelog
*Sourced from [nix's changelog](https://github.com/nix-rust/nix/blob/master/CHANGELOG.md).* > ## [0.14.0] - 2019-05-21 > ### Added > - Add IP_RECVIF & IP_RECVDSTADDR. Enable IP_PKTINFO and IP6_PKTINFO on netbsd/openbsd. > ([#1002](https://github-redirect.dependabot.com/nix-rust/nix/pull/1002)) > - Added `inotify_init1`, `inotify_add_watch` and `inotify_rm_watch` wrappers for > Android and Linux. ([#1016](https://github-redirect.dependabot.com/nix-rust/nix/pull/1016)) > - Add `ALG_SET_IV`, `ALG_SET_OP` and `ALG_SET_AEAD_ASSOCLEN` control messages and `AF_ALG` > socket types on Linux and Android ([#1031](https://github-redirect.dependabot.com/nix-rust/nix/pull/1031)) > - Add killpg > ([#1034](https://github-redirect.dependabot.com/nix-rust/nix/pull/1034)) > - Added ENOTSUP errno support for Linux and Android. > ([#969](https://github-redirect.dependabot.com/nix-rust/nix/pull/969)) > - Add several errno constants from OpenBSD 6.2 > ([#1036](https://github-redirect.dependabot.com/nix-rust/nix/pull/1036)) > - Added `from_std` and `to_std` methods for `sys::socket::IpAddr` > ([#1043](https://github-redirect.dependabot.com/nix-rust/nix/pull/1043)) > - Added `nix::unistd:seteuid` and `nix::unistd::setegid` for those platforms that do > not support `setresuid` nor `setresgid` respectively. > ([#1044](https://github-redirect.dependabot.com/nix-rust/nix/pull/1044)) > - Added a `access` wrapper > ([#1045](https://github-redirect.dependabot.com/nix-rust/nix/pull/1045)) > - Add `forkpty` > ([#1042](https://github-redirect.dependabot.com/nix-rust/nix/pull/1042)) > - Add `sched_yield` > ([#1050](https://github-redirect.dependabot.com/nix-rust/nix/pull/1050)) > > ### Changed > - `PollFd` event flags renamed to `PollFlags` ([#1024](https://github-redirect.dependabot.com/nix-rust/nix/pull/1024/)) > - `recvmsg` now returns an Iterator over `ControlMessageOwned` objects rather > than `ControlMessage` objects. This is sadly not backwards-compatible. Fix > code like this: > ```rust > if let ControlMessage::ScmRights(&fds) = cmsg { > ``` > > By replacing it with code like this: > ```rust > if let ControlMessageOwned::ScmRights(fds) = cmsg { > ``` > ([#1020](https://github-redirect.dependabot.com/nix-rust/nix/pull/1020)) > - Replaced `CmsgSpace` with the `cmsg_space` macro. > ([#1020](https://github-redirect.dependabot.com/nix-rust/nix/pull/1020)) > > ### Fixed > - Fixed multiple bugs when using `sendmsg` and `recvmsg` with ancillary control messages > ([#1020](https://github-redirect.dependabot.com/nix-rust/nix/pull/1020)) > - Macros exported by `nix` may now be imported via `use` on the Rust 2018 > edition without importing helper macros. > ([#1041](https://github-redirect.dependabot.com/nix-rust/nix/pull/1041)) > > ... (truncated)Commits
- [`fdc4b46`](https://github.com/nix-rust/nix/commit/fdc4b46ac1ace4a8a850a8127fa650a1b4024848) Merge [#1061](https://github-redirect.dependabot.com/nix-rust/nix/issues/1061) - [`15dd6c1`](https://github.com/nix-rust/nix/commit/15dd6c1279b6848930de6a1fb11d202b5daeeb73) Release v0.14.0 - [`1135b64`](https://github.com/nix-rust/nix/commit/1135b648299846dc901e8d53ba2d080bf09aeb3f) Merge [#1050](https://github-redirect.dependabot.com/nix-rust/nix/issues/1050) - [`0a7adb1`](https://github.com/nix-rust/nix/commit/0a7adb1a1e64821ac4b203a7bd9dc6abd910a17c) [skip ci] add missing CHANGELOG entry for PR [#1055](https://github-redirect.dependabot.com/nix-rust/nix/issues/1055) - [`06d7463`](https://github.com/nix-rust/nix/commit/06d7463ffb66a591143cc4b1d22b90b314b04633) Merge [#1054](https://github-redirect.dependabot.com/nix-rust/nix/issues/1054) - [`45ec8fc`](https://github.com/nix-rust/nix/commit/45ec8fc2eea2a49e618f8febdae68df07f98d68d) Implement `sched_yield`. - [`b33f273`](https://github.com/nix-rust/nix/commit/b33f273f55d5315e45f2bdca47ec1af25a540f56) Remove a redundant "use libc" - [`434b866`](https://github.com/nix-rust/nix/commit/434b8669a11eed573968781c6732d9eccd24b765) Merge [#1055](https://github-redirect.dependabot.com/nix-rust/nix/issues/1055) - [`196b05b`](https://github.com/nix-rust/nix/commit/196b05b5c7be39b73dcadca5457948d807fdf913) Fix build on arm and s390x after recent libc changes - [`63aec50`](https://github.com/nix-rust/nix/commit/63aec5066b6bca637f45a4acc23aa8f8079ca050) Merge [#1048](https://github-redirect.dependabot.com/nix-rust/nix/issues/1048) - Additional commits viewable in [compare view](https://github.com/nix-rust/nix/compare/v0.13.0...v0.14.0)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) Finally, you can contact us by mentioning @dependabot.