this repo has no description
1opam-version: "2.0" 2maintainer: "James Owen <jamesowen@outlook.com>" 3homepage: "https://github.com/cryptosense/ocaml-stitch" 4bug-reports: "https://github.com/cryptosense/ocaml-stitch/issues" 5license: "BSD-2-Clause" 6dev-repo: "git+https://github.com/cryptosense/ocaml-stitch.git" 7doc: "https://cryptosense.github.io/ocaml-stitch/doc" 8build: [ 9 [ "dune" "build" "-p" name "-j" jobs ] 10] 11run-test: [ 12 [ "dune" "runtest" "-p" name "-j" jobs ] 13] 14depends: [ 15 "containers" {>= "0.16"} 16 "dune" {>= "1.1.0"} 17 "ocaml" {>= "4.05.0"} 18 "ounit" {>= "2.0.0"} 19 "ppx_deriving" 20 "ppx_deriving_yojson" 21 "yojson" {< "2.0.0"} 22] 23tags: ["org:cryptosense"] 24synopsis: "Refactoring framework" 25description: """ 26stitch is a framework to record calls in existing code and replay them as characterization tests 27to help refactoring of legacy code. 28 29The name stitch comes from [Ruby's Suture gem](https://github.com/testdouble/suture) from which 30it's inspired. 31""" 32authors: "Nathan Rebours <nathan.p.rebours@gmail.com>" 33url { 34 src: 35 "https://github.com/cryptosense/ocaml-stitch/releases/download/v0.0.0/stitch-v0.0.0.tbz" 36 checksum: [ 37 "sha256=bea7f431c7290a54dc66e99270e19ada08f161d628d3123b41334fd20484274b" 38 "md5=f5520a056513c8af7c5d781ecc92a77b" 39 ] 40}