this repo has no description
1opam-version: "2.0"
2synopsis: "Open Async (TLS) TCP connections with Uri.t"
3description: """
4Simple wrapper to the Async's Tcp module to
5open connections from URLs. If the URL scheme is detected to require
6TLS, TLS will be used."""
7maintainer: ["Vincent Bernardoff <vb@luminar.eu.org>"]
8authors: ["Vincent Bernardoff <vb@luminar.eu.org>"]
9license: "ISC"
10tags: ["async" "uri" "tls" "ssl"]
11homepage: "https://github.com/vbmithr/async-uri"
12doc: "https://vbmithr.github.io/async-uri"
13bug-reports: "https://github.com/vbmithr/async-uri/issues"
14depends: [
15 "ocaml"
16 "dune" {>= "3.10"}
17 "uri-sexp"
18 "core" {>= "v0.16"}
19 "async" {>= "v0.16"}
20 "async_ssl" {>= "v0.16"}
21 "odoc" {with-doc}
22]
23build: [
24 ["dune" "subst"] {dev}
25 [
26 "dune"
27 "build"
28 "-p"
29 name
30 "-j"
31 jobs
32 "@install"
33 "@runtest" {with-test}
34 "@doc" {with-doc}
35 ]
36]
37dev-repo: "git+https://github.com/vbmithr/async-uri.git"
38url {
39 src:
40 "https://github.com/vbmithr/async-uri/releases/download/0.4.0/async-uri-0.4.0.tbz"
41 checksum: [
42 "sha256=402f5a7f03754bf68d136c6dc2d2116dcb20491faf2989e5fe402a415e001f9a"
43 "sha512=68774b5220f45a3435195e5a77b149a1e1347b1c432b70b4b427218320786f355b81a47bc340da98f472f36198eb73a1f5578c480b04e373c8e20d8643b3e23a"
44 ]
45}
46x-commit-hash: "a87b5566052559f467e5f91879dfdc41a9ae61fb"