this repo has no description
1opam-version: "2.0"
2synopsis: "Pure-OCaml diff implementation"
3description: """
4This is a pure-OCaml implementation for computing line-by-line diffs.
5The current implementation uses an algorithm similar to gestalt pattern
6matching ported to OCaml by Gabriel Jaldon from Paul Butler's
7Python implementation.
8See https://github.com/paulgb/simplediff"""
9maintainer: ["Martin Jambon <martin@semgrep.com>"]
10authors: ["Martin Jambon" "Gabriel Jaldon"]
11license: "ISC"
12homepage: "https://github.com/semgrep/testo"
13bug-reports: "https://github.com/semgrep/testo/issues"
14depends: [
15 "dune" {>= "3.7"}
16 "ocaml" {>= "4.08.0"}
17 "odoc" {with-doc}
18]
19build: [
20 ["dune" "subst"] {dev}
21 [
22 "dune"
23 "build"
24 "-p"
25 name
26 "-j"
27 jobs
28 "@install"
29 "@runtest" {with-test}
30 "@doc" {with-doc}
31 ]
32]
33dev-repo: "git+https://github.com/semgrep/testo.git"
34url {
35 src:
36 "https://github.com/semgrep/testo/releases/download/0.1.0/testo-0.1.0.tbz"
37 checksum: [
38 "sha256=a156a3ac637e09e57c44a92f4f10723d2f509d237105b10a0120fca3447887b6"
39 "sha512=f236afc247af23d55ca38a4611206d3daab5ef463bbea3ab07ecec6196bd92a53f7e997d348f40534911641558383d8c85ac2ab7607514dd6b90835c8e3f7294"
40 ]
41}
42x-commit-hash: "76de74b853b5735d01c4903b4a45c1d44f0f470d"