-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
opam-version: "2.0" | ||
maintainer: "Spiros Eliopoulos <spiros@inhabitedtype.com>" | ||
authors: [ "Spiros Eliopoulos <spiros@inhabitedtype.com>" ] | ||
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" "build" "-p" "angstrom" "-j" jobs "-x" "windows"] | ||
] | ||
depends: [ | ||
"ocaml-windows" {>= "4.04.0"} | ||
"dune" {>= "1.8"} | ||
"bigstringaf-windows" | ||
"result-windows" | ||
"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.15.0.tar.gz" | ||
checksum: "md5=5104768c404ea92fd0a53a5b0f75cd50" | ||
} |