this repo has no description
1opam-version: "2.0"
2synopsis: "A regular expression toolkit for OCaml"
3description:
4 "Provides data structures and algorithms for Regular Expressions, Deterministic Finite Automata, and Non-Deterministic Finite Automata"
5maintainer: ["Dominic Too"]
6authors: ["Dominic Too"]
7license: "GPL-3.0-or-later"
8tags: [
9 "automata"
10 "regular expressions"
11 "regular languages"
12 "regex"
13 "library"
14 "DFA"
15 "NFA"
16 "RE"
17]
18homepage: "https://github.com/toodom02/ocamlregextkit"
19doc: "https://toodom02.github.io/ocamlregextkit/"
20bug-reports: "https://github.com/toodom02/ocamlregextkit/issues"
21depends: [
22 "ocaml" {>= "4.14"}
23 "dune" {>= "3.4"}
24 "odoc" {with-doc}
25]
26build: [
27 ["dune" "subst"] {dev}
28 [
29 "dune"
30 "build"
31 "-p"
32 name
33 "-j"
34 jobs
35 "@install"
36 "@runtest" {with-test}
37 "@doc" {with-doc}
38 ]
39]
40dev-repo: "git+https://github.com/toodom02/ocamlregextkit.git"
41url {
42 src:
43 "https://github.com/toodom02/ocamlregextkit/releases/download/v0.2.0/ocamlregextkit-0.2.0.tbz"
44 checksum: [
45 "sha256=6747cd6898803b73988f0d5fb71945e2196744c6ac87f4f5987e0bd192d2397e"
46 "sha512=e3904d2171ef09e6fb64665dc6752e8d70c4ef0d6fd8a360aae3006dc6df6ec90893cbb5f1a7aa15f4d2731f61a06fbdcc8f64ceadd677b26fb54b8d9a7d8ea9"
47 ]
48}
49x-commit-hash: "1ba07bbd331a11b9cd78a45e8df98d41c7437ff4"