fix(core): update pty version to add windows specific flags (#22711)

This commit is contained in:
Craigory Coppola 2024-04-08 17:25:32 -04:00 committed by GitHub
parent 50d89c7d5a
commit 32144bb702
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View File

@ -483,7 +483,7 @@ checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
[[package]] [[package]]
name = "filedescriptor" name = "filedescriptor"
version = "0.8.3" version = "0.8.3"
source = "git+https://github.com/cammisuli/wezterm#3db3f2d05f7188af9c7527214605f18332fac06d" source = "git+https://github.com/cammisuli/wezterm?rev=b538ee29e1e89eeb4832fb35ae095564dce34c29#b538ee29e1e89eeb4832fb35ae095564dce34c29"
dependencies = [ dependencies = [
"libc", "libc",
"thiserror", "thiserror",
@ -1660,7 +1660,7 @@ dependencies = [
[[package]] [[package]]
name = "portable-pty" name = "portable-pty"
version = "0.8.1" version = "0.8.1"
source = "git+https://github.com/cammisuli/wezterm#3db3f2d05f7188af9c7527214605f18332fac06d" source = "git+https://github.com/cammisuli/wezterm?rev=b538ee29e1e89eeb4832fb35ae095564dce34c29#b538ee29e1e89eeb4832fb35ae095564dce34c29"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"bitflags 1.3.2", "bitflags 1.3.2",

View File

@ -4,7 +4,7 @@ version = '0.1.0'
edition = '2021' edition = '2021'
[dependencies] [dependencies]
portable-pty = { git = "https://github.com/cammisuli/wezterm" } portable-pty = { git = "https://github.com/cammisuli/wezterm", rev = "b538ee29e1e89eeb4832fb35ae095564dce34c29" }
anyhow = "1.0.71" anyhow = "1.0.71"
colored = "2" colored = "2"
crossbeam-channel = '0.5' crossbeam-channel = '0.5'