1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-11 14:25:57 +03:00

termwiz: cut 0.9.0 release

This commit is contained in:
Wez Furlong 2020-05-17 12:03:15 -07:00
parent c45ab2ddd9
commit 1ad6f00696
4 changed files with 9 additions and 21 deletions

2
Cargo.lock generated
View File

@ -3274,7 +3274,7 @@ dependencies = [
[[package]]
name = "termwiz"
version = "0.8.0"
version = "0.9.0"
dependencies = [
"anyhow",
"base64 0.10.1",

View File

@ -9,4 +9,4 @@ license = "MIT"
documentation = "https://docs.rs/tabout"
[dependencies]
termwiz = { path = "../termwiz", version="0.8"}
termwiz = { path = "../termwiz", version="0.9"}

View File

@ -1,7 +1,7 @@
[package]
authors = ["Wez Furlong"]
name = "termwiz"
version = "0.8.0"
version = "0.9.0"
edition = "2018"
repository = "https://github.com/wez/wezterm"
description = "Terminal Wizardry for Unix and Windows"

View File

@ -33,26 +33,14 @@ Included functionality:
* `Widget` trait allows composition of UI elements at a higher level.
* `LineEditor` implements shell-like line editing functionality.
# Windows Support
Termwiz understands how to work with both the legacy console APIs and
the new PTY and virtual terminal features available in Windows 10,
allowing for true color terminal applications on Windows 10.
# Documentation
https://docs.rs/termwiz
## Windows
Testing via Wine:
```
sudo apt install gcc-mingw-w64-x86-64
rustup target add x86_64-pc-windows-gnu
cargo build --target=x86_64-pc-windows-gnu --example hello
```
Then, from an X session of some kind:
```
wineconsole cmd.exe
```
and from there you can launch the generated .exe files; they are found under `target/x86_64-pc-windows-gnu/debug`