1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-29 21:44:24 +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 ## 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 https://www.rust-lang.org/en-US/install.html
* Build in release mode: `rustup run stable cargo build --release` * Build in release mode: `cargo build --release`
* Run it via either `rustup run stable cargo run --release` or `target/release/wezterm` * 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 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, 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 $ git clone --depth=1 --branch=master https://github.com/wez/wezterm.git
$ cd wezterm $ cd wezterm
$ sudo ./get-deps $ sudo ./get-deps
$ rustup run stable cargo build --release $ cargo build --release
$ rustup run stable cargo run --release $ cargo run --release
``` ```
## What? ## What?