Plecra
Plecra
Here's a minimal example: ```rust #[derive(Debug, Serialize, Deserialize)] struct Foo; #[derive(Debug, Serialize, Deserialize)] struct Bar { foo: Foo, } serde_xml_rs::from_str::( &serde_xml_rs::to_string(&Bar { foo: Foo }).unwrap()) .unwrap(); ```
I have a collection of `FileDescriptorProto`s that I have decoded from a protobuf stream. I want to generate Rust code capable of parsing them, but there doesn't seem to be...
The current api exposes multiple ways for alignment to be expressed: - `Container::center_x` is equivalent to `Container::align_x(Center)` - `HorizonalAlignment`, `VerticalAlignement`, and `Align` all express the same concept. These introduce more...
Anki uses a fork of the library to fix an apparent issue in `fluent_bundle::types::FluentNumber::as_string` https://github.com/ankitects/fluent-rs/compare/2068c467a25b1da5d1a0d69540ca67c47bf14064..f61c5e10a53161ef5261f3c87b62047f12e4aa74 https://github.com/projectfluent/fluent-rs/blob/961450bbbfc2b20e9920b5aa1d5384a2dda3922e/fluent-bundle/src/types/number.rs#L133-L149 I don't think it's a good idea to just use the changes made for...
This would be ideal for usability of the `Duration` type, and promote more compatibility with other crates. It's been mentioned a few times over the years, and was a goal...
## Description It takes an awful lot of work to compile feather. It'd be nice to see if there's any fat we can trim. I'm starting with using `cargo-tree` to...
## Status - [ ] Ready - [x] Development - [ ] Hold ## Description This was fantastic! The implementation was already very cleanly separated so it wasn't any trouble...
## Status - [ ] Ready - [x] Development - [ ] Hold ## Description As mentioned in https://github.com/feather-rs/feather/issues/531#issuecomment-1032325505, I've setup the repo to use `cargo deny`. It is now...
## Status - [x] Ready - [ ] Development - [ ] Hold ## Description I have bumped the hecs version to `0.7`, and removed the dependency on the git...
## Status - [x] Ready - [ ] Development - [ ] Hold ## Description Also deduplicating a dependency for #531 ## Checklist - [x] Ran `cargo fmt`, `cargo clippy...