Skip to content

Commit

Permalink
Update to c-gull 0.16. (#46)
Browse files Browse the repository at this point in the history
* Update to c-gull 0.16.

* Update to the latest Rust nightly.
  • Loading branch information
sunfishcode authored May 18, 2024
1 parent 02bf792 commit 77d98a2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ exclude = ["/.github", "ci"]
keywords = ["linux"]

[dependencies]
c-gull = { version = "0.15.44", default-features = false, features = ["eyra"] }
c-gull = { version = "0.16.0", default-features = false, features = ["eyra"] }

[dev-dependencies]
assert_cmd = "2.0.12"
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "nightly-2024-04-21"
channel = "nightly-2024-05-16"
components = ["rustc", "cargo", "rust-std", "rust-src", "rustfmt"]
2 changes: 1 addition & 1 deletion tests/examples.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ fn test_example(name: &str, features: &str, stdout: &str, stderr: &str) {

let mut command = Command::new("cargo");
if which::which("rustup").is_ok() {
command.arg("+nightly-2024-04-21");
command.arg("+nightly-2024-05-16");
}
command.arg("run").arg("--quiet");
if !features.is_empty() {
Expand Down

0 comments on commit 77d98a2

Please sign in to comment.