58 lines
1.4 KiB
TOML
58 lines
1.4 KiB
TOML
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
|
|
#
|
|
# When uploading crates to the registry Cargo will automatically
|
|
# "normalize" Cargo.toml files for maximal compatibility
|
|
# with all versions of Cargo and also rewrite `path` dependencies
|
|
# to registry (e.g., crates.io) dependencies.
|
|
#
|
|
# If you are reading this file be aware that the original Cargo.toml
|
|
# will likely look very different (and much more reasonable).
|
|
# See Cargo.toml.orig for the original contents.
|
|
|
|
[package]
|
|
edition = "2021"
|
|
rust-version = "1.74"
|
|
name = "shared_child"
|
|
version = "1.1.1"
|
|
authors = ["jacko"]
|
|
build = false
|
|
autolib = false
|
|
autobins = false
|
|
autoexamples = false
|
|
autotests = false
|
|
autobenches = false
|
|
description = "a library for using child processes from multiple threads"
|
|
documentation = "https://docs.rs/shared_child"
|
|
readme = "README.md"
|
|
keywords = [
|
|
"command",
|
|
"process",
|
|
"child",
|
|
"subprocess",
|
|
]
|
|
categories = ["os"]
|
|
license = "MIT"
|
|
repository = "https://github.com/oconnor663/shared_child.rs"
|
|
|
|
[features]
|
|
default = ["timeout"]
|
|
timeout = ["dep:sigchld"]
|
|
|
|
[lib]
|
|
name = "shared_child"
|
|
path = "src/lib.rs"
|
|
|
|
[target."cfg(not(windows))".dependencies.libc]
|
|
version = "0.2.42"
|
|
|
|
[target."cfg(not(windows))".dependencies.sigchld]
|
|
version = "0.2.3"
|
|
optional = true
|
|
|
|
[target."cfg(windows)".dependencies.windows-sys]
|
|
version = "0.60.2"
|
|
features = [
|
|
"Win32_Foundation",
|
|
"Win32_System_Threading",
|
|
]
|