2019-05-20 04:38:59 +03:00
|
|
|
[package]
|
|
|
|
name = "portable-pty"
|
2019-09-16 04:16:43 +03:00
|
|
|
version = "0.2.0"
|
2019-05-20 04:38:59 +03:00
|
|
|
authors = ["Wez Furlong"]
|
|
|
|
edition = "2018"
|
|
|
|
repository = "https://github.com/wez/wezterm"
|
|
|
|
description = "Cross platform pty interface"
|
|
|
|
license = "MIT"
|
|
|
|
documentation = "https://docs.rs/portable-pty"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
failure = "0.1"
|
|
|
|
failure_derive = "0.1"
|
2019-07-23 19:50:48 +03:00
|
|
|
filedescriptor = "0.5"
|
2019-06-09 01:37:55 +03:00
|
|
|
log = "0.4"
|
2019-05-20 04:38:59 +03:00
|
|
|
libc = "0.2"
|
2019-08-02 20:51:10 +03:00
|
|
|
shell-words = "0.1"
|
2019-05-20 04:38:59 +03:00
|
|
|
serde_derive = {version="1.0", optional=true}
|
|
|
|
serde = {version="1.0", optional=true}
|
2019-08-07 20:59:42 +03:00
|
|
|
serial = "0.4"
|
2019-09-16 03:54:14 +03:00
|
|
|
ssh2 = {optional=true, version="0.4"}
|
2019-05-20 04:38:59 +03:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
serde_support = ["serde", "serde_derive"]
|
2019-08-02 20:51:10 +03:00
|
|
|
ssh = ["ssh2"]
|
2019-05-20 04:38:59 +03:00
|
|
|
|
|
|
|
[target."cfg(windows)".dependencies]
|
2019-05-20 04:55:10 +03:00
|
|
|
bitflags = "1.0"
|
|
|
|
lazy_static = "1.3"
|
2019-05-20 04:38:59 +03:00
|
|
|
shared_library = "0.1"
|
|
|
|
uds_windows = "0.1"
|
|
|
|
winapi = { version = "0.3", features = [
|
|
|
|
"winuser",
|
|
|
|
"consoleapi",
|
|
|
|
"handleapi",
|
|
|
|
"fileapi",
|
|
|
|
"namedpipeapi",
|
|
|
|
"synchapi",
|
|
|
|
]}
|
|
|
|
|