Skip to content

Commit

Permalink
fix: pty-process from fork
Browse files Browse the repository at this point in the history
Fixes #14

Co-authored-by: echolinq <[email protected]>
Co-authored-by: Shahar "Dawn" Or <[email protected]>
  • Loading branch information
3 people committed Nov 19, 2023
1 parent 936967f commit 7ff66b7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
3 changes: 1 addition & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,16 @@ futures = "0.3.28"
glob = "0.3.1"
indoc = "2.0.3"
itertools = "0.11.0"
pty-process = { version = "0.4.0", features = ["async"] }
strip-ansi-escapes = "0.1.1"
tokio = { version = "1.29.1", features = ["macros", "rt-multi-thread", "io-util"] }

# https://github.com/doy/pty-process/pull/8
[dependencies.pty-process]
version = "0.4.0"
features = ["async"]
git = "https://github.com/mobusoperandi/pty-process.git"
rev = "7889630"

[dev-dependencies]
assert_cmd = "2.0.12"
assert_fs = "1.0.13"
Expand Down

0 comments on commit 7ff66b7

Please sign in to comment.