-
Notifications
You must be signed in to change notification settings - Fork 128
Comparing changes
Open a pull request
base repository: Stebalien/tempfile
base: v3.4.0
head repository: Stebalien/tempfile
compare: v3.5.0
- 13 commits
- 8 files changed
- 6 contributors
Commits on Feb 25, 2023
-
ci: replace unmaintained actions-rs/cargo actions in CI workflows (#214)
Basically all of the `actions-rs/*` actions are unmaintained. See <actions-rs/toolchain#216> for more information. Due to their age they generate several warnings in CI runs. To get rid of some of those warnings the occurrences of `actions-rs/cargo` are replaced by direct invocations of `cargo`.
Configuration menu - View commit details
-
Copy full SHA for 5df4343 - Browse repository at this point
Copy the full SHA 5df4343View commit details -
Configuration menu - View commit details
-
Copy full SHA for cd26d8b - Browse repository at this point
Copy the full SHA cd26d8bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 19f03f1 - Browse repository at this point
Copy the full SHA 19f03f1View commit details
Commits on Feb 26, 2023
-
Update windows-sys to 0.45, redox_syscall to 0.3 (#216)
* Update windows-sys to 0.45 * Update redox_syscall to 0.3 * Fix unused_variables warning on redox
Configuration menu - View commit details
-
Copy full SHA for ecab2b6 - Browse repository at this point
Copy the full SHA ecab2b6View commit details -
ci: replace unmaintained actions-rs/toolchain action in CI workflows (#…
…215) Basically all of the `actions-rs/*` actions are unmaintained. See <actions-rs/toolchain#216> for more information. Due to their age they generate several warnings in CI runs. To get rid of some of those warnings the occurrences of `actions-rs/toolchain` are replaced by `dtolnay/rust-toolchain`.
Configuration menu - View commit details
-
Copy full SHA for 7d21182 - Browse repository at this point
Copy the full SHA 7d21182View commit details
Commits on Mar 1, 2023
-
Add a Dependabot config (#217)
With this Dependabot will automatically file PRs to update dependencies. The cargo section watches `Cargo.toml` for semver-incompatible crate updates while the github-actions section watches the workflow files in `.github/workflows` for possible updates to any of the action in use.
Configuration menu - View commit details
-
Copy full SHA for f32650b - Browse repository at this point
Copy the full SHA f32650bView commit details -
Silence unused variable warnings (#219)
These two are intentionally unused but are warned about when building e.g. wasm32-unknown-unknown.
Configuration menu - View commit details
-
Copy full SHA for 279098a - Browse repository at this point
Copy the full SHA 279098aView commit details -
Specify the MSRV in the Cargo.toml (#220)
It's good to have the MSRV available in a standarized, machine readable format.
Configuration menu - View commit details
-
Copy full SHA for 089358d - Browse repository at this point
Copy the full SHA 089358dView commit details -
* Use rust-toolchain's stable and nightly branches Same behavior as before, just written a bit shorter. * Use rust-toolchain's `targets` input `target` exists as an alias, but `targets` is the documented name of this input, so let's use that. * Add rustfmt and clippy to CI * Downgrade to XCode 13 if Rust <= 1.53 on macOS On current macOS CI images XCode 14 is enabled by default. There's some incompatibility with Rust <= 1.53 causing link failures. The workaround is to revert back to XCode 13 while our MSRV is lower than 1.54. * Run CI on stable as well
Configuration menu - View commit details
-
Copy full SHA for 7db7474 - Browse repository at this point
Copy the full SHA 7db7474View commit details -
Configuration menu - View commit details
-
Copy full SHA for 68fb23c - Browse repository at this point
Copy the full SHA 68fb23cView commit details
Commits on Mar 6, 2023
-
build(deps): update rustix requirement from 0.36.0 to 0.37.1 (#222)
Updates the requirements on [rustix](https://github.com/bytecodealliance/rustix) to permit the latest version. - [Release notes](https://github.com/bytecodealliance/rustix/releases) - [Commits](bytecodealliance/rustix@v0.36.0...v0.37.1) --- updated-dependencies: - dependency-name: rustix dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 7c77c19 - Browse repository at this point
Copy the full SHA 7c77c19View commit details
Commits on Mar 29, 2023
-
NamedTempFile: Fix infinite recursion in trait bounds (#225)
Due to bug rust-lang/rust#96634, these generic bounds may cause an infinite recursion in the compiler, even in unrelated code. This specializes the `Write for &NamedTempFile<F>` impl on `File` instead. This keeps the API the same as before the generic parameter `F` was added, so it shouldn't break any code.
Configuration menu - View commit details
-
Copy full SHA for 8ad7b8c - Browse repository at this point
Copy the full SHA 8ad7b8cView commit details -
Configuration menu - View commit details
-
Copy full SHA for c773849 - Browse repository at this point
Copy the full SHA c773849View commit details
There are no files selected for viewing