This issue is just to inform the maintainer(s) about stabilization of the previously nightly-only unstable feature:
|
//! This is a complete reimplementation of `printf` in Rust, using the unstable |
|
//! (i.e. **requires a Nightly compiler**) `c_variadic` feature. |
When adapting to this change, be sure to also add rust-version = "1.93" to Cargo.toml as a way to communicate to Cargo that the MSRV is 1.93 due to that requirement (which can also be used for MSRV-based dep resolution by projects).
This issue is just to inform the maintainer(s) about stabilization of the previously nightly-only unstable feature:
printf-compat/src/lib.rs
Lines 3 to 4 in b1f0c7c
When adapting to this change, be sure to also add
rust-version = "1.93"toCargo.tomlas a way to communicate to Cargo that the MSRV is1.93due to that requirement (which can also be used for MSRV-based dep resolution by projects).