Linus Färnstrand
Linus Färnstrand
Since Rust 1.75.0 the [`version` field is optional](https://github.com/rust-lang/cargo/pull/12786). I have a crate without version. But when running `cargo geiger` I get: ``` error: failed to parse manifest at `/home/faern/....../Cargo.toml` Caused...
Hi. We randomly get these errors in some of our CI runs. We have not found a real pattern when it happens. ``` Run mristin/opinionated-commit-message@f3b9cec249cabffbae7cd564542fd302cc576827 Error: Error: No commits found...
The way we currently probe the system for PF states is racy and prone to failing. We first check the number of states -> allocate a container -> ask the...
Great addition with `[[PackageOverrides]]` in the latest release :+1: But why is the way to set an expiry time on the ignore named differently? `ignoreUntil != effectiveUntil`. We almost merged...
The `core::net` module is heading for stabilization. It's currently stable in beta and will be stable in the next stable Rust release (1.77) unless it's reverted for some reason. That's...
Commit 1: @dlon Add an empty `permissions: {}` to `ios-rust-ffi.yml`. Commit 2: We still get warnings from OpenSSF. See under "Token permissions" here: https://securityscorecards.dev/viewer/?uri=github.com/mullvad/mullvadvpn-app. The warning is: > Warn: topLevel...
The reason for this is outlined in the comment in `Cargo.toml` in the PR content itself. Before this can be merged, I need to add fancy documentation helper tags that...
Makes it impossible to create instances from outside the library. Allows future modifications to the error struct without breaking the API. This PR however, is breaking the API and will...
This PR adds a separate type, `AsyncReceiver`, that implements `Future`, instead of implementing it directly on the `Receiver` type. Now the `Receiver` implements `IntoFuture` instead. This change removes the possible...
* [x] I have followed the instructions in the PR template. This is equally a question and a change suggestion: Can I retain a clone of the `Arc` and use...