Maxime Augier
Maxime Augier
The documentation for `.tee()` says: > Split into an iterator pair that both yield all elements from the original iterator. It's not obvious from the documentation, but with the current...
With the supplied `Cargo.toml`, the runner fails with: ``` error: failed to select a version for the requirement `hexlit = "=0.3.2"` candidate versions found which didn't match: 0.5.2 location searched:...
Hello, This example (where `pinit-highlight-equation-from` is taken from the reference website) used to work fine with typst v0.11.1: ```typst #import "@preview/pinit:0.2.0": * #import "@preview/touying:0.5.2": themes #show: themes.university.university-theme #let pinit-highlight-equation-from(height: 2em,...
Hi, `Connection::open()` drops the `Child` process handle after invoking `std::process::Command::new()`, which leads to the creation of zombie processes in long-running programs. This fixes the issue by implementing the same behavior...
Hi, `Connection::open()` drops the `Child` process handle after invoking `std::process::Command::new()`, which leads to the creation of zombie processes in long-running programs. This fixes the issue by waiting on the child...