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" {>= "5.1.0"} 14 "async_kernel" {>= "v0.17" & < "v0.18"} 15 "async_log" {>= "v0.17" & < "v0.18"} 16 "async_rpc_kernel" {>= "v0.17" & < "v0.18"} 17 "async_unix" {>= "v0.17" & < "v0.18"} 18 "core" {>= "v0.17" & < "v0.18"} 19 "core_kernel" {>= "v0.17" & < "v0.18"} 20 "core_unix" {>= "v0.17" & < "v0.18"} 21 "ppx_jane" {>= "v0.17" & < "v0.18"} 22 "textutils" {>= "v0.17" & < "v0.18"} 23 "dune" {>= "3.11.0"} 24] 25available: arch != "arm32" & arch != "x86_32" 26synopsis: "Monadic concurrency library" 27description: " 28Part of Jane Street's Core library 29The Core suite of libraries is an industrial strength alternative to 30OCaml's standard library that was developed by Jane Street, the 31largest industrial user of OCaml. 32" 33url { 34src: "https://github.com/janestreet/async/archive/refs/tags/v0.17.0.tar.gz" 35checksum: "sha256=3edbaa62a7ea910da0d5c06974da9b2b7e14a9e2648596bc7c9f09c89970b5f8" 36}