expectrl 0.1.1

A tool for automating terminal applications in Unix like Don libes expect
Documentation
[package]
name = "expectrl"
version = "0.1.1"
authors = ["Maxim Zhiburt <zhiburt@gmail.com>"]
edition = "2018"
description = "A tool for automating terminal applications in Unix like Don libes expect"
repository = "https://github.com/zhiburt/expectrl"
homepage = "https://github.com/zhiburt/expectrl"
documentation = "https://docs.rs/expectrl"
license = "MIT"
categories = ["os::unix-apis"]
keywords = ["pty", "automation", "testing", "expect", "rexpect"]
readme = "README.md"

[features]
default = ["sync"]
async = ["ptyprocess/async"]
sync = ["ptyprocess/sync"]
log = []
async_log = ["futures-lite"]

[dependencies]
ptyprocess = { version = "0.1.4", default-features = false }
regex = "1.5.4"
futures-lite = { version = "1.12.0", optional = true }

[dev-dependencies]
futures-lite = "1.12.0"