serde_urlencoded icon indicating copy to clipboard operation
serde_urlencoded copied to clipboard

x-www-form-urlencoded meets Serde

Results 24 serde_urlencoded issues
Sort by recently updated
recently updated
newest added

#91 added serializing, but not deserializing.

- Fixes #92 - Since 0.7.1 is not released on docs.rs, currently, the documentation links fail :point_right: https://docs.rs/serde_urlencoded/0.7.1/serde_urlencoded/ this is why I've shortened the docs link to `https://docs.rs/serde_urlencoded` which will...

```rust Fresh serde_urlencoded v0.7.0 warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() --> C:\Users\dangu\.cargo\registry\src\github.com-1ecc6299db9ec823\serde_urlencoded-0.7.0\src\ser\mod.rs:80:37 | 80 | Error::Utf8(ref err) => error::Error::description(err), | ^^^^^^^^^^^^^^^^^^^^^^^^^ | =...

The "Getting help" section of the readme points to irc.mozilla.org, which no longer exists.

``` thread 'test::asd' panicked at 'called `Result::unwrap()` on an `Err` value: Custom("unsupported value")', asd/src/qwe.rs:32:57 ``` This doesn't say on which value/field the error happened. Could we maybe get the info...

# Description Is there an example of how to pass a `chrono::NaiveDateTime` in a querystring? Here's a sample of what i'm struggling with ### [Playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=7c82a9148a4c4b6fb4bc000ca0e57e91) ```rust use serde_urlencoded; // 0.6.1...

It works when all the fields in the enum are String, but failed in other cases. ```rust use serde::Deserialize; // 1.0.104 use serde_urlencoded; // 0.6.1 #[derive(Debug, Deserialize)] #[serde(untagged)] enum Q1...

Hi! Thanks for this library! I am pleasantly surprised by everything it lets me do. However, I have found a hitch. When deserializing an `enum`, it seems that the type...

I expected `#[serde(flatten)]` does not change the behaviour of internal struct, but it changes. ```rust #[derive(Deserialize, Serialize, PartialEq, Debug)] struct Paginate { limit: u64, offset: u64, } #[derive(Deserialize, Serialize, PartialEq,...