Simon Paitrault

Results 20 issues of Simon Paitrault

### Summary The generated suggestion can't be compiled when using `else if` and a `HashMap`. I created a playground to reproduce the issue: https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=acfee3c8c6ac5f68248d2317f17a1b46 ### Lint Name map_entry ### Reproducer...

C-bug
I-false-positive

# Feature Currently when using oxide-auth within an api which will be deploy multiple times with a LB on front we can't rely on the internal vector which hold the...

feature

Hello, I'm trying to use git-journal for one of my repository but I see some weird behaviour, I don't know if it's a bug or if I didn't see something....

This PR aims to add the floating window support for terminal actions (like `RustDebuggables`, `RustRunnables` and so on). The floating window can be configured: ```lua local config = { ......

Hello, This PR aims to solve a little disturbing issue that I had. It was not possible to update the width of the preview, I updated the `config` and `preview`...

In order to avoid unwanted behaviour we need to switch from i64 to u64. Leaving i64 convertion to sqlx and using `TryFrom` macro

Using the new landed feature of cargo we can manage common dependencies such as `sqlx` or `uuid` inside the root `Cargo.toml` in order to synchronize and better manage the versions.

enhancement
good first issue

The `Listener` is responsible of listening for `events` that are appended to a stream and forward them to the `SubscriberManager` to notify every `EventHandler` interested. The fact is that the...

enhancement
help wanted

`Command` can already be use with `enum` and `newtype` but the `Command` derive only support `struct`. ```rust #[derive(Debug)] struct AppendItem(i64); impl Command for AppendItem { type Event = ItemAppended; type...

enhancement
question