2019-08-24 15:32:09 -07:00
|
|
|
# setup
|
|
|
|
* get http://rustup.rs
|
2019-09-07 23:41:37 -07:00
|
|
|
* get the latest nightly `rustup default nightly`
|
|
|
|
* grab elseware
|
2019-08-25 04:51:44 -07:00
|
|
|
* `cargo test` to run tests
|
2019-08-28 17:46:12 -07:00
|
|
|
|
2019-09-07 23:41:37 -07:00
|
|
|
# development setup
|
2019-09-10 18:22:07 -04:00
|
|
|
grab [libpso](http://git.sharnoth.com/jake/libpso) and put
|
2019-09-08 22:15:41 -04:00
|
|
|
```
|
|
|
|
[patch."http://git.sharnoth.com/jake/libpso"]
|
2019-09-08 18:33:43 -07:00
|
|
|
libpso = { path = "path/to/libpso" }
|
2019-09-08 18:37:24 -07:00
|
|
|
```
|
|
|
|
at the end of the `Cargo.toml` file
|
2019-09-07 23:41:37 -07:00
|
|
|
|
2019-08-28 17:46:12 -07:00
|
|
|
# to actually run it
|
|
|
|
* `cargo run --bin patch` and `cargo run --bin login`
|
2019-09-08 22:15:41 -04:00
|
|
|
|