File tree Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "Enhanced Suffix Array"
3+ description: """
4+ Pure OCaml implementation of Enhanced Suffix Arrays,
5+ with a focus on minimizing allocations to stay close
6+ to the reference C++ implementation.
7+ """
8+ maintainer: ["Geoffrey Borough <
[email protected] >"]
9+ authors: ["Geoffrey Borough <
[email protected] >"]
10+ license: "MIT"
11+ tags: ["esa" "tokenizer" "llm" "bioinformatics"]
12+ homepage: "https://github.com/gborough/esa"
13+ doc: "https://gborough.github.io/esa/esa"
14+ bug-reports: "https://github.com/gborough/esa/issues"
15+ depends: [
16+ "dune" {>= "2.7"}
17+ "ocaml" {>= "4.08.0"}
18+ "ppx_expect" {with-test}
19+ "odoc" {with-doc}
20+ ]
21+ build: [
22+ ["dune" "subst"] {dev}
23+ [
24+ "dune"
25+ "build"
26+ "-p"
27+ name
28+ "-j"
29+ jobs
30+ "@install"
31+ "@runtest" {with-test}
32+ "@doc" {with-doc}
33+ ]
34+ ]
35+ dev-repo: "git+https://github.com/gborough/esa.git"
36+ url {
37+ src:
38+ "https://github.com/gborough/esa/releases/download/0.1.0/esa-0.1.0.tbz"
39+ checksum: [
40+ "sha256=f0b0d702449681de78cbb18d9d1af9d74666a2fe62799c1e20dc37bc3fb4a3bd"
41+ "sha512=c0d893626202f2f24abb77f3c2fe5cb862f5afa4394df02ff47d2fb5d0d7ca74b2ca8f9421c7d7cfcf55142a757c8b65992df68ede708bc62dee2901187b80e9"
42+ ]
43+ }
44+ x-commit-hash: "4f8ab37567a4ad30c61c778baa529f8e1942f4e8"
You can’t perform that action at this time.
0 commit comments