this repo has no description
1opam-version: "2.0" 2maintainer: "stephen.dolan@cl.cam.ac.uk" 3authors: ["Stephen Dolan"] 4homepage: "https://github.com/stedolan/ocaml-afl-persistent" 5bug-reports: "https://github.com/stedolan/ocaml-afl-persistent/issues" 6dev-repo: "git+https://github.com/stedolan/ocaml-afl-persistent.git" 7license: "MIT" 8build: 9[[ "ocaml" "pkg/pkg.ml" "build" 10 "--pinned" "%{pinned}%"]] 11depends: [ 12 "ocaml" {>= "4.05"} 13 "topkg" {build & >= "0.7.6"} 14 "base-unix" 15] 16conflicts: [ 17 "ocaml-option-bytecode-only" 18] 19synopsis: "use afl-fuzz in persistent mode" 20description: """ 21afl-fuzz normally works by repeatedly fork()ing the program being 22tested. using this package, you can run afl-fuzz in 'persistent mode', 23which avoids repeated forking and is much faster.""" 24url { 25 src: "https://github.com/stedolan/ocaml-afl-persistent/archive/v1.1.tar.gz" 26 checksum: [ 27 "sha256=e30e2a7c9c0972fc2f953c42720b7d7865775330c14de97d3fe7097ab3be154f" 28 "md5=5aee7d5233c99a73a6344bf0451d0618" 29 ] 30}