-
The [serde_yaml](https://github.com/dtolnay/serde-yaml) crate is archived and will not be updated.
There is a fork however named [serde_yml](https://github.com/sebastienrousseau/serde_yml).
It sho…
-
`serde_yaml` is no longer maintained and we have multiple workarounds for its deficiencies.
Perhaps https://github.com/Ethiraric/yaml-rust2? Is there something else we should consider?
-
I'd like to access the events from Jotdown in JS (via WASM) as JSON. Would you accept a PR to implement optional serde support?
(basically adding `#[cfg_attr(feature = "serde", derive(Serialize, De…
-
```rust
#[derive(Serialize)]
#[serde(rename = "SomethingFoo")]
#[typeshare]
pub enum Foo {
A
}
#[derive(Serialize)]
#[typeshare]
#[serde(tag = "type", content = "value")]
pub enum Pare…
-
I'm currently using bloom2 in a performance sensitive area and serde is not a good fit. Would you mind if I expose the fields via getters, swap out `Vec` for `Bytes`, and add some functions to the bui…
-
Hi,
Just wanted to ask if there are any plans to implement Serde (i.e. `derive(Serialize, Deserialize)`) on the DIS PDU structs? For my particular case I'm building a web server that exposes DIS pack…
-
Consider the following struct:
```
#[derive(Deserialize, Serialize, JsonSchema)]
struct SomeStruct {
#[serde(with = "rust_decimal::serde::arbitrary_precision")]
field: Decimal,
}
```
…
elipp updated
20 hours ago
-
Errors flood the system. I would like to save old logs to opfs, etc., so it would be great if you could add a serde function.
-
Would it be possible to support serde derive macros (`Serialize` & `Deserialize`) in `derive-where`?
Currently, if you put fields from associated types, you have to manually put `#[serde(bounds(ser…
-
It generates a myriad of problems and difficult to debug issues. U128 currently is a struct with two limbs, well, let's (de)serialize it as such and not "collapse" it into a Field. Further reading: h…