this repo has no description
1opam-version: "2.0"
2maintainer: "Spiros Eliopoulos <spiros@inhabitedtype.com>"
3authors: [ "Spiros Eliopoulos <spiros@inhabitedtype.com>" ]
4license: "BSD-3-Clause"
5homepage: "https://github.com/inhabitedtype/bigstringaf"
6bug-reports: "https://github.com/inhabitedtype/bigstringaf/issues"
7dev-repo: "git+https://github.com/inhabitedtype/bigstringaf.git"
8build: [
9 ["jbuilder" "subst" "-p" name] {dev}
10 ["jbuilder" "build" "-p" name "-j" jobs]
11 ["jbuilder" "runtest" "-p" name] {with-test}
12]
13depends: [
14 "ocaml" {>= "4.03.0"}
15 "jbuilder" {>= "1.0+beta10"}
16 "alcotest" {with-test}
17 "base-bigarray"
18]
19depopts: [
20 "mirage-xen"
21 "ocaml-freestanding"
22]
23synopsis: "Bigstring intrinsics and fast blits based on memcpy/memmove"
24description: """
25The OCaml compiler has a bunch of intrinsics for Bigstrings, but they're not
26widely-known, sometimes misused, and so programs that use Bigstrings are slower
27than they have to be. And even if a library got that part right and exposed the
28intrinsics properly, the compiler doesn't have any fast blits between
29Bigstrings and other string-like types.
30
31So here they are. Go crazy."""
32url {
33 src: "https://github.com/inhabitedtype/bigstringaf/archive/0.3.0.tar.gz"
34 checksum: [
35 "sha256=cfaadf09e2ed9dc04a7c6cd55386ea2ca0f0296ad6d8b5777ff65b4bda7499d5"
36 "md5=739a2006067d7432743f777d7f5afcfd"
37 ]
38}
39conflicts: [
40 "mirage-xen" {>= "6.0.0"}
41]