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.07.0"} 14 "async_extra" {>= "v0.12" & < "v0.13"} 15 "async_kernel" {>= "v0.12" & < "v0.13"} 16 "async_unix" {>= "v0.12" & < "v0.13"} 17 "core" {>= "v0.12" & < "v0.13"} 18 "core_kernel" {>= "v0.12" & < "v0.13"} 19 "ppx_jane" {>= "v0.12" & < "v0.13"} 20 "textutils" {>= "v0.12" & < "v0.13"} 21 "dune" {>= "1.5.1"} 22] 23synopsis: "Monadic concurrency library" 24description: " 25Part of Jane Street's Core library 26The Core suite of libraries is an industrial strength alternative to 27OCaml's standard library that was developed by Jane Street, the 28largest industrial user of OCaml. 29" 30url { 31 src: 32 "https://ocaml.janestreet.com/ocaml-core/v0.12/files/async-v0.12.0.tar.gz" 33 checksum: [ 34 "sha256=c1cd9fa74e975ae5a014dffb36283d2616d89e465a9d4dec3062da70866ed28f" 35 "md5=e9a06695c63cf4b092cc81f25a8491fd" 36 ] 37}