this repo has no description
1opam-version: "2.0" 2maintainer: "Jane Street developers" 3authors: ["Jane Street Group, LLC"] 4homepage: "https://github.com/janestreet/async" 5bug-reports: "https://github.com/janestreet/async/issues" 6dev-repo: "git+https://github.com/janestreet/async.git" 7doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/async/index.html" 8license: "MIT" 9build: [ 10 ["dune" "build" "-p" name "-j" jobs] 11] 12depends: [ 13 "ocaml" {>= "4.14.0"} 14 "async_kernel" {>= "v0.16" & < "v0.17"} 15 "async_rpc_kernel" {>= "v0.16" & < "v0.17"} 16 "async_unix" {>= "v0.16" & < "v0.17"} 17 "core" {>= "v0.16" & < "v0.17"} 18 "core_kernel" {>= "v0.16" & < "v0.17"} 19 "core_unix" {>= "v0.16" & < "v0.17"} 20 "ppx_jane" {>= "v0.16" & < "v0.17"} 21 "ppx_log" {>= "v0.16" & < "v0.17"} 22 "textutils" {>= "v0.16" & < "v0.17"} 23 "dune" {>= "2.0.0"} 24] 25synopsis: "Monadic concurrency library" 26description: " 27Part of Jane Street's Core library 28The Core suite of libraries is an industrial strength alternative to 29OCaml's standard library that was developed by Jane Street, the 30largest industrial user of OCaml. 31" 32url { 33src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/async-v0.16.0.tar.gz" 34checksum: "sha256=709041c755f4cd8740b7262e657f59c1066a8540b70c3b99368f369a1196a681" 35}