runner icon indicating copy to clipboard operation
runner copied to clipboard

Tool for running Rust snippets

Results 11 runner issues
Sort by recently updated
recently updated
newest added

1. Issue #13: added *RUSTUP to env:DYLD_FALLBACK_LIBRARY_PATH for dynamic execution, as per dwaltrip's workaround. Can test simply with Hello.rs before and after. 2. Updated serde/serde_json versions in Cargo.toml to remove...

Is there a rustup install option or the binary need to built and copied to /bin?

Hi, thank you for building and sharing this tool :) I've encountered an error when I try to use `runner`, e.g. with simple example such as: `runner -e 'String::from("Hello, World")'`....

If there is already an exact rust source file, that was already compiled, then we can just rerun it, without recompiling, this makes a big different for men on windows...

Is it possible to add support for input from terminal stdin like below? ```sh runner --add time

If the same crate is added twice, the second time there is no exit-code ```console runner --add flagset error: failed to parse manifest at `/Users/john.vandenberg/.cargo/.runner/static-cache/Cargo.toml` Caused by: could not parse...

The file definitely exists, so something else is missing ``` $ runner cases/rect.rs runner error: cannot write code No such file or directory (os error 2) $ cd cases $...

``` ivan@arch ~> runner -C regex building crate 'regex' aho-corasick default memchr perf perf-cache perf-dfa perf-inline perf-literal std thread_local unicode unicode-age unicode-bool unicode-case unicode-gencat unicode-perl unicode-script unicode-segment at /home/ivan/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/lib.rs error[E0463]:...

When I run this: runner --add rand echo "use rand;" > mwe.rs runner mwe.rs I get this error: error: extern location for rand does not exist: /home/mark/.cargo/.runner/unstable/dy-cache/librand.so error[E0463]: can't find...

I'm having a bit of trouble with ``--prepend``: echo -e 'let a = 3;\nprintln!("{}", a + 2);' > mwe.rs If I run runner --prepend "// pre\n" mwe.rs then I get...