this repo has no description
1opam-version: "2.0"
2synopsis: "Fuzzy string searching, using Levenshtein automaton"
3maintainer: "simon.cruanes.2007@m4x.org"
4authors: "simon.cruanes.2007@m4x.org"
5tags: ["spell" "levenshtein" "automaton" "typo" "edit" "distance"]
6homepage: "https://github.com/c-cube/spelll"
7doc: "http://c-cube.github.io/spelll/"
8bug-reports: "https://github.com/c-cube/spelll/issues"
9depends: [
10 "dune" {>= "1.1" & < "3.0"}
11 "base-bytes"
12 "seq"
13 "qcheck" {with-test & >= "0.6"}
14 "mdx" {with-test}
15 "odoc" {with-doc}
16]
17build: [
18 ["dune" "build" "@install" "-p" name "-j" jobs]
19 ["dune" "runtest" "-p" name "-j" jobs] {with-test & ocaml:version > "4.02.3" }
20 ["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc}
21]
22dev-repo: "git+https://github.com/c-cube/spelll"
23url {
24 src: "https://github.com/c-cube/spelll/archive/v0.3.tar.gz"
25 checksum: [
26 "md5=d07f33370540c0fe0ba3c8e0112299cf"
27 "sha512=5ba25cf300538bcb27bd63f272f001114b0f07a7fe45d287d33d13261d6c366ee59f897867d76fcabc898efd7ac400b598cb445f11051db7cb1448448f3a4020"
28 ]
29}