diff options
author | David Hewitt <1939362+davidhewitt@users.noreply.github.com> | 2020-01-02 11:49:27 +0000 |
---|---|---|
committer | Christian Duerr <contact@christianduerr.com> | 2020-01-02 11:49:27 +0000 |
commit | f632919134414e31ffd3ae9b5732d673deb0adf5 (patch) | |
tree | 59e74ceabba1d08a5d5966502dda113b11143fc2 /alacritty_terminal/Cargo.toml | |
parent | 77acb26d7328f678b26c8aff2ee5706d78949c44 (diff) | |
download | alacritty-f632919134414e31ffd3ae9b5732d673deb0adf5.tar.gz alacritty-f632919134414e31ffd3ae9b5732d673deb0adf5.zip |
Clean up Windows PTY string handling
Removes widestring and dunce dependencies, reduces some code duplication
and corrects a few typos.
Diffstat (limited to 'alacritty_terminal/Cargo.toml')
-rw-r--r-- | alacritty_terminal/Cargo.toml | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/alacritty_terminal/Cargo.toml b/alacritty_terminal/Cargo.toml index 385c3cbd..947d94e4 100644 --- a/alacritty_terminal/Cargo.toml +++ b/alacritty_terminal/Cargo.toml @@ -34,12 +34,10 @@ signal-hook = { version = "0.1", features = ["mio-support"] } winpty = { path = "../winpty" } mio-named-pipes = "0.1" miow = "0.3" -dunce = "1.0" winapi = { version = "0.3.7", features = [ "impl-default", "basetsd", "libloaderapi", "minwindef", "ntdef", "processthreadsapi", "winbase", "wincon", "wincontypes", "winerror", "winnt", "winuser", ]} -widestring = "0.4" mio-anonymous-pipes = "0.1" [target.'cfg(target_os = "macos")'.dependencies] |