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