Marcel Märtens

Results 19 issues of Marcel Märtens

`servo-fontconfig` had its latest release over 2 years ago. It's no longer needed by servo itself and prob wont receive any updates soon. It depends on old crates like `freetype-sys...

I just compared the release binarys from this github and found a regression in them. The newer ones don't generate any output for cashflows with my setup. I produced a...

A-WISH
cashflow
check

Hi @besok I started using your crate and got into performance issues, now I did some looks into it and tried to simplify the interface a bit. Removed the JsonPathFinder...

Hello, i would like to ask if its possible to create a new release on creates.io as the current one is almost a year old. Especially since on master you...

Hi devs, ## Proposal TL::DR, I have a visibility problem when coding a small cache and i think a struct should be exported. ### Background I had a fast loop...

Usecase: i want to inject a wireguard proxy in postfix, so i need a parallel process running. we can reuse the technique used for initcontainers here

pending answer

```rust let default_hook = panic::take_hook(); panic::set_hook(Box::new(move |panic_info| { let msg = "foobar" error!( "VOXYGEN HAS PANICKED\n\n{}\n\nBacktrace:\n{:?}", msg, backtrace::Backtrace::new(), ); { use native_dialog::{Dialog, MessageAlert, MessageType}; let mbox = || { MessageAlert...

Hi @zaari, I am looking for a nmea parser for a GPS project. Concrete its about an ESP32-S3 interpreting GPS. From docs your crate looks quite promising, but currently I...

## Feature Request ### Crates tracing_subscriber https://github.com/tokio-rs/tracing/blob/master/tracing-subscriber/src/fmt/writer.rs ### Motivation I want to write all logs into a Buffer. ```rust use bytes::BufMut; let data = bytes::BytesMut::with_capacity(1000); let make_writer = Mutex::new(data.writer()); let...