-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathasync.opam
More file actions
34 lines (34 loc) · 954 Bytes
/
async.opam
File metadata and controls
34 lines (34 loc) · 954 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
opam-version: "2.0"
maintainer: "Jane Street developers"
authors: ["Jane Street Group, LLC"]
homepage: "https://github.com/janestreet/async"
bug-reports: "https://github.com/janestreet/async/issues"
dev-repo: "git+https://github.com/janestreet/async.git"
doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/async/index.html"
license: "MIT"
x-maintenance-intent: ["(latest)"]
build: [
["dune" "build" "-p" name "-j" jobs]
]
depends: [
"ocaml" {>= "5.1.0"}
"async_kernel"
"async_log"
"async_rpc_kernel"
"async_unix"
"core"
"core_kernel"
"core_unix"
"ppx_expect"
"ppx_jane"
"textutils"
"dune" {>= "3.17.0"}
]
available: arch != "arm32" & arch != "x86_32"
synopsis: "Monadic concurrency library"
description: "
Part of Jane Street's Core library
The Core suite of libraries is an industrial strength alternative to
OCaml's standard library that was developed by Jane Street, the
largest industrial user of OCaml.
"