Tobias Bieniek
Tobias Bieniek
**What happened**: about an hour ago crates.io received 37,518 requests within 2 minutes with the user agent `Xeol`. this exceeds our API usage limit. **What you expected to happen**: please...
This adds a private `unit_serde!` macro to automatically generate unit-specific serialization and deserialization functions when the `serde` feature is enabled. These functions are generic over storage types (f32, f64, etc.)...
Replace the `serde` dependency with `serde_core` to improve build times. Since the crate only hand-implements Serialize/Deserialize traits without using derive macros, `serde_core` is sufficient and allows parallel compilation with `serde_derive`....
The unit struct fields in `Units` enum variants were never accessed - they were only used for construction and immediately discarded in pattern matching. Changes: - Convert tuple-like enum variants...
## Changes This PR adds a new `rust-release-channel` versioning scheme, based on the "Toolchain specification" section of https://rust-lang.github.io/rustup/concepts/toolchains.html. This was extracted from https://github.com/renovatebot/renovate/pull/39529 so that it can be reviewed and...
## Changes This PR adds a new `rust-release-channel` versioning scheme and a `rust-version` data source, based on the data from https://static.rust-lang.org/manifests.txt. This PR replaces https://github.com/renovatebot/renovate/pull/39260, which was using a data...
I'm looking at https://github.com/warp-drive-data/warp-drive/blob/main/CHANGELOG.md#v580-2025-10-20 and it says that nothing has changed in v5.8.0, but https://github.com/warp-drive-data/warp-drive/compare/v5.7.0...v5.8.0 shows 2198 changed files. This basically makes it impossible for users to understand what has...
The `crypto-common` crate depends on `[email protected]` which was deprecated a couple of hours ago (see https://github.com/fizyk20/generic-array/commit/d859e59b29412c8434563716e418884c6a9266b2). Should the dependency be updated to `generic-array@1`? I noticed in [some other places](https://github.com/RustCrypto/traits/pull/1462) we...
## Proposed change The power and current values of the SONOFF S60ZBTPF and S60ZBTPG are not correctly reset to zero when the switch of the socket is turned off. Similarly,...
In the crates.io codebase we have a mix of Rust and JS code. We use `insta` for a lot of the Rust code, and increasingly `vitest` for the JS code....