···11+opam-version: "2.0"
22+maintainer: "Spiros Eliopoulos <spiros@inhabitedtype.com>"
33+authors: [ "Spiros Eliopoulos <spiros@inhabitedtype.com>" ]
44+license: "BSD-3-clause"
55+homepage: "https://github.com/inhabitedtype/bigstringaf"
66+bug-reports: "https://github.com/inhabitedtype/bigstringaf/issues"
77+dev-repo: "git+https://github.com/inhabitedtype/bigstringaf.git"
88+build: [
99+ ["dune" "subst"] {dev}
1010+ [
1111+ "dune"
1212+ "build"
1313+ "-p"
1414+ name
1515+ "-j"
1616+ jobs
1717+ "@install"
1818+ "@runtest" {with-test}
1919+ "@doc" {with-doc}
2020+ ]
2121+]
2222+depends: [
2323+ "dune" {>= "3.0"}
2424+ "dune-configurator" {>= "3.0"}
2525+ "alcotest" {with-test}
2626+ "ocaml" {>= "4.08.0"}
2727+]
2828+conflicts: [
2929+ "mirage-xen" {< "6.0.0"}
3030+ "ocaml-freestanding"
3131+ "js_of_ocaml" {< "3.5.0"}
3232+]
3333+synopsis: "Bigstring intrinsics and fast blits based on memcpy/memmove"
3434+description: """
3535+Bigstring intrinsics and fast blits based on memcpy/memmove
3636+3737+The OCaml compiler has a bunch of intrinsics for Bigstrings, but they're not
3838+widely-known, sometimes misused, and so programs that use Bigstrings are slower
3939+than they have to be. And even if a library got that part right and exposed the
4040+intrinsics properly, the compiler doesn't have any fast blits between
4141+Bigstrings and other string-like types.
4242+4343+So here they are. Go crazy.
4444+"""
4545+url {
4646+ src: "https://github.com/inhabitedtype/bigstringaf/archive/0.10.0.tar.gz"
4747+ checksum: "md5=be0a44416840852777651150757a0a3b"
4848+}