17 lines
509 B
Markdown
17 lines
509 B
Markdown
# setup
|
|
* get http://rustup.rs
|
|
* get a specific nightly version `rustup override set nightly-2020-02-27`. for some reason newer versions give internal compiler errors and I'm not sure if it is my fault or the compilers.
|
|
* grab elseware
|
|
* `cargo test` to run tests
|
|
|
|
# development setup
|
|
grab [libpso](http://git.sharnoth.com/jake/libpso) and put
|
|
```
|
|
[patch."http://git.sharnoth.com/jake/libpso"]
|
|
libpso = { path = "path/to/libpso" }
|
|
```
|
|
at the end of the `Cargo.toml` file
|
|
|
|
# to actually run it
|
|
* `cargo run`
|