this repo has no description
1opam-version: "2.0"
2maintainer: "anil@recoil.org"
3authors: ["Anil Madhavapeddy" "David Sheets" "Rudi Grinberg"]
4license: "ISC"
5tags: ["url" "uri" "org:mirage" "org:xapi-project"]
6homepage: "https://github.com/mirage/ocaml-uri"
7bug-reports: "https://github.com/mirage/ocaml-uri/issues"
8dev-repo: "git+https://github.com/mirage/ocaml-uri.git"
9doc: "https://mirage.github.io/ocaml-uri/"
10synopsis: "An RFC3986 URI/URL parsing library"
11description: """
12This is an OCaml implementation of the [RFC3986](http://tools.ietf.org/html/rfc3986) specification
13for parsing URI or URLs.
14"""
15depends: [
16 "ocaml" {>= "4.04.0"}
17 "dune" {>= "1.2.0"}
18 "ounit" {with-test & >= "1.0.2"}
19 "ppx_sexp_conv" {build & >= "v0.9.0"}
20 "re" {>= "1.9.0"}
21 "sexplib0" {< "v0.15"}
22 "stringext" {>= "1.4.0"}
23]
24build: [
25 ["dune" "subst"] {dev}
26 ["dune" "build" "-p" name "-j" "1"] # Does not support parallel build
27 ["dune" "runtest" "-p" name "-j" "1"] {with-test}
28]
29url {
30 src:
31 "https://github.com/mirage/ocaml-uri/releases/download/v2.2.1/uri-v2.2.1.tbz"
32 checksum: [
33 "sha256=f6348edbae9b9011b3f65e85e775f2cf7b87735c5ceb54d6962377daec3bf56b"
34 "sha512=28a4a659695d5d02f8a1b2965cbb05bc864bea5576c447707bb7db0e7411cafc78323ba6729e32b8b31fdc24a53e906274812d377e62829ebc9ebd6602331176"
35 ]
36}