this repo has no description
1opam-version: "2.0" 2synopsis: "Spawning sub-processes" 3description: """ 4Spawn is a small library exposing only one functionality: spawning sub-process. 5 6It has three main goals: 7 81. provide missing features of Unix.create_process such as providing a 9working directory 10 112. provide better errors when a system call fails in the 12sub-process. For instance if a command is not found, you get a proper 13[Unix.Unix_error] exception 14 153. improve performance by using vfork when available. It is often 16claimed that nowadays fork is as fast as vfork, however in practice 17fork takes time proportional to the process memory while vfork is 18constant time. In application using a lot of memory, vfork can be 19thousands of times faster than fork. 20""" 21maintainer: ["Jane Street developers"] 22authors: ["Jane Street Group, LLC"] 23license: "MIT" 24homepage: "https://github.com/janestreet/spawn" 25doc: "https://janestreet.github.io/spawn/" 26bug-reports: "https://github.com/janestreet/spawn/issues" 27depends: [ 28 "dune" {>= "2.8"} 29 "ppx_expect" {with-test} 30 "ocaml" {>= "4.05"} 31 "odoc" {with-doc} 32] 33build: [ 34 ["dune" "subst"] {dev} 35 [ 36 "dune" 37 "build" 38 "-p" 39 name 40 "-j" 41 jobs 42 "@install" 43 "@runtest" {with-test} 44 "@doc" {with-doc} 45 ] 46] 47dev-repo: "git+https://github.com/janestreet/spawn.git" 48x-commit-hash: "b5a25cab2f53a5ee9e10a7b8a96506cc61ce1198" 49url { 50 src: 51 "https://github.com/janestreet/spawn/archive/v0.15.0.tar.gz" 52 checksum: [ 53 "sha256=310fb2a50ac7f64c738182cbabd9d27c1aeae1a08107fe14da8d35a87cbb57c7" 54 "sha512=3a775b57a73efee6adbc30b32fa779f27d11c7008a46f90fdb9da6288533e2d83fc49dbcd770c087f2e4560c5586ff72a9a2985d8929955773cc10d83f126013" 55 ] 56}