samscott89 / serde_qs

Serde support for querystring-style strings
Apache License 2.0
193 stars 67 forks source link

`rust-version` is not correct #88

Open silverpill opened 1 year ago

silverpill commented 1 year ago

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

samscott89 commented 5 months ago

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

silverpill commented 5 months ago

@samscott89 Thanks for update. Another place where MSRV is mentioned is Installation section of README.md