Robin Moussu

Results 24 issues of Robin Moussu

In a1ab0ff26f23c82f15180051204eeb6279747c9a, a memory leak is introduced. I added one possible way to fix it in 427fb998f44913460124f470d34edb2014108014. I just don't know how to create a PR targeting a given commit...

I tried to use cargo-call-stack on a project that uses a workspace, and the only output I got was ``` error: missing field `package` ``` The only semi-related information I...

I don't understand why a specific marker (like the star next to `fn`) would be needed? I don't think that it was correctly justified. Bjarne Stroustroup, creator of C++, said...

# Goal Given the following rust code: ```rust fn main() { let fct = get_fct(); let fct = forward_fct(fct); fct(); } fn foo() { bar() } fn bar() { }...

enhancement

I didn't found in the docs if it was possible to dump the current config of the keyboard. I don't know either if it's possible, but it could be useful...

Hello, I was going to try to use this project ton make some remapping on my x-bows, but I didn't really understood where to start. Is it possible to add...

Would it be possible to extend the `text_signature` macro to be able to support python [type annotation](https://www.python.org/dev/peps/pep-3107/). ## Example ``` /// Formats the sum of two numbers as string. #[pyfunction()]...

enhancement
blocked
needs-design

**Do not integrates thoses commit they are not ready, I am doing this PR because I need some help, and I thought it was the best way to discuss and...

I was trying to write unit test, and I was searching a was trying to find the best way to have deterministic test (I would like to use constant instead...

I am new to Rust, and thought that basically anything that is related to serialization/deserialization would be related one way or another to the Serde crate. This one isn't, and...