Skip to content

Commit fe12386

Browse files
authored
Merge pull request #28158 from Axons-Talent/release-esa-0.1.0
[new release] esa (0.1.0)
2 parents 5ac9f41 + 0274bdf commit fe12386

File tree

1 file changed

+44
-0
lines changed
  • packages/esa/esa.0.1.0

1 file changed

+44
-0
lines changed

packages/esa/esa.0.1.0/opam

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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"

0 commit comments

Comments
 (0)