1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-24 16:08:34 +03:00
wezterm/pty/Cargo.toml

44 lines
923 B
TOML
Raw Normal View History

[package]
name = "portable-pty"
version = "0.8.0"
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]
2019-12-15 08:43:05 +03:00
anyhow = "1.0"
downcast-rs = "1.0"
filedescriptor = { version="0.8", path = "../filedescriptor" }
2019-06-09 01:37:55 +03:00
log = "0.4"
libc = "0.2"
nix = {version="0.25", features=["term"]}
2022-02-07 04:32:10 +03:00
shell-words = "1.1"
serde_derive = {version="1.0", optional=true}
serde = {version="1.0", optional=true}
serial = "0.4"
[features]
default = []
serde_support = ["serde", "serde_derive"]
[target."cfg(windows)".dependencies]
2021-08-16 04:21:17 +03:00
bitflags = "1.3"
lazy_static = "1.4"
shared_library = "0.1"
winapi = { version = "0.3", features = [
"winuser",
"consoleapi",
"handleapi",
"fileapi",
"namedpipeapi",
"synchapi",
]}
winreg = "0.10"
[dev-dependencies]
smol = "1.2"
futures = "0.3"