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 ["dune" "subst"] {dev} 10 ["dune" "build" "-p" name "-j" jobs] 11 ["dune" "runtest" "-p" name] {with-test & arch != "x86_32" & arch != "arm32"} 12] 13depends: [ 14 "dune" {>= "2.6.0"} 15 "alcotest" {with-test} 16 "ocaml" {>= "4.08.0"} 17 "conf-pkg-config" {build} 18] 19depopts: [ 20 "ocaml-freestanding" 21] 22conflicts: [ 23 "mirage-xen" {< "6.0.0"} 24 "ocaml-freestanding" {< "0.4.1"} 25 "js_of_ocaml" {< "3.5.0"} 26] 27synopsis: "Bigstring intrinsics and fast blits based on memcpy/memmove" 28description: """ 29Bigstring intrinsics and fast blits based on memcpy/memmove 30 31The OCaml compiler has a bunch of intrinsics for Bigstrings, but they're not 32widely-known, sometimes misused, and so programs that use Bigstrings are slower 33than they have to be. And even if a library got that part right and exposed the 34intrinsics properly, the compiler doesn't have any fast blits between 35Bigstrings and other string-like types. 36 37So here they are. Go crazy. 38""" 39url { 40 src: "https://github.com/inhabitedtype/bigstringaf/archive/0.9.0.tar.gz" 41 checksum: [ 42 "sha256=543386c79aa6542e9c92cb19e45987bc05b9fb1f84707ec4320b24037202106c" 43 "md5=0d8ceddeb7db821fd4e5235a75ae9752" 44 ] 45}