forked from inhabitedtype/bigstringaf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bigstringaf_simd.opam
33 lines (33 loc) · 954 Bytes
/
bigstringaf_simd.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
32
33
opam-version: "2.0"
maintainer: "Anmol Sahoo <[email protected]>"
authors: [ "Spiros Eliopoulos <[email protected]>" ]
license: "BSD-3-clause"
homepage: "https://github.com/anmolsahoo25/bigstringaf_simd"
bug-reports: "https://github.com/anmolsahoo25/bigstringaf_simd/issues"
dev-repo: "git+https://github.com/anmolsahoo25/bigstringaf_simd.git"
build: [
["dune" "subst"] {pinned}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name] {with-test}
]
depends: [
"dune" {build}
"alcotest" {with-test}
"bigarray-compat"
"ocaml" {>= "4.03.0"}
]
depopts: [
"mirage-xen-posix"
"ocaml-freestanding"
]
conflicts: [
"mirage-xen-posix" {< "3.1.0"}
"ocaml-freestanding" {< "0.4.1"}
"js_of_ocaml" {< "3.5.0"}
]
synopsis: "Bigstrings with SIMD operations"
description: """
Bigstringaf is a library providing fast intrinsics and blits
for OCaml bigstrings. This library adds support for SIMD operations
on bigstrings.
"""