Anthony Deschamps

Results 10 comments of Anthony Deschamps

Matthew Buscemi just published an Atom plugin, [elm-lens], which (among other things) warns about items that are exposed but not externally referenced. - [ ] Exposed item with no external...

> `value()` returns a reference. It should probably return a value, but it's too late to change without breaking changes. For what it's worth, I would be happy to see...

I made an attempt at this. I tried enabling `impl Trait` on nightly so I could return "something that implements [`Length`]", but I ran into a bit of trouble. If...

One of the things that makes combining dimensioned and nalgebra hard is that there are cases where the units of matrices are non-homogeneous. For example, if you have a 2D...

In this situation, I explicitly divide by what I expect the units to be. That should give you a dimensionless value. Then you can use the `value()` method from the...

For what it's worth, I'm curious _why_ there was no apparent performance gain. My best guess is that when lots of small allocations are made in quick succession you still...

You could conceivably (ab)use the hints or completions mechanisms, which pass the current buffer each time it is changed.

I configure prost to derive `Serialize` in my `build.rs`: ```rust let mut config = prost_build::Config::new(); config.type_attribute(".", "#[derive(Serialize)]"); config.type_attribute(".", "#[serde(rename_all = \"camelCase\")]"); ``` Are there ways in which the proto3 JSON...

Doesn't protobuf convert field names to camel case for JSON anyway?

I thought I was going to need this feature, and was about to use this branch via a `[patch.crates-io]` entry. I wanted to expose a build version and other information...