File tree Expand file tree Collapse file tree 1 file changed +41
-0
lines changed Expand file tree Collapse file tree 1 file changed +41
-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 Array, with a focus on minimising allocations to stay close to the reference C++ implementation."
5
+ maintainer: ["Geoffrey Borough <geoffrey.borough@outlook.com>"]
6
+ authors: ["Geoffrey Borough <geoffrey.borough@outlook.com>"]
7
+ license: "MIT"
8
+ tags: ["esa" "tokenizer" "llm" "bioinformatics"]
9
+ homepage: "https://github.com/gborough/esa"
10
+ doc: "https://gborough.github.io/esa/esa"
11
+ bug-reports: "https://github.com/gborough/esa/issues"
12
+ depends: [
13
+ "dune" {>= "2.7"}
14
+ "ocaml" {>= "4.08.0"}
15
+ "ppx_expect" {with-test}
16
+ "odoc" {with-doc}
17
+ ]
18
+ build: [
19
+ ["dune" "subst"] {dev}
20
+ [
21
+ "dune"
22
+ "build"
23
+ "-p"
24
+ name
25
+ "-j"
26
+ jobs
27
+ "@install"
28
+ "@runtest" {with-test}
29
+ "@doc" {with-doc}
30
+ ]
31
+ ]
32
+ dev-repo: "git+https://github.com/gborough/esa.git"
33
+ url {
34
+ src:
35
+ "https://github.com/gborough/esa/releases/download/0.1.1/esa-0.1.1.tbz"
36
+ checksum: [
37
+ "sha256=778ff2fd46a8b5b96cfb17465c48c3cc61c0704f755f90ec8e5bd810de07acbd"
38
+ "sha512=880ce04f4a752ef5219421b5071920f87d22fd10caae2997fa665f4515260e616e255010b9e4ac880e671d5ad192536d8a9b0242c754b1fd131115ec7fa549e5"
39
+ ]
40
+ }
41
+ x-commit-hash: "1681bd302a1f03663725923e0c40fa3ec6da69ba"
You can’t perform that action at this time.
0 commit comments