1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-27 12:23:46 +03:00

docs: update rust version info and build instructions

This commit is contained in:
Wez Furlong 2019-12-01 15:23:08 -08:00
parent d368c0036b
commit 0f28ab8243

View File

@ -73,7 +73,7 @@ debian style systems, including Debian 9 (Stretch) and later versions.
* Install `rustup` to get the `rust` compiler installed on your system. * Install `rustup` to get the `rust` compiler installed on your system.
[Install rustup](https://www.rust-lang.org/en-US/install.html) [Install rustup](https://www.rust-lang.org/en-US/install.html)
* Rust version 1.35 or later is required * Rust version 1.39 or later is required
* Build in release mode: `cargo build --release` * Build in release mode: `cargo build --release`
* Run it via either `cargo run --release` or `target/release/wezterm` * Run it via either `cargo run --release` or `target/release/wezterm`
@ -85,7 +85,7 @@ attempt to install them for you. If it doesn't know about your system,
$ curl https://sh.rustup.rs -sSf | sh -s $ curl https://sh.rustup.rs -sSf | sh -s
$ git clone --depth=1 --branch=master --recursive https://github.com/wez/wezterm.git $ git clone --depth=1 --branch=master --recursive https://github.com/wez/wezterm.git
$ cd wezterm $ cd wezterm
$ git submodule update --init $ git submodule update --init --recursive
$ sudo ./get-deps $ sudo ./get-deps
$ cargo build --release $ cargo build --release
$ cargo run --release -- start $ cargo run --release -- start