-
Notifications
You must be signed in to change notification settings - Fork 111
/
core.opam
50 lines (49 loc) · 1.23 KB
/
core.opam
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
opam-version: "2.0"
maintainer: "Jane Street developers"
authors: ["Jane Street Group, LLC"]
homepage: "https://github.com/janestreet/core"
bug-reports: "https://github.com/janestreet/core/issues"
dev-repo: "git+https://github.com/janestreet/core.git"
doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/core/index.html"
license: "MIT"
build: [
["dune" "build" "-p" name "-j" jobs]
]
depends: [
"ocaml" {>= "5.1.0"}
"base"
"base_bigstring"
"base_quickcheck"
"bin_prot"
"fieldslib"
"jane-street-headers"
"jst-config"
"parsexp"
"ppx_assert"
"ppx_base"
"ppx_diff"
"ppx_expect"
"ppx_hash"
"ppx_inline_test"
"ppx_jane"
"ppx_optcomp"
"ppx_sexp_conv"
"ppx_sexp_message"
"ppx_stable_witness"
"sexplib"
"splittable_random"
"stdio"
"time_now"
"typerep"
"univ_map"
"variantslib"
"dune" {>= "3.11.0"}
]
available: arch != "arm32" & arch != "x86_32"
synopsis: "Industrial strength alternative to OCaml's standard library"
description: "
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.
This is the system-independent part of Core. Unix-specific parts were moved to [core_unix].
"