this repo has no description
1opam-version: "2.0" 2authors: "Vincent Bernardoff <vb@luminar.eu.org>" 3maintainer: "Vincent Bernardoff <vb@luminar.eu.org>" 4homepage: "https://github.com/vbmithr/async-uri" 5bug-reports: "https://github.com/vbmithr/async-uri/issues" 6dev-repo: "git+https://github.com/vbmithr/async-uri" 7doc: "https://vbmithr.github.io/async-uri/doc" 8build: [ "dune" "build" "-j" jobs "-p" name ] 9run-test: [ "dune" "runtest" "-j" jobs "-p" name ] 10depends: [ 11 "ocaml" {>= "4.08.0"} 12 "dune" {>= "1.11.4"} 13 "uri-sexp" {>= "3.1.0"} 14 "core" {>= "v0.13.0" & < "v0.15"} 15 "async" {>= "v0.13.0" & < "v0.15"} 16 "async_ssl" {>= "v0.13.0" & < "v0.15"} 17] 18synopsis: "Open Async (TLS) TCP connections with Uri.t" 19description: """Simple wrapper to the Async's Tcp module to open 20connections from URLs. If the URL scheme is detected to require TLS, 21TLS will be used.""" 22url { 23 src: 24 "https://github.com/vbmithr/async-uri/releases/download/0.2.1/async-uri-0.2.1.tbz" 25 checksum: [ 26 "sha256=6927c52fc4b2910e11561fbfc7becafa45856e4a75fcd8ab849ca40b8918185d" 27 "sha512=87efdb41381b94aff16d591ef68b7e91bd5ae7a278c22da1f07a2a2890c99437729b424cbeacc10167ec2e08d9fb5aa8c06ac35714655ab7e24a261799a1a785" 28 ] 29}