diff options
author | Santo Cariotti <santo@dcariotti.me> | 2023-10-15 18:27:15 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2023-10-15 18:27:15 +0200 |
commit | 36fc4e67d4b8c23d726234f34113ae518d4a12e7 (patch) | |
tree | 03eaa77ede1d6c33a5019a2b6f6a853f93439a80 /Cargo.lock | |
parent | 0bfaadf339bd263c9458e827819e39b10bd925ed (diff) |
Add multiprocessing
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -115,6 +115,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" [[package]] +name = "fork" +version = "0.1.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf2ca97a59201425e7ee4d197c9c4fea282fe87a97d666a580bda889b95b8e88" +dependencies = [ + "libc", +] + +[[package]] name = "heck" version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -161,6 +170,7 @@ version = "0.0.1" dependencies = [ "anyhow", "clap", + "fork", "nix", ] |