this repo has no description
1opam-version: "2.0"
2synopsis: "Wu-Manber approximate string matching"
3description: """
4A Pure OCaml implementation of the Wu Manber approximate string matching
5algorithm for short patterns.
6"""
7maintainer: ["Ifaz Kabir"]
8authors: ["Ifaz Kabir"]
9license: "CC0-1.0"
10tags: [
11 "wu-manber"
12 "baeza-yates-gonnet"
13 "bitap"
14 "algorithm"
15 "levenshtein"
16 "demarau-levenshtein"
17 "edit"
18 "distance"
19 "approximate"
20 "fuzzy"
21 "string"
22 "search"
23 "matching"
24]
25homepage: "https://github.com/ifazk/wu-manber-fuzzy-search"
26doc: "https://ifazk.github.io/wu-manber-fuzzy-search/"
27bug-reports: "https://github.com/ifazk/wu-manber-fuzzy-search/issues"
28depends: [
29 "dune" {>= "2.8"}
30 "ocaml" {>= "4.10.0"}
31 "optint" {>= "0.1.0"}
32 "pp-binary-ints" {>= "1.0.0" & with-test}
33 "odoc" {with-doc}
34]
35build: [
36 ["dune" "subst"] {dev}
37 [
38 "dune"
39 "build"
40 "-p"
41 name
42 "-j"
43 jobs
44 "@install"
45 "@runtest" {with-test}
46 "@doc" {with-doc}
47 ]
48]
49dev-repo: "git+https://github.com/ifazk/wu-manber-fuzzy-search.git"
50url {
51 src:
52 "https://github.com/ifazk/wu-manber-fuzzy-search/releases/download/0.1.0/wu-manber-fuzzy-search-0.1.0.tbz"
53 checksum: [
54 "sha256=6383ed484151c85bd4de90592391d9117c9ea03eddc04bef0af5cfe57b25f56f"
55 "sha512=6d6aae059225726a24ad44eb1a47d90507d9c9a429be41a9c577baf01d29c63d7dd3bc5767602cc4dfb21d28f296ea4000f7a9b91a3e50740c85b02771f66a95"
56 ]
57}
58x-commit-hash: "b1639c10902d17f081c2d13e613b2aaa284d7c79"