-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (25 loc) · 868 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "cmdpiped"
version = "0.1.0"
edition = "2021"
description = "A command-line tool for exposing a wrapped cli program's standard IO to WebSockets/SSE"
authors = ["Njuguna Mureithi <[email protected]>"]
readme = "README.md"
repository = "https://github.com/geofmureithi/cmdpiped"
documentation = "https://github.com/geofmureithi/cmdpiped"
license = "MIT OR Apache-2.0"
keywords = ["sse", "websockets", "daemon", "http", "cli"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = "4"
tokio = { version = "1", features =["process", "io-std"] }
futures = "0.3"
tokio-process-stream = "0.3.0"
actix-files = "0.6.2"
clap = { version = "3", features = ["derive"] }
actix-ws = "0.2.0"
log = "0.4"
env_logger = "0.9"
[dev-dependencies]
actix-test = "0.1"
actix-web-actors = "4"