-
> serde_cbor is unmaintained
| Details | |
| ------------------- | ---------------------------------------------- |
| Status |…
-
It would be nice to have examples of using Protobuf serde along with Avro. Right now docs pointing at https://github.com/confluentinc/schema-registry/blob/master/protobuf-serde/src/test/java/io/conflu…
-
Consider:
```rust
use nbt::{Blob, Value};
fn main() {
let mut blob = Blob::new();
blob.insert("test", Value::Int(123)).unwrap();
let mut bytes = Vec::new();
nbt::to_write…
-
The ICRC3 example from https://raw.githubusercontent.com/NatLabs/serde/main/usage.md#icrc3-value doesn't work
There is one here https://github.com/NatLabs/serde/blob/main/tests/Candid.ICRC3.Test.mo…
infu updated
2 months ago
-
Consider wrapping it in a newtype struct like this:
```rust
#[derive(Deserialize, Eq, Hash, PartialEq, PartialOrd, Ord, Serialize)]
#[serde(transparent)]
pub struct MediaHash(
#[serde(with = "…
msrd0 updated
7 months ago
-
# Problem description
Rust analyzer keeps using more and more memory. It seems to be connected with `serde`s proc_macros and many fields in the struct.
After the file is opened, during the first m…
vdrn updated
11 months ago
-
https://github.com/Niedzwiedzw/serde-xml-rs/blob/bfd38c52440cca274819b6f84f12d47ceb438fa3/tests/test.rs#L173 right so this is a showcase of a panic, @RReverser, is this behavior intentional?
-
I have a field that is sometimes missing, and otherwise it has to be parsed to bool from either "1" or "0". This particular requirement isn't natively supported by serde, so I had to implement my own …
-
By default `serde-json` ignores all unknown fields, it's a good thing if you want your app to work even if something changes. _However_, it's a bad thing for testing, because it can lead to unnoticeab…
-
## What is the problem your feature solves, or the need it fulfills?
Extending `ServerConf` with custom settings works along these lines:
```rust
#[derive(Debug, PartialEq, Eq, Deserialize)]
#…