tab-daemon 0.3.2

the daemon module for the tab terminal multiplexer
Documentation
[package]
name = "tab-daemon"
version = "0.3.2"
authors = ["Austin Jones <implAustin@gmail.com>"]
description = "the daemon module for the tab terminal multiplexer"
homepage = "https://github.com/austinjones/tab-rs"
repository = "https://github.com/austinjones/tab-rs"
license = "MIT"
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tab-api = "0.3.2"
tab-websocket = "0.3.0"
lifeline = "0.3"

dirs = "3.0"
serde_yaml = "0.8"

# async / websockets
tokio = { version = "0.2", features = ["macros", "stream", "sync", "time", "io-util", "rt-threaded"] }
tokio-io = "0.1"
async-trait = "0.1"

# authentication / tokens
rand = "0.7"
base64 = "0.12"

# logging
log = "0.4"
simplelog = "0.8"

# error management
anyhow = "1.0"
thiserror = "1.0"

[dev-dependencies]
tokio-test = "0.2.1"
http = "0.2"

tungstenite = { version = "0.11", default-features = false }
async-tungstenite = { version = "0.8", features = ["tokio-runtime"] }