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

View File

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