Maurice Lam
Maurice Lam
When running `cargo call-stack` using the latest nightly, it fails with `error: Did not find ELF magic number`. Repro steps: 1. `rustup install nightly-2023-12-02` 2. `rustup component add rust-src --toolchain...
Add a cargo-subcommand argument so that when invoked from cargo the positional arguments ("start") parse from the correct value. Fix #99
The license text `LICENSE.md` is not in the sources uploaded to crates.io. ``` $ wget https://crates.io/api/v1/crates/Inflector/0.11.4/download $ tar -xvf download $ ls Inflector-0.11.4 Cargo.toml Cargo.toml.orig README.md src tests ``` Can...
`gfmAutoLink` was added in https://github.com/Vanessa219/vditor/releases/tag/v3.9.4. Is it possible to add support for that in this vscode extension? Thanks!
I have a project with the following structure: ``` project $ tree -I target -I artifacts -I corpus . ├── Cargo.lock ├── Cargo.toml ├── fuzz │ ├── Cargo.lock │ ├──...
Can someone make a pull request with icons for common devtools extensions like PageSpeed?
(As discussed on https://github.com/stateright/stateright/discussions/79) The `actor::Out::choose_random` method gives a way to model non-deterministic choices by an Actor. It supplies a vec of choices with type `Actor::Random`, which `ActorModelState` will then...
In the following code, the `Self: 'static` bound gets copied to the derived impl `TryFrom for (&mut Wrapper) where Self: 'static`, which changes the bound from `Foo: 'static` to `&mut...