Skip to content

Commit

Permalink
Merge pull request #26555 from seliopou/angstrom.0.16.1
Browse files Browse the repository at this point in the history
+angstrom.0.16.1
  • Loading branch information
avsm authored Sep 13, 2024
2 parents 4093222 + 8632b6b commit 2d4ed1d
Show file tree
Hide file tree
Showing 4 changed files with 115 additions and 0 deletions.
26 changes: 26 additions & 0 deletions packages/angstrom-async/angstrom-async.0.16.1/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
opam-version: "2.0"
maintainer: "Spiros Eliopoulos <[email protected]>"
authors: [ "Spiros Eliopoulos <[email protected]>" ]
license: "BSD-3-clause"
homepage: "https://github.com/inhabitedtype/angstrom"
bug-reports: "https://github.com/inhabitedtype/angstrom/issues"
dev-repo: "git+https://github.com/inhabitedtype/angstrom.git"
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [
"ocaml" {>= "4.04.1"}
"dune" {>= "1.8"}
"angstrom" {>= "0.9.0"}
"async" {>= "v0.10.0"}
]
synopsis: "Async support for Angstrom"
url {
src: "https://github.com/inhabitedtype/angstrom/archive/0.16.1.tar.gz"
checksum: [
"md5=a9e096b4b2b8e4e3bb17d472bbccaad0"
"sha256=143536fb4d049574c539b9990840615e078ed3dd94e1d24888293f68349a100b"
]
}
27 changes: 27 additions & 0 deletions packages/angstrom-lwt-unix/angstrom-lwt-unix.0.16.1/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
opam-version: "2.0"
maintainer: "Spiros Eliopoulos <[email protected]>"
authors: [ "Spiros Eliopoulos <[email protected]>" ]
license: "BSD-3-clause"
homepage: "https://github.com/inhabitedtype/angstrom"
bug-reports: "https://github.com/inhabitedtype/angstrom/issues"
dev-repo: "git+https://github.com/inhabitedtype/angstrom.git"
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [
"ocaml" {>= "4.03.0"}
"dune" {>= "1.8"}
"angstrom"
"lwt"
"base-unix"
]
synopsis: "Lwt_unix support for Angstrom"
url {
src: "https://github.com/inhabitedtype/angstrom/archive/0.16.1.tar.gz"
checksum: [
"md5=a9e096b4b2b8e4e3bb17d472bbccaad0"
"sha256=143536fb4d049574c539b9990840615e078ed3dd94e1d24888293f68349a100b"
]
}
26 changes: 26 additions & 0 deletions packages/angstrom-unix/angstrom-unix.0.16.1/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
opam-version: "2.0"
maintainer: "Spiros Eliopoulos <[email protected]>"
authors: [ "Spiros Eliopoulos <[email protected]>" ]
license: "BSD-3-clause"
homepage: "https://github.com/inhabitedtype/angstrom"
bug-reports: "https://github.com/inhabitedtype/angstrom/issues"
dev-repo: "git+https://github.com/inhabitedtype/angstrom.git"
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [
"ocaml" {>= "4.03.0"}
"dune" {>= "1.8"}
"angstrom"
"base-unix"
]
synopsis: "Unix support for Angstrom"
url {
src: "https://github.com/inhabitedtype/angstrom/archive/0.16.1.tar.gz"
checksum: [
"md5=a9e096b4b2b8e4e3bb17d472bbccaad0"
"sha256=143536fb4d049574c539b9990840615e078ed3dd94e1d24888293f68349a100b"
]
}
36 changes: 36 additions & 0 deletions packages/angstrom/angstrom.0.16.1/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
opam-version: "2.0"
maintainer: "Spiros Eliopoulos <[email protected]>"
authors: [ "Spiros Eliopoulos <[email protected]>" ]
license: "BSD-3-clause"
homepage: "https://github.com/inhabitedtype/angstrom"
bug-reports: "https://github.com/inhabitedtype/angstrom/issues"
dev-repo: "git+https://github.com/inhabitedtype/angstrom.git"
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [
"ocaml" {>= "4.04.0"}
"dune" {>= "1.8"}
"alcotest" {with-test & >= "0.8.1"}
"bigstringaf"
"ppx_let" {with-test & >= "v0.14.0"}
"ocaml-syntax-shims" {build}
]
synopsis: "Parser combinators built for speed and memory-efficiency"
description: """
Angstrom is a parser-combinator library that makes it easy to write efficient,
expressive, and reusable parsers suitable for high-performance applications. It
exposes monadic and applicative interfaces for composition, and supports
incremental input through buffered and unbuffered interfaces. Both interfaces
give the user total control over the blocking behavior of their application,
with the unbuffered interface enabling zero-copy IO. Parsers are backtracking by
default and support unbounded lookahead."""
url {
src: "https://github.com/inhabitedtype/angstrom/archive/0.16.1.tar.gz"
checksum: [
"md5=a9e096b4b2b8e4e3bb17d472bbccaad0"
"sha256=143536fb4d049574c539b9990840615e078ed3dd94e1d24888293f68349a100b"
]
}

0 comments on commit 2d4ed1d

Please sign in to comment.