-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
33 lines (29 loc) · 1015 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
30
31
32
33
[package]
name = "steward"
description = "Task runner and process manager for Rust"
version = "0.0.7"
authors = ["Alex Fedoseev <[email protected]>"]
readme = "./README.md"
homepage = "https://github.com/alexfedoseev/steward"
repository = "https://github.com/alexfedoseev/steward"
documentation = "https://docs.rs/steward"
license = "MIT"
edition = "2021"
keywords = ["command", "process", "env"]
exclude = ["examples/*"]
autoexamples = false
[features]
default = ["tls"]
[dependencies]
tokio = { version = "1", features = ["rt-multi-thread", "fs", "net", "time", "process", "signal", "io-util", "macros"] }
console = "0.14.1"
thiserror = "1.0"
rand = "0.8.3"
once_cell = "1.17.1"
async-trait = "0.1.50"
hyper = { version = "0.14.5", features = ["client", "tcp", "http1"] }
tls = { package = "hyper-tls", version = "0.5.0", features = ["vendored"], optional = true }
[target.'cfg(unix)'.dependencies]
nix = "0.20.0"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", features = ["errhandlingapi"] }