Fredrik Fornwall
Fredrik Fornwall
The just released [version 0.23.0](https://github.com/fornwall/rust-script/releases/tag/0.23.0) allows using `-p`/`--package` to print out the path to the generated package, without any build step. This allows flexibility, like `cargo clippy --manifest-path $(rust-script -p...
Hello and thanks for reporting! I can reproduce the issue and understand it. With `|` being the end of the terminal width, when we are at ``` abcde | ```...
> Is it possible to use external modules? It's not currently possible, but looks interesting. Experimenting with it.
Related, it's possible to "include" another rust file, with something like: ```rust include!(concat!(env!("RUST_SCRIPT_BASE_PATH"), "/utils.rs")); call_function_defined_in_utils_rs(); ``` It's not the same thing as modules and a bit verbose, but it can...