Skip to content

Commit

Permalink
Update to the latest nightly Rust. (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
sunfishcode authored Apr 22, 2024
1 parent 4f0fbe6 commit 43993f6
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.41", default-features = false, features = ["eyra"] }
c-gull = { version = "0.15.44", 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-02-26"
channel = "nightly-2024-04-21"
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-02-26");
command.arg("+nightly-2024-04-21");
}
command.arg("run").arg("--quiet");
if !features.is_empty() {
Expand Down

0 comments on commit 43993f6

Please sign in to comment.