#clone #command #serde

clonable-command

An std::process::Command that implements Clone and serde::*

2 unstable releases

0.2.0 Mar 23, 2024
0.1.0 Nov 10, 2023

#711 in Encoding

Download history 2/week @ 2024-02-13 15/week @ 2024-02-20 11/week @ 2024-02-27 1/week @ 2024-03-05 3/week @ 2024-03-12 142/week @ 2024-03-19 9/week @ 2024-03-26 27/week @ 2024-04-02

182 downloads per month

MIT/Apache

14KB
201 lines

clonable-command

CI Status Crates.io Docs.rs Documentation for main

Clonable, inspectable and serilizable version of std::process::Command.


lib.rs:

Anoyingly, std::process::Command does not implement Clone.

This is due to std::process::Command containing fields (like file handles for stdin/stdout) that cannot easily be cloned (see rust-lang/rust#22119).

Dependencies

~180KB