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 "jbuilder" {>= "1.0+beta10"} 15 "alcotest" {with-test} 16 "base-bigarray" 17 "ocaml" {>= "4.03.0"} 18] 19depopts: [ 20 "mirage-xen-posix" 21 "ocaml-freestanding" 22] 23conflicts: [ 24 "mirage-xen-posix" {< "3.1.0"} 25 "ocaml-freestanding" {< "0.4.1"} 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: 41 "https://github.com/inhabitedtype/bigstringaf/releases/download/0.4.0/bigstringaf-0.4.0.tbz" 42 checksum: [ 43 "sha256=cdd8073687f56d4d60d71a013b228cf6e05f184a4a93988b3166df5a262fb1c6" 44 "md5=d1ff1ab40aad48627686f9b8c02d985a" 45 ] 46}