this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #26555 from seliopou/angstrom.0.16.1

+angstrom.0.16.1

authored by

Anil Madhavapeddy and committed by
GitHub
2d4ed1d3 4093222d

+115
+26
packages/angstrom-async/angstrom-async.0.16.1/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "Spiros Eliopoulos <spiros@inhabitedtype.com>" 3 + authors: [ "Spiros Eliopoulos <spiros@inhabitedtype.com>" ] 4 + license: "BSD-3-clause" 5 + homepage: "https://github.com/inhabitedtype/angstrom" 6 + bug-reports: "https://github.com/inhabitedtype/angstrom/issues" 7 + dev-repo: "git+https://github.com/inhabitedtype/angstrom.git" 8 + build: [ 9 + ["dune" "subst"] {dev} 10 + ["dune" "build" "-p" name "-j" jobs] 11 + ["dune" "runtest" "-p" name "-j" jobs] {with-test} 12 + ] 13 + depends: [ 14 + "ocaml" {>= "4.04.1"} 15 + "dune" {>= "1.8"} 16 + "angstrom" {>= "0.9.0"} 17 + "async" {>= "v0.10.0"} 18 + ] 19 + synopsis: "Async support for Angstrom" 20 + url { 21 + src: "https://github.com/inhabitedtype/angstrom/archive/0.16.1.tar.gz" 22 + checksum: [ 23 + "md5=a9e096b4b2b8e4e3bb17d472bbccaad0" 24 + "sha256=143536fb4d049574c539b9990840615e078ed3dd94e1d24888293f68349a100b" 25 + ] 26 + }
+27
packages/angstrom-lwt-unix/angstrom-lwt-unix.0.16.1/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "Spiros Eliopoulos <spiros@inhabitedtype.com>" 3 + authors: [ "Spiros Eliopoulos <spiros@inhabitedtype.com>" ] 4 + license: "BSD-3-clause" 5 + homepage: "https://github.com/inhabitedtype/angstrom" 6 + bug-reports: "https://github.com/inhabitedtype/angstrom/issues" 7 + dev-repo: "git+https://github.com/inhabitedtype/angstrom.git" 8 + build: [ 9 + ["dune" "subst"] {dev} 10 + ["dune" "build" "-p" name "-j" jobs] 11 + ["dune" "runtest" "-p" name "-j" jobs] {with-test} 12 + ] 13 + depends: [ 14 + "ocaml" {>= "4.03.0"} 15 + "dune" {>= "1.8"} 16 + "angstrom" 17 + "lwt" 18 + "base-unix" 19 + ] 20 + synopsis: "Lwt_unix support for Angstrom" 21 + url { 22 + src: "https://github.com/inhabitedtype/angstrom/archive/0.16.1.tar.gz" 23 + checksum: [ 24 + "md5=a9e096b4b2b8e4e3bb17d472bbccaad0" 25 + "sha256=143536fb4d049574c539b9990840615e078ed3dd94e1d24888293f68349a100b" 26 + ] 27 + }
+26
packages/angstrom-unix/angstrom-unix.0.16.1/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "Spiros Eliopoulos <spiros@inhabitedtype.com>" 3 + authors: [ "Spiros Eliopoulos <spiros@inhabitedtype.com>" ] 4 + license: "BSD-3-clause" 5 + homepage: "https://github.com/inhabitedtype/angstrom" 6 + bug-reports: "https://github.com/inhabitedtype/angstrom/issues" 7 + dev-repo: "git+https://github.com/inhabitedtype/angstrom.git" 8 + build: [ 9 + ["dune" "subst"] {dev} 10 + ["dune" "build" "-p" name "-j" jobs] 11 + ["dune" "runtest" "-p" name "-j" jobs] {with-test} 12 + ] 13 + depends: [ 14 + "ocaml" {>= "4.03.0"} 15 + "dune" {>= "1.8"} 16 + "angstrom" 17 + "base-unix" 18 + ] 19 + synopsis: "Unix support for Angstrom" 20 + url { 21 + src: "https://github.com/inhabitedtype/angstrom/archive/0.16.1.tar.gz" 22 + checksum: [ 23 + "md5=a9e096b4b2b8e4e3bb17d472bbccaad0" 24 + "sha256=143536fb4d049574c539b9990840615e078ed3dd94e1d24888293f68349a100b" 25 + ] 26 + }
+36
packages/angstrom/angstrom.0.16.1/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "Spiros Eliopoulos <spiros@inhabitedtype.com>" 3 + authors: [ "Spiros Eliopoulos <spiros@inhabitedtype.com>" ] 4 + license: "BSD-3-clause" 5 + homepage: "https://github.com/inhabitedtype/angstrom" 6 + bug-reports: "https://github.com/inhabitedtype/angstrom/issues" 7 + dev-repo: "git+https://github.com/inhabitedtype/angstrom.git" 8 + build: [ 9 + ["dune" "subst"] {dev} 10 + ["dune" "build" "-p" name "-j" jobs] 11 + ["dune" "runtest" "-p" name "-j" jobs] {with-test} 12 + ] 13 + depends: [ 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 + ] 21 + synopsis: "Parser combinators built for speed and memory-efficiency" 22 + description: """ 23 + Angstrom is a parser-combinator library that makes it easy to write efficient, 24 + expressive, and reusable parsers suitable for high-performance applications. It 25 + exposes monadic and applicative interfaces for composition, and supports 26 + incremental input through buffered and unbuffered interfaces. Both interfaces 27 + give the user total control over the blocking behavior of their application, 28 + with the unbuffered interface enabling zero-copy IO. Parsers are backtracking by 29 + default and support unbounded lookahead.""" 30 + url { 31 + src: "https://github.com/inhabitedtype/angstrom/archive/0.16.1.tar.gz" 32 + checksum: [ 33 + "md5=a9e096b4b2b8e4e3bb17d472bbccaad0" 34 + "sha256=143536fb4d049574c539b9990840615e078ed3dd94e1d24888293f68349a100b" 35 + ] 36 + }