procspawn 1.0.2

thread::spawn just with processes
Documentation
# 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 = "2018"
rust-version = "1.86.0"
name = "procspawn"
version = "1.0.2"
authors = [
    "Armin Ronacher <armin.ronacher@active-4.com>",
    "Manish Goregaokar <manishsmail@gmail.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "thread::spawn just with processes"
homepage = "https://github.com/mitsuhiko/procspawn"
readme = "README.md"
keywords = [
    "proc",
    "spawn",
    "subprocess",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/mitsuhiko/procspawn"

[package.metadata.docs.rs]
all-features = true

[features]
default = [
    "backtrace",
    "safe-shared-libraries",
]
json = ["serde_json"]
safe-shared-libraries = ["findshlibs"]
test-support = ["small_ctor"]

[lib]
name = "procspawn"
path = "src/lib.rs"

[[example]]
name = "args"
path = "examples/args.rs"

[[example]]
name = "bad-serialization"
path = "examples/bad-serialization.rs"
required-features = [
    "backtrace",
    "json",
]

[[example]]
name = "custom-serialization"
path = "examples/custom-serialization.rs"

[[example]]
name = "join"
path = "examples/join.rs"

[[example]]
name = "kill"
path = "examples/kill.rs"

[[example]]
name = "macro"
path = "examples/macro.rs"

[[example]]
name = "panic"
path = "examples/panic.rs"
required-features = ["backtrace"]

[[example]]
name = "pool"
path = "examples/pool.rs"

[[example]]
name = "simple"
path = "examples/simple.rs"

[[example]]
name = "stdout"
path = "examples/stdout.rs"

[[example]]
name = "timeout"
path = "examples/timeout.rs"

[[test]]
name = "test_basic"
path = "tests/test_basic.rs"
required-features = ["test-support"]

[[test]]
name = "test_macros"
path = "tests/test_macros.rs"
required-features = ["test-support"]

[[test]]
name = "test_pool"
path = "tests/test_pool.rs"
required-features = ["test-support"]

[dependencies.backtrace]
version = "0.3.73"
features = ["serde"]
optional = true

[dependencies.findshlibs]
version = "0.10.2"
optional = true

[dependencies.ipc-channel]
version = "0.22.0"

[dependencies.libc]
version = "0.2.66"

[dependencies.serde]
version = "1.0.104"
features = ["derive"]

[dependencies.serde_json]
version = "1.0.47"
optional = true

[dependencies.small_ctor]
version = "0.1.2"
optional = true

[target."cfg(windows)".dependencies.windows]
version = "0.61.3"
features = [
    "Win32_Foundation",
    "Win32_System_Threading",
]