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/angstrom" 6bug-reports: "https://github.com/inhabitedtype/angstrom/issues" 7dev-repo: "git+https://github.com/inhabitedtype/angstrom.git" 8build: [ 9 ["dune" "subst"] {dev} 10 ["dune" "build" "-p" name "-j" jobs] 11 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 12] 13depends: [ 14 "ocaml" {>= "4.04.0"} 15 "dune" {>= "1.8"} 16 "alcotest" {with-test & >= "0.8.1"} 17 "bigstringaf" 18 "ppx_let" {with-test & >= "v0.14.0"} 19 "ocaml-syntax-shims" {build} 20] 21synopsis: "Parser combinators built for speed and memory-efficiency" 22description: """ 23Angstrom is a parser-combinator library that makes it easy to write efficient, 24expressive, and reusable parsers suitable for high-performance applications. It 25exposes monadic and applicative interfaces for composition, and supports 26incremental input through buffered and unbuffered interfaces. Both interfaces 27give the user total control over the blocking behavior of their application, 28with the unbuffered interface enabling zero-copy IO. Parsers are backtracking by 29default and support unbounded lookahead.""" 30url { 31 src: "https://github.com/inhabitedtype/angstrom/archive/0.16.0.tar.gz" 32 checksum: [ 33 "sha256=47810bd31306d57c0ac83eb3f95b1cb6f8bdda99457aa6e6bcd02f6ddb8410f0" 34 "md5=58ebc718a920c31ec3eb38f4aa1bea51" 35 ] 36}