-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfuzzy_compare.opam
31 lines (27 loc) · 1022 Bytes
/
fuzzy_compare.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
opam-version: "2.0"
maintainer: "Simon Grondin"
authors: [
"Simon Grondin"
]
synopsis: "Fastest bounded Levenshtein comparator over generic structures"
description: """
This library does not calculate the edit distance.
Rather, it provides extremely efficient automata that answer whether 2 values are within a predetermined number of edits of one another. Edits are: additions, deletions, replacements.
Once generated, an automaton can be reused to compare any 2 values in around 2-8 µs.
"""
license: "MIT"
tags: []
homepage: "https://github.com/SGrondin/fuzzy_compare"
dev-repo: "git://github.com/SGrondin/fuzzy_compare"
doc: "https://github.com/SGrondin/fuzzy_compare"
bug-reports: "https://github.com/SGrondin/fuzzy_compare/issues"
depends: [
"ocaml" { >= "4.10.0" }
"dune" { >= "1.9.0" }
"core" { >= "v0.15.0" & < "v0.17.0" }
# "ocamlformat" { = "0.25.1" } # Development
# "ocaml-lsp-server" # Development
"uuseg" { with-test }
"uunf" { with-test }
]
build: ["dune" "build" "-p" name "-j" jobs]