[package] name = "pty-process" version = "0.1.0" authors = ["Jesse Luehrs "] edition = "2018" [dependencies] libc = "*" nix = "0.17" thiserror = "1.0" async-io = { version = "1.3", optional = true } async-process = { version = "1.0", optional = true } tokio = { version = "1.2", optional = true, features = ["fs", "process"] } [features] default = ["std"] std = [] async-std = ["async-io", "async-process"]