Colin Woodbury

Results 58 issues of Colin Woodbury

I have software that is localized into, among others, Esperanto. The official Esperanto language identifier is `eo` without any region (like the `-US` in `en-US`). `unic_langid` can do `langid!("eo")` just...

bug

And looking through the sourse code of the project, I don't see that symbol anywhere else. `C-h f` doesn't think it exists either. Where is that symbol supposed to come...

I am playing around with exposing some of Rust's `rayon` crate to Emacs. I've started with attempting to implement `join`: ```rust #[emacs::defun] fn join, fb: Value {} unsafe impl {}...

I should probably get off my butt and try implementing some of these myself eh? Haha. Anyway, this seems like another logical instance to have. Off the top of my...

Thanks again for the cool library. General question: should `into_rust::()` succeed for non-float literals like `1`? Currently it fails, but I'm not sure what users should expect in general here....

Hi there, this is a really cool library and I'm excited to speed up my Emacs with Rust. I'm having trouble figuring out how to send Elisp lists to my...

This PR makes the README a bit easier to read in plain text, and also replaces the large type conversion bullet-lists with charts. This makes it easier to tell what...

This allows `Serializer::serialize_maps_as_objects` to actually be used.

After some strange results downstream, I discovered that `#serde(default)` doesn't work. Here are some tests to demonstrate the issue: ```rust #[derive(Deserialize)] struct Person0 { name: String, things: Option, } #[derive(Deserialize)]...