Skip to content

Commit

Permalink
Merge pull request #625 from psychon/update-deps
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
psychon authored Jul 1, 2021
2 parents 06056af + df33dc5 commit b7cad45
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
strategy:
matrix:
include:
- rust: 1.40.0
- rust: 1.41.0
- rust: stable
- rust: beta
- rust: nightly
Expand Down
2 changes: 1 addition & 1 deletion .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pull_request_rules:
- "#approved-reviews-by>=1"
- status-success=continuous-integration/appveyor/pr
- status-success=big-endian-test
- status-success=build (1.40.0)
- status-success=build (1.41.0)
- status-success=build (stable)
- status-success=clippy-rustfmt (stable)
- status-success=code_gen
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ exclude = [
[dependencies]
libc = { version = "0.2", optional = true }
libloading = { version = "0.7.0", optional = true }
once_cell = { version = "1.6.0", optional = true }
once_cell = { version = "1.8.0", optional = true }
gethostname = "0.2.1"

[target.'cfg(unix)'.dependencies]
nix = "0.20"
nix = "0.21"

[target.'cfg(windows)'.dependencies]
winapi-wsapoll = "0.1.1"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/950g0t6i8hfc9dup/branch/master?svg=true)](https://ci.appveyor.com/project/psychon/x11rb)
[![Crate](https://img.shields.io/crates/v/x11rb.svg)](https://crates.io/crates/x11rb)
[![API](https://docs.rs/x11rb/badge.svg)](https://docs.rs/x11rb)
![Minimum rustc version](https://img.shields.io/badge/rustc-1.40+-lightgray.svg)
![Minimum rustc version](https://img.shields.io/badge/rustc-1.41+-lightgray.svg)
[![License](https://img.shields.io/crates/l/x11rb.svg)](https://github.com/psychon/x11rb#license)

Feel free to open issues for any problems or questions you might have.
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,9 @@
missing_docs,
)]
#![allow(
// This suggests a method that was stabilised in Rust 1.45, while our MSRV is 1.40.
// This suggests a method that was stabilised in Rust 1.45, while our MSRV is 1.41.
clippy::manual_strip,
// This suggests a macro that was stabilised in Rust 1.42, while our MSRV is 1.40.
// This suggests a macro that was stabilised in Rust 1.42, while our MSRV is 1.41.
clippy::match_like_matches_macro,
)]
#![cfg_attr(not(feature = "allow-unsafe-code"), forbid(unsafe_code))]
Expand Down
2 changes: 1 addition & 1 deletion xcbgen-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
once_cell = "1.6.0"
once_cell = "1.8.0"
roxmltree = "0.14.0"

0 comments on commit b7cad45

Please sign in to comment.