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] 19synopsis: "Bigstring intrinsics and fast blits based on memcpy/memmove" 20description: """ 21The OCaml compiler has a bunch of intrinsics for Bigstrings, but they're not 22widely-known, sometimes misused, and so programs that use Bigstrings are slower 23than they have to be. And even if a library got that part right and exposed the 24intrinsics properly, the compiler doesn't have any fast blits between 25Bigstrings and other string-like types. 26 27So here they are. Go crazy.""" 28url { 29 src: "https://github.com/inhabitedtype/bigstringaf/archive/0.2.0.tar.gz" 30 checksum: [ 31 "sha256=98102997fbb3acc8f70fbfb4fb864a5bcc8964ab605d115307f1e6c49334fac8" 32 "md5=0a11da7f731b14fae193244d590a22f5" 33 ] 34}