Luca Palmieri
Luca Palmieri
`cargo-chef` slims down the workspace members to just the specified binary when `cargo chef prepare` is invoked with a `--bin` flag. At the moment (see #207) we still keep around...
I ran into a stack overflow using `polars` in one of our projects—I was able to pin it down to `run_pipeline_no_finalize`, which is indeed recursive.  I've converted the algorithm...
As far as my understanding goes, all migration scripts are currently run within a SQL transaction. This creates issue in Postgres when trying to change a type (e.g. add a...
With Mainmatter we have developed a workshop on telemetry for Rust application: it covers the `tracing` quite extensively in the "Structured logging" section. It's entirely self-paced: it's a collection of...
## Feature Request ### Crates `tracing` ### Motivation Currently all macros (e.g. `tracing::info!`) require upfront declaration of the fields you want to capture. They are populated either when the span...
With my employer, we developed a workshop to teach folks the ropes about telemetry for Rust applications. It's entirely self-paced: it's a collection of exercises with tests to validate your...
Depending on the failure mode, it may be possible to suggest a fix to the user. In those cases, it'd very nice to be able to show them a PR-like...
## Motivations It often happens, when looking for a feature or a bug fix, to land on a merged PR. The next question: was this released? In what version? ##...
Following up on https://github.com/google/googletest-rust/issues/376