Results 66 comments of Plecra

What is this issue still waiting on? It appears that the original request works today: ```rust #[derive(Deserialize, PartialEq)] #[serde(tag = "tag")] enum Target { A(()), B(()), #[serde(other)] Others } fn...

It's awfully late, but I just saw this in my email, and I like it 😆. The token representation and parsing logic all flows very nicely. If parsing ever becomes...

I'd actually already managed to decode a `prost_type::FileDescriptorProto` :) My problem is that I'm not really able to *do* anything with it. Ultimately, I want to generate a rust crate...

[`prost_build::Config::compile_protos`](https://github.com/danburkert/prost/blob/b92b6dedaf96a736cec5a8399785a8d43f6b293b/prost-build/src/lib.rs#L654) can be used to compile `.proto` files to rust code that can consume them - in my crate, I want to compile `FileDescriptorProto`s to rust code. For this, I...

`HorizonalAlignment` and `VerticalAlignment` are only used by the `Text::*__alignment` functions, which don't seem to have any point of comparison. None of the other "end-nodes" have an idea of internal alignment...

I hope we can start with assessing the actual impact - the number of instantiations haven't changed, and LLVM just seems to be reporting 3x the IR size in each...

My apologies! I'll be more careful when investigating what's been done from now on. Would it be unreasonable to pull the float formatting out into a feature request for people...

https://github.com/chronotope/chrono/blame/3467172c31188006147585f6ed3727629d642fed/README.md#L22 > Chrono strictly adheres to ISO 8601. I think it's fair to expect chrono to be able to parse iso 8601 dates

Just want to add that there's currently a runtime dependency on libogg (from `with-tremor`), and I wouldn't expect to find it on most windows systems. Users will have to do...

Also, why aren't we using the windows services API for this? It seems to fit the role best.