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

prep for pty 0.4 release

This commit is contained in:
Wez Furlong 2021-04-30 10:17:25 -07:00
parent d4da670294
commit 5b9be21165
3 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View File

@ -2795,7 +2795,7 @@ dependencies = [
[[package]]
name = "portable-pty"
version = "0.3.1"
version = "0.4.0"
dependencies = [
"anyhow",
"bitflags",

View File

@ -1,6 +1,6 @@
[package]
name = "portable-pty"
version = "0.3.1"
version = "0.4.0"
authors = ["Wez Furlong"]
edition = "2018"
repository = "https://github.com/wez/wezterm"

View File

@ -12,7 +12,7 @@ base64 = "0.13"
dirs-next = "2.0"
filedescriptor = { version="0.7", path = "../filedescriptor" }
log = "0.4"
portable-pty = { path = "../pty" }
portable-pty = { version="0.4", path = "../pty" }
regex = "1"
smol = "1.2"
ssh2 = {version="0.9", features=["openssl-on-win32"]}