package jbuilder

  1. Overview
  2. Docs
Fast, portable and opinionated build system

Install

Dune Dependency

Authors

Maintainers

Sources

jbuilder-1.0.beta9.tbz
md5=7a8a71d559ed51712cfb4bba0da6721b

Description

jbuilder is a build system that was designed to simplify the release of Jane Street packages. It reads metadata from "jbuild" files following a very simple s-expression syntax.

jbuilder is fast, it has very low-overhead and support parallel builds on all platforms. It has no system dependencies, all you need to build jbuilder and packages using jbuilder is OCaml. You don't need or make or bash as long as the packages themselves don't use bash explicitely.

jbuilder supports multi-package development by simply dropping multiple repositories into the same directory.

It also supports multi-context builds, such as building against several opam roots/switches simultaneously. This helps maintaining packages across several versions of OCaml and gives cross-compilation for free.

Published: 19 May 2017

README

README.org

* JBUILDER - A composable build system for OCaml and Reason

Jbuilder is a build system designed for OCaml/Reason projects only. It
focuses on providing the user with a consistent experience and takes
care of most of the low-level details of OCaml compilation. All you
have to do is provide a description of your project and Jbuilder will
do the rest.

The scheme it implements is inspired from the one used inside Jane
Street and adapted to the open source world. It has matured over a
long time and is used daily by hundred of developpers, which means
that it is highly tested and productive.

Jbuilder comes with a [[http://jbuilder.readthedocs.io/en/latest/][manual]]. If you want to get started without
reading too much, you can look at the [[http://jbuilder.readthedocs.io/en/latest/quick-start.html][quick start guide]].

The [[example]] directory contains examples of projects using jbuilder.

[[https://travis-ci.org/janestreet/jbuilder][https://travis-ci.org/janestreet/jbuilder.png?branch=master]]
#+html: <a href="https://ci.appveyor.com/project/diml/jbuilder/branch/master"><img src="https://ci.appveyor.com/api/projects/status/bn3kcxx648jt6dyt?svg=true"/></a>

** Overview

Jbuilder reads project metadata from =jbuild= files, which are either
static files in a simple S-expression syntax or OCaml scripts. It uses
this information to setup build rules, generate configuration files
for development tools such as [[https://github.com/ocaml/merlin][merlin]], handle installation, etc...

Jbuilder itself is fast, has very low overhead and supports parallel
builds on all platforms. It has no system dependencies: all you need
to build jbuilder and packages using jbuilder is OCaml. You don't need
=make= or =bash= as long as the packages themselves don't use =bash=
explicitly.

Especially, one can install OCaml on Windows with a binary installer
and then use only the Windows Console to build Jbuilder and packages
using Jbuilder.

** Strengths

*** Composable

Take n repositories that use Jbuilder, arrange them in any way on the
file system and the result is still a single repository that Jbuilder
knows how to build at once.

This make simultaneous development on multiple packages trivial.

*** Gracefully handles multi-package repositories

Jbuilder knows how to handle repositories containing several
packages. When building via [[https://opam.ocaml.org/][opam]], it is able to correctly use
libraries that were previously installed even if they are already
present in the source tree.

The magic invocation is:

#+begin_src sh
$ jbuilder build --only-packages <package-name> @install
#+end_src

*** Building against several configurations at once

Jbuilder is able to build a given source code repository against
several configurations simultaneously. This helps maintaining packages
across several versions of OCaml as you can tests them all at once
without hassle.

This feature should make cross-compilation easy, see details in the
[[ROADMAP.org][roadmap]].

This feature requires [[https://opam.ocaml.org/][opam]].

*** Jenga bridge

[[https://github.com/janestreet/jenga][Jenga]] is another build system for OCaml that has more advanced
features such as polling or much better editor integration. Jenga is
more powerful and more complex and as a result as much more
dependencies.  It is planned to implement a small bridge between the
two so that a Jbuilder project can build with Jenga using this bridge.

** Requirements

Jbuilder requires OCaml version 4.02.3 or greater.

** Installation

The recommended way to install jbuilder is via the [[https://opam.ocaml.org][opam package manager]]:

#+begin_src sh
$ opam install jbuilder
#+end_src

You can also build it manually with:

#+begin_src sh
$ make
$ make install
#+end_src

Note however that =make install= requires the =opam-installer= tool.

If you do not have =make=, you can do the following:

#+begin_src sh
$ ocaml bootstrap.ml
$ ./boot.exe
$ ./_build/default/bin/main.exe install
#+end_src

** Support

If you have questions about jbuilder, you can send an email to
ocaml-core@googlegroups.com or [[https://github.com/janestreet/jbuilder/issues][open a ticket on github]].

** Status

Jbuilder is now in beta testing stage. Once a bit more testing has
been done, it will be released in 1.0.

** Roadmap

See [[ROADMAP.org]] for the current plan. Help on any of these points is
welcome!

** FAQ

*** Why do many Jbuilder projects contain a Makefile?

Many Jbuilder project contain a toplevel =Makefile=. It is often only
there only for convenience, for the following reasons:

1. there are many different build systems out there, all with a
   different CLI. If you have been hacking for a long time, the one
   true invocation you know is =make && make install=, possibly
   preceded by =./configure=

2. you often have a few common operations that are not part of the
   build and =make <blah>= is a good way to provide them

3. =make= is shorter to type than =jbuilder build @install=

*** How to add a configure step to a jbuilder project?

[[example/sample-projects/with-configure-step]] shows one way to do it
that preserves composability; i.e. it doesn't require to manually run
all =./configure= script when working on multiple projects at the same
time.

*** Can I use topkg with jbuilder?

Yes, have a look at the [[https://github.com/diml/topkg-jbuilder][topkg-jbuilder]] project for more details.

** Known bugs

*** Optional libraries inside a multilib directory

[[https://github.com/janestreet/jbuilder/issues/51]]

If a directory contains several libraries and some are marked as
optional (by adding =(optional)= in the =(library ...)= stanza), then
the dependencies will still be required to perform the build.

This could be sorted out with some refactoring, but there is a simple
workaround, so it is low-priority.

**** Workaround

Put each optional library in a separate directory.

** Implementation details

This section is for people who want to work on Jbuilder itself.

*** Bootstrap

In order to build itself, Jbuilder uses an OCaml script ([[bootstrap.ml]])
that dumps most of the sources of Jbuilder into a single =boot.ml=
file. This file is built using =ocamlopt= or =ocamlc= and used to
build everything else.

*** OCaml compatibility test

Install opam switches for all the entries in the [[jbuild-workspace.dev]]
file and run:

#+begin_src sh
$ make all-supported-ocaml-versions
#+end_src

*** Repository organization

- =vendor/= contains dependencies of Jbuilder, that have been vendored
- =plugin/= contains the API given to =jbuild= files that are OCaml
  scripts
- =src/= contains the core of =Jbuilder=, as a library so that it can
  be used to implement the Jenga bridge later
- =bin/= contains the command line interface
- =doc/= contains the manual and rules to generate the manual pages

*** Design

Jbuilder was initially designed to sort out the public release of Jane
Street packages which became incredibly complicated over time. It is
still successfully used for this purpose.

One necessary feature to achieve this is the ability to precisely
report the external dependencies necessary to build a given set of
targets without running any command, just by looking at the source
tree. This is used to automatically generate the =<package>.opam=
files for all Jane Street packages.

To implement this, the build rules are described using a build arrow,
which is defined in [[src/build.mli][src/build]]. In the end it makes the development
of the internal rules of Jbuilder very composable and quite pleasant.

To deal with process multiplexing, Jbuilder uses a simplified
Lwt/Async-like monad, implemented in [[src/future.mli][src/future]].

**** Code flow

- [[src/jbuild_types.ml][src/jbuild_types]] contains the internal representation of =jbuild=
  files and the parsing code
- [[src/jbuild_load.ml][src/jbuild_load]] contains the code to scan a source tree and build
  the internal database by reading the =jbuild= files
- [[src/gen_rules.ml][src/gen_rules]] contains all the build rules of Jbuilder
- [[src/build_system.ml][src/build_system]] contains a trivial implementation of a Build
  system. This is what Jenga will provide when implementing the bridge

Dependencies (2)

  1. ocamlfind build
  2. ocaml >= "4.02.3" & < "4.08.0"

Dev Dependencies

None

  1. ANSITerminal = "0.8"
  2. acgtk >= "1.3.2" & < "1.4.0"
  3. ago >= "0.4"
  4. amqp-client >= "1.1.0" & < "2.0.3"
  5. amqp-client-async < "2.0.3"
  6. amqp-client-lwt < "2.0.3"
  7. ascii85 >= "0.4"
  8. asl >= "0.11"
  9. async = "v0.9.0"
  10. async_extended = "v0.9.0"
  11. async_extra = "v0.9.0"
  12. async_find = "v0.9.0"
  13. async_inotify = "v0.9.0"
  14. async_interactive < "v0.10.0"
  15. async_js < "v0.10.0"
  16. async_kernel = "v0.9.0"
  17. async_parallel >= "v0.9.0" & < "v0.10.0"
  18. async_rpc_kernel = "v0.9.0"
  19. async_shell >= "v0.9.0" & < "v0.10.0"
  20. async_smtp = "v0.9.0"
  21. async_ssl = "v0.9.0"
  22. async_unix >= "v0.9.0" & < "v0.10.0"
  23. atd >= "1.2.1" & < "2.2.1"
  24. atdgen >= "1.10.2" & < "2.2.1"
  25. atdj < "2.2.1"
  26. aws-s3 >= "1.1.0" & < "4.0.0"
  27. aws-s3-async < "4.0.0"
  28. aws-s3-lwt < "4.0.0"
  29. balancer
  30. base >= "v0.9.2" & < "v0.10.0"
  31. benchmark = "1.5"
  32. bignum = "v0.9.0"
  33. bin_prot = "v0.9.0"
  34. biniou >= "1.1.0" & < "1.2.1"
  35. biocaml = "0.8.0"
  36. bistro >= "0.3.0" & < "0.5.0"
  37. bitcoinml < "0.2.4"
  38. bitmasks = "1.1.0"
  39. bitstring >= "3.0.0" & < "3.1.1"
  40. brotli >= "2.0.3"
  41. bst < "3.0.0"
  42. build_path_prefix_map < "0.3"
  43. bun < "0.3.3"
  44. calculon = "0.2"
  45. calculon-web < "0.4"
  46. camlimages >= "5.0.0" & < "5.0.2"
  47. camlon >= "2.0.1" & < "3.0.0"
  48. camomile >= "0.8.6" & < "1.0.0"
  49. capnp >= "3.0.0" & < "3.3.0"
  50. caqti < "0.10.2"
  51. caqti-async < "0.10.2"
  52. caqti-driver-mariadb < "0.10.2"
  53. caqti-driver-postgresql < "0.10.2"
  54. caqti-driver-sqlite3 < "0.10.2"
  55. caqti-dynload < "0.10.2"
  56. caqti-lwt < "0.10.2"
  57. caqti-type-calendar < "0.10.2"
  58. cfstream >= "1.2.3" & < "1.3.1"
  59. charrua-client >= "0.9" & < "0.11.2"
  60. charrua-client-lwt < "0.11.2"
  61. charrua-client-mirage < "0.11.2"
  62. charrua-core >= "0.8" & < "0.11.2"
  63. charrua-unix >= "0.9" & < "0.11.2"
  64. checkseum < "0.0.3"
  65. cinaps < "v0.10.0"
  66. clarity < "0.4.0"
  67. cmdtui >= "0.4.3"
  68. cmdtui-lambda-term
  69. coin < "0.1.1"
  70. command_rpc < "v0.10.0"
  71. conduit >= "1.0.0" & < "1.3.0"
  72. conduit-async < "1.3.0"
  73. conduit-lwt < "1.3.0"
  74. conduit-lwt-unix < "1.3.0"
  75. configurator < "v0.10.0"
  76. core >= "v0.9.0" & < "v0.10.0"
  77. core_bench = "v0.9.0"
  78. core_extended >= "v0.9.0" & < "v0.10.0"
  79. core_kernel >= "v0.9.0" & < "v0.10.0"
  80. core_profiler = "v0.9.0"
  81. cow = "2.3.0"
  82. cowabloga >= "0.3.0" & < "0.5.0"
  83. cpm = "4.0.0"
  84. craml
  85. crlibm < "0.3"
  86. crowbar < "0.2"
  87. cryptodbm >= "0.84.2"
  88. cstruct >= "3.0.0" & < "3.1.0"
  89. cstruct-async < "3.3.0"
  90. cstruct-lwt >= "3.0.0" & < "3.3.0"
  91. cstruct-unix >= "3.0.0" & < "3.3.0"
  92. csv = "2.0"
  93. csv-lwt < "2.1"
  94. csvfields < "v0.10.0"
  95. cuid < "0.2"
  96. curly < "0.2.0"
  97. DrawGrammar = "0.2.1"
  98. datakit >= "0.10.0" & < "0.12.0"
  99. datakit-bridge-github >= "0.10.0" & < "0.12.0"
  100. datakit-bridge-local-git >= "0.10.0" & < "0.12.0"
  101. datakit-ci >= "0.10.0" & < "0.12.0"
  102. datakit-client >= "0.10.0" & < "0.12.0"
  103. datakit-client-9p < "0.12.0"
  104. datakit-client-git < "0.12.0"
  105. datakit-github >= "0.10.0" & < "0.12.0"
  106. datakit-server >= "0.10.0" & < "0.12.0"
  107. datakit-server-9p < "0.12.0"
  108. decoders < "0.1.2"
  109. decoders-ezjsonm < "0.1.2"
  110. decoders-yojson < "0.1.2"
  111. decompress = "0.8"
  112. digestif = "0.6.1"
  113. dns >= "1.0.0" & < "1.1.0"
  114. dns-async < "1.1.0"
  115. dns-lwt < "1.1.0"
  116. dns-lwt-unix < "1.1.0"
  117. doc-ock >= "1.1.0"
  118. doc-ock-html >= "1.1.0"
  119. doc-ock-xml >= "1.1.0"
  120. dokeysto < "2.0.0"
  121. dokeysto_lz4 < "3.0.0"
  122. dryunit
  123. dtoa >= "0.3.0" & < "0.3.2"
  124. duff < "0.2"
  125. dune-release < "1.0.0"
  126. dune_watch
  127. easy-format >= "1.3.0" & < "1.3.2"
  128. ecaml < "v0.10.0"
  129. electrod < "0.1.6"
  130. email_message >= "v0.9.0" & < "v0.10.0"
  131. emile < "0.4"
  132. encore < "0.2"
  133. exenum >= "0.82.0" & < "0.86"
  134. expect_test_helpers < "v0.10.0"
  135. expect_test_helpers_kernel < "v0.10.0"
  136. ezjsonm >= "0.5.0" & < "1.0.0"
  137. ezjsonm-lwt < "1.0.0"
  138. ezxmlm = "1.0.2"
  139. fat-filesystem >= "0.12.1" & < "0.13.0"
  140. fftw3 >= "0.8" & < "0.8.2"
  141. fieldslib = "v0.9.0"
  142. findlib_top
  143. General >= "0.4.0" & < "0.6.0"
  144. gammu >= "0.9.4"
  145. gapi-ocaml = "0.3.6"
  146. gdbprofiler >= "0.2" & < "0.4"
  147. get_line = "4.0.0"
  148. git >= "1.11.0" & < "2.0.0"
  149. git-http >= "1.11.0" & < "2.0.0"
  150. git-mirage >= "1.11.0" & < "2.0.0"
  151. git-unix >= "1.11.1" & < "2.0.0"
  152. github-hooks >= "0.2.0" & < "0.4.0"
  153. github-hooks-unix < "0.4.0"
  154. gnuplot = "0.5.3"
  155. google-drive-ocamlfuse = "0.6.23"
  156. graphql < "0.8.0"
  157. graphql-async < "0.8.0"
  158. graphql-cohttp < "0.9.0"
  159. graphql-lwt < "0.8.0"
  160. graphql_parser < "0.9.0"
  161. grenier = "0.7"
  162. hashids < "1.0.1"
  163. hex >= "1.1.0" & < "1.3.0"
  164. hiredis >= "0.8"
  165. hiredis-value
  166. incr_dom < "v0.10.0"
  167. incr_map < "v0.10.0"
  168. incr_select < "v0.10.0"
  169. incremental = "v0.9.0"
  170. incremental_kernel = "v0.9.0"
  171. integration1d = "0.5"
  172. interval = "1.4"
  173. inuit >= "0.4.1"
  174. io-page >= "2.0.0" & < "2.1.0"
  175. io-page-unix >= "2.0.0" & < "2.1.0"
  176. io-page-xen >= "2.0.0" & < "2.1.0"
  177. ipaddr = "2.8.0"
  178. irc-client >= "0.6.0" & < "0.6.2"
  179. irc-client-lwt < "0.6.2"
  180. irc-client-tls < "0.6.2"
  181. irc-client-unix < "0.6.2"
  182. irmin = "1.2.0"
  183. irmin-fs < "1.3.0"
  184. irmin-git = "1.2.0"
  185. irmin-http = "1.2.0"
  186. irmin-mem < "1.3.0"
  187. irmin-mirage = "1.2.0"
  188. irmin-unix = "1.2.0"
  189. JsOfOCairo = "1.0.1"
  190. jane-street-headers < "v0.10.0"
  191. jenga = "v0.9.0"
  192. js_of_ocaml = "3.0"
  193. js_of_ocaml-camlp4 < "3.0.1"
  194. js_of_ocaml-compiler < "3.0.1"
  195. js_of_ocaml-lwt < "3.0.1"
  196. js_of_ocaml-ocamlbuild < "3.0.1"
  197. js_of_ocaml-ppx < "3.0.1"
  198. js_of_ocaml-toplevel < "3.0.1"
  199. js_of_ocaml-tyxml < "3.0.1"
  200. json-wheel_jane_street_overlay
  201. json_of_jsonm
  202. jupyter-kernel < "0.4"
  203. kafka >= "0.3" & < "0.5"
  204. kicadsch < "0.4.0"
  205. kubecaml
  206. kyotocabinet
  207. lambda-term >= "1.11" & < "2.0"
  208. lens >= "1.2.1" & < "1.2.3"
  209. let-if < "0.2.0"
  210. levenshtein >= "1.1.3"
  211. libsvm = "0.9.4"
  212. linenoise = "1.1.0"
  213. links >= "0.7.2" & < "0.8"
  214. links-postgresql < "0.8"
  215. llopt
  216. magic-mime >= "1.0.1" & < "1.1.1"
  217. malfunction < "0.3"
  218. mastodon-archive-viewer < "0.2"
  219. mccs < "1.1+3"
  220. mecab
  221. mesh >= "0.8.9" & < "0.9.5"
  222. mesh-display
  223. mesh-easymesh < "0.9.5"
  224. mesh-graphics < "0.9.5"
  225. mesh-triangle < "0.9.5"
  226. milter >= "1.0.4"
  227. minimal
  228. mirage-block = "1.1.0"
  229. mirage-block-lwt = "1.1.0"
  230. mirage-block-unix = "2.8.2"
  231. mirage-block-xen >= "1.5.2" & < "1.6.0"
  232. mirage-clock = "1.3.0"
  233. mirage-clock-freestanding = "1.3.0"
  234. mirage-clock-lwt = "1.3.0"
  235. mirage-clock-unix >= "1.3.0" & < "2.0.0"
  236. mirage-conduit < "1.3.0"
  237. mirage-console >= "2.3.2" & < "2.4.0"
  238. mirage-console-lwt >= "2.3.2" & < "2.4.0"
  239. mirage-console-unix >= "2.3.2" & < "2.4.1"
  240. mirage-console-xen >= "2.3.2" & < "2.4.0"
  241. mirage-console-xen-backend >= "2.3.2" & < "2.4.0"
  242. mirage-console-xen-proto >= "2.3.2" & < "2.4.0"
  243. mirage-device = "1.1.0"
  244. mirage-dns >= "3.0.0" & < "3.1.0"
  245. mirage-flow >= "1.3.0" & < "1.6.0"
  246. mirage-flow-lwt >= "1.3.0" & < "1.6.0"
  247. mirage-flow-unix >= "1.3.0" & < "1.6.0"
  248. mirage-fs-unix >= "1.4.0" & < "1.6.0"
  249. mirage-kv-lwt = "1.1.0"
  250. mirage-nat < "1.1.0"
  251. mirage-net-fd >= "0.2.1"
  252. mirage-net-flow
  253. mirage-net-lwt >= "1.1.0" & < "2.0.0"
  254. mirage-net-macosx = "1.4.0"
  255. mirage-net-unix = "2.4.1"
  256. mirage-net-xen >= "1.7.1" & < "1.9.0"
  257. mirage-profile >= "0.8.0" & < "0.9.0"
  258. mirage-profile-unix < "0.9.0"
  259. mirage-profile-xen < "0.9.0"
  260. mirage-protocols >= "1.2.0" & < "2.0.0"
  261. mirage-protocols-lwt >= "1.2.0" & < "2.0.0"
  262. mirage-qubes >= "0.5" & < "0.7.0"
  263. mirage-qubes-ipv4 < "0.7.0"
  264. mirage-random = "1.1.0"
  265. mirage-stack >= "1.1.0" & < "1.4.0"
  266. mirage-stack-lwt >= "1.1.0" & < "1.4.0"
  267. mirage-time = "1.1.0"
  268. mirage-time-lwt = "1.1.0"
  269. mirage-time-unix < "1.3.0"
  270. mirage-vnetif >= "0.4.0" & < "0.4.2"
  271. modular-arithmetic
  272. monomorphic = "1.5"
  273. moss < "0.1.1"
  274. msgpck >= "1.3" & < "1.5"
  275. mstruct >= "1.3.3"
  276. multipart-form-data = "0.2.0"
  277. mustache = "3.0.2"
  278. mvar
  279. netchannel < "1.9.0"
  280. nonstd >= "0.0.3"
  281. npy >= "0.0.5" & < "0.0.8"
  282. nsq < "0.4.0"
  283. nullable-array
  284. numalib
  285. nunchaku >= "0.5.1"
  286. oc45
  287. ocaml-compiler-libs < "v0.10.0"
  288. ocaml-migrate-parsetree < "1.0.2"
  289. ocaml-migrate-parsetree-ocamlbuild < "1.2.0"
  290. ocaml-r = "0.1.0"
  291. ocaml-top >= "1.1.4" & < "1.2.0"
  292. ocaml-topexpect >= "0.3"
  293. ocaml_plugin = "v0.9.0"
  294. ocamlformat < "0.5"
  295. ocamlformat_support
  296. ocamlspot >= "4.07.0.2.3.2"
  297. ocp-browser >= "1.1.6" & < "1.1.9"
  298. ocp-index = "1.1.7"
  299. octavius >= "1.1.0" & < "1.2.2"
  300. odoc >= "1.1.0" & < "1.2.0"
  301. opaca
  302. opam-lock
  303. opam-package-upgrade < "0.2"
  304. open < "0.2.2"
  305. opium = "0.16.0"
  306. opium_kernel < "0.17.0"
  307. optimization1d = "0.6"
  308. orandforest
  309. oranger < "2.0.1"
  310. orec < "1.0.1"
  311. orsvm_e1071 < "3.0.2"
  312. orxgboost < "1.1.0"
  313. osbx
  314. otetris
  315. owl >= "0.3.0" & < "0.4.0"
  316. owl-base < "0.4.0"
  317. owl-top < "0.4.0"
  318. owl-zoo < "0.4.0"
  319. pa_sqlexpr
  320. parsexp < "v0.10.0"
  321. parsexp_io < "v0.10.0"
  322. patdiff = "v0.9.0"
  323. patience_diff = "v0.9.0"
  324. pecu < "0.2"
  325. phantom-algebra < "1.0.1"
  326. phashtbl
  327. pla = "1.2"
  328. plotkicadsch < "0.4.0"
  329. posixat < "v0.10.0"
  330. ppx_assert = "v0.9.0"
  331. ppx_ast < "v0.10.0"
  332. ppx_base < "v0.10.0"
  333. ppx_bench = "v0.9.1"
  334. ppx_bin_prot = "v0.9.0"
  335. ppx_bitstring >= "2.0.0" & < "4.0.0"
  336. ppx_blob >= "0.3.0" & < "0.6.0"
  337. ppx_compare = "v0.9.0"
  338. ppx_compose < "0.1.0"
  339. ppx_conv_func = "v0.9.0"
  340. ppx_core >= "v0.9.0" & < "v0.9.3"
  341. ppx_cstruct >= "3.0.1" & < "3.3.0"
  342. ppx_csv_conv = "v0.9.0"
  343. ppx_custom_printf = "v0.9.0"
  344. ppx_defer = "0.3.0"
  345. ppx_derivers < "1.2.1"
  346. ppx_deriving_madcast < "0.2"
  347. ppx_deriving_protocol < "0.8.1"
  348. ppx_deriving_rpc < "6.1.0"
  349. ppx_driver >= "v0.9.1" & < "v0.10.0"
  350. ppx_dryunit
  351. ppx_enumerate = "v0.9.0"
  352. ppx_expect = "v0.9.0"
  353. ppx_fail = "v0.9.0"
  354. ppx_fields_conv = "v0.9.0"
  355. ppx_gen_rec < "1.1.0"
  356. ppx_graphql
  357. ppx_hardcaml >= "1.3.0"
  358. ppx_hash < "v0.10.0"
  359. ppx_here = "v0.9.1"
  360. ppx_inline_test = "v0.9.1"
  361. ppx_integer
  362. ppx_jane = "v0.9.0"
  363. ppx_js_style < "v0.10.0"
  364. ppx_let = "v0.9.0"
  365. ppx_meta_conv = "4.0.0"
  366. ppx_metaquot < "v0.10.0"
  367. ppx_monadic >= "2.3.0"
  368. ppx_nanocaml
  369. ppx_optcomp = "v0.9.0"
  370. ppx_optional < "v0.10.0"
  371. ppx_orakuda >= "3.3.0"
  372. ppx_pipebang = "v0.9.0"
  373. ppx_poly_record >= "1.3.0"
  374. ppx_protocol_conv < "3.1.0"
  375. ppx_protocol_conv_json < "3.1.0"
  376. ppx_protocol_conv_msgpack < "3.1.0"
  377. ppx_protocol_conv_xml_light < "3.1.0"
  378. ppx_protocol_conv_yaml < "3.1.0"
  379. ppx_regexp < "0.4.0"
  380. ppx_sexp_conv = "v0.9.0"
  381. ppx_sexp_message = "v0.9.0"
  382. ppx_sexp_value = "v0.9.0"
  383. ppx_sqlexpr
  384. ppx_test = "1.6.0"
  385. ppx_traverse < "v0.10.0"
  386. ppx_traverse_builtins < "v0.10.0"
  387. ppx_type_conv = "v0.9.0"
  388. ppx_typerep_conv = "v0.9.0"
  389. ppx_variants_conv = "v0.9.0"
  390. ppx_view
  391. ppx_xml_conv = "v0.9.0"
  392. ppxx >= "2.3.1" & < "2.4.0"
  393. prometheus = "0.2"
  394. prometheus-app = "0.2"
  395. protocol-9p >= "0.10.0" & < "0.11.2"
  396. protocol-9p-tool < "0.11.3"
  397. protocol-9p-unix < "0.11.2"
  398. pumping
  399. qcheck = "0.8"
  400. qcow >= "0.10.0" & < "0.10.3"
  401. qcow-tool < "0.11.0"
  402. radare2 = "0.0.2"
  403. radis
  404. re = "1.7.2"
  405. re2 = "v0.9.0"
  406. reason >= "3.0.3" & < "3.3.5"
  407. redis >= "0.3.4" & < "0.4"
  408. redis-lwt < "0.4"
  409. redis-sync < "0.4"
  410. reed-solomon-erasure < "1.0.2"
  411. regenerate < "0.2"
  412. resp-server < "0.9"
  413. rfc1951 < "0.8.1"
  414. root1d = "0.5"
  415. rope >= "0.6" & < "0.6.2"
  416. rpc >= "5.9.0" & < "6.1.0"
  417. rpc_parallel = "v0.9.0"
  418. rpclib < "6.1.0"
  419. rpclib-async < "6.1.0"
  420. rpclib-lwt < "6.1.0"
  421. rtop < "3.3.5"
  422. safepass = "3.0"
  423. sanddb < "0.2"
  424. secp256k1 >= "0.2.5" & < "0.4.1"
  425. sequence >= "1.1"
  426. session = "0.4.0"
  427. session-cohttp < "0.4.1"
  428. session-cohttp-async < "0.4.1"
  429. session-cohttp-lwt < "0.4.1"
  430. session-postgresql < "0.4.1"
  431. session-postgresql-async < "0.4.1"
  432. session-postgresql-lwt < "0.4.1"
  433. session-redis-lwt < "0.4.1"
  434. session-webmachine < "0.4.1"
  435. sexp_pretty < "v0.10.0"
  436. sexplib >= "v0.9.0" & < "v0.9.2"
  437. shared-memory-ring >= "2.0.0" & < "3.1.0"
  438. shared-memory-ring-lwt < "3.1.0"
  439. shexp < "v0.10.0"
  440. smbc = "0.4.2"
  441. spacetime_lib = "0.2.0"
  442. spawn = "v0.9.0"
  443. spf >= "2.0.2"
  444. sphinxcontrib-ocaml >= "0.3.0"
  445. spotlib = "4.0.3"
  446. sqlexpr >= "0.9.0"
  447. srs >= "2.0.0"
  448. ssh-agent < "0.2.0"
  449. sslconf
  450. stdint = "0.5.1"
  451. stdio < "v0.10.0"
  452. swagger < "0.2.0"
  453. tar < "1.0.0"
  454. tar-mirage < "1.0.0"
  455. tar-unix < "1.0.0"
  456. tcpip = "3.2.0"
  457. telegraml >= "2.2.0"
  458. tensorflow = "0.0.10"
  459. textutils = "v0.9.0"
  460. tiny_json >= "1.1.5"
  461. topkg-jbuilder
  462. toplevel_expect_test >= "v0.9.1" & < "v0.10.0"
  463. topological_sort < "v0.10.0"
  464. traildb
  465. travis-opam >= "1.2.0" & < "1.5.0"
  466. trax < "0.4.0"
  467. treeprint = "2.2.0"
  468. tube < "4.1"
  469. tuntap >= "1.5.0" & < "1.7.0"
  470. typebeat
  471. typerep = "v0.9.0"
  472. typerep_extended >= "v0.9.0"
  473. typpx >= "1.4.3"
  474. tyre >= "0.4" & < "0.5"
  475. unmagic >= "1.0.4"
  476. uri >= "1.9.4" & < "2.0.0"
  477. utop >= "2.0.0" & < "2.3.0"
  478. uuuu < "0.1.1"
  479. variantslib = "v0.9.0"
  480. varint
  481. vcardgen < "1.2"
  482. vchan = "3.0.0"
  483. vchan-unix < "4.0.0"
  484. vchan-xen < "4.0.0"
  485. vhd-format >= "0.9.1" & < "0.12.0"
  486. vhd-format-lwt < "0.12.0"
  487. virtual_dom < "v0.10.0"
  488. vlq < "0.2.1"
  489. vmnet >= "1.2.0" & < "1.3.2"
  490. vpt < "5.0.0"
  491. wall < "0.4"
  492. wamp >= "1.2"
  493. wamp-msgpck
  494. wamp-yojson
  495. wcs-api
  496. wcs-lib
  497. weberizer = "0.7.8"
  498. wtf8 < "1.0.2"
  499. xen-evtchn = "2.0.0"
  500. xen-evtchn-unix < "2.1.0"
  501. xen-gnt >= "3.0.0" & < "3.1.0"
  502. xen-gnt-unix < "3.1.0"
  503. xenstore >= "1.4.0" & < "2.1.0"
  504. xenstore_transport >= "0.9.6" & < "1.1.0"
  505. yara < "0.2"
  506. yojson >= "1.4.0" & < "1.5.0"
  507. yuscii < "0.2.0"
  508. zed >= "1.5" & < "2.0"
  509. zipperposition = "1.5"

Conflicts

None

OCaml

Innovation. Community. Security.