1[package] 2name = "shared_child" 3version = "1.0.0" 4authors = ["jacko"] 5license = "MIT" 6repository = "https://github.com/oconnor663/shared_child.rs" 7documentation = "https://docs.rs/shared_child" 8readme = "README.md" 9description = "a library for using child processes from multiple threads" 10keywords = ["command", "process", "child", "subprocess"] 11categories = ["os"] 12edition = "2018" 13 14[target.'cfg(not(windows))'.dependencies] 15libc = "0.2.42" 16 17[target.'cfg(windows)'.dependencies] 18winapi = { version = "0.3.5", features = ["synchapi", "winbase", "winerror", "winnt"] } 19