-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (20 loc) · 664 Bytes
/
Cargo.toml
File metadata and controls
24 lines (20 loc) · 664 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "diva"
version = "0.1.0"
authors = ["Francesca Lovebloom <franlovebloom@gmail.com>"]
edition = "2021"
description = "Opinionated convenience wrappers for `std::process::Command` and friends."
documentation = "https://docs.rs/diva"
repository = "https://github.com/francesca64/diva"
readme = "README.md"
keywords = ["process", "shell", "command"]
categories = ["rust-patterns"]
license = "Apache-2.0 OR MIT"
[dependencies]
log = "0.4.11"
[target.'cfg(unix)'.dependencies]
libc = "0.2.81"
[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.48.0", features = ["Win32_System_Threading"] }
[dev-dependencies]
simple_logger = "4.1.0"