serde_qs
serde_qs copied to clipboard
`rust-version` is not correct
Cargo.toml states that MSRV is 1.36.
However, since 096d851f6d878c2c727f530ccc5749b4d8be2ab0 serde_qs uses bool::then_some
, which was stabilized only in Rust 1.62
Good catch, thanks!
Unfortunately it wasn't possible to keep it at 1.36 due to axum
using Cargo features from 1.60 in its configuration which means even though its optional it breaks package resolution :/
Fixing in https://github.com/samscott89/serde_qs/pull/99
@samscott89 Thanks for update. Another place where MSRV is mentioned is Installation section of README.md