Denys Séguret

Results 761 comments of Denys Séguret

This is a good question. While I considered having a library or feature for the (de)serialization of a whole madskin, which is a quite complex problem in reality as you...

~~Reading this again, I think I should just add the "serde" feature and derive (de)serialize when the feature is active.~~ Not so easy, crossterm's `StyledContent` doesn't derive Serialize and Deserialize...

I don't know why this issue wasn't closed...

As for many Rust projects, I use the [directories-next](https://crates.io/crates/directories-next) crate to get those directories. I'd rather not try to code myself this logic or add another fork of the xdg...

Sorry I wasn't clear. Your issue is perfectly valid. I'd just prefer you to check there's no solution at the directories-next side before we look for one in bacon. In...

If there's no progress there, we should probably create a small wrapper crate for directories-next handling that `XDG_CONFIG_HOME` env var. The name of this crate won't be pretty though, given...

Terminals don't handle modifier keys with the space key (yes it's sad, I can't change that, it's in the protocol). You may use [this program](https://github.com/Canop/crokey/tree/main/examples/print_key) to find working key combinations,...

Unfortunately I don't have a mac to test, so I'll need some help to fix this. To start with, can you show me the content of the bacon.log file you...

I'll have a look at the https://github.com/dimforge/rapier project then. The problem probably also exists on linux.

I'm using https://crates.io/crates/cargo_metadata to avoid parsing and interpreting myself the cargo metadata. And I don't really see a way to get to the value of `lib/path` (as defined [here](https://doc.rust-lang.org/cargo/reference/cargo-targets.html#configuring-a-target) and...