1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-26 08:25:50 +03:00

simplify the readme

Now that we no longer require nightly rust, we can just run cargo.
This commit is contained in:
Wez Furlong 2018-08-05 17:04:37 -07:00
parent a8ae14bb6b
commit 4601a4ecc9

View File

@ -12,10 +12,10 @@ A terminal emulator implemented in Rust, using OpenGL ES 2 for rendering.
## Quickstart
* Install `rustup` to get the *stable* `rust` compiler installed on your system.
* Install `rustup` to get the `rust` compiler installed on your system.
https://www.rust-lang.org/en-US/install.html
* Build in release mode: `rustup run stable cargo build --release`
* Run it via either `rustup run stable cargo run --release` or `target/release/wezterm`
* Build in release mode: `cargo build --release`
* Run it via either `cargo run --release` or `target/release/wezterm`
You will need a collection of support libraries; the [`get-deps`](get-deps) script will
attempt to install them for you. If it doesn't know about your system,
@ -26,8 +26,8 @@ $ curl https://sh.rustup.rs -sSf | sh -s
$ git clone --depth=1 --branch=master https://github.com/wez/wezterm.git
$ cd wezterm
$ sudo ./get-deps
$ rustup run stable cargo build --release
$ rustup run stable cargo run --release
$ cargo build --release
$ cargo run --release
```
## What?