package jbuilder

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

Install

Dune Dependency

Authors

Maintainers

Sources

jbuilder-1.0.beta10.tbz
md5=a93c7321b4421686090a3f5dd571fbe7

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: 08 Jun 2017

README

Jbuilder - A composable build system

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 manual. If you want to get started without reading too much, you can look at the quick start guide.

The example directory contains examples of projects using jbuilder.

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 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 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:

$ jbuilder build --only-packages <package-name> @install

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.

This feature requires opam.

Jenga bridge

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 opam package manager:

$ opam install jbuilder

You can also build it manually with:

$ make
$ make install

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

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

$ ocaml bootstrap.ml
$ ./boot.exe
$ ./_build/default/bin/main.exe install

Support

If you have questions about jbuilder, you can send an email to ocaml-core@googlegroups.com or 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 the roadmap 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 topkg-jbuilder project for more details.

Known issues

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.

mli only modules

https://github.com/janestreet/jbuilder/issues/9

Due to the low-level details of OCaml compilation, it is currently possible to write a module that has only a .mli and no .ml file. This works as long as the mli contains only type declarations.

This is not a properly supported feature of the compiler, and in particular it is not possible to alias such modules or use them as the argument of a functor. Moreover, if you do write a value declaration, or even just define an exception in the .mli, then you won't get an error until the point where you link an executable using this module.

For these reason, mli only modules are not recommended by Jbuilder until the compiler support them properly.

Workaround

As long as a module type contains no value declaration, it is possible to turn in to an implementation by using a recursive module:

module rec M : sig
  type t = A | B
end = M
include M

So if you have a module without a .ml file, simply generate a .ml from the .mli using this trick. For instance you can add the following rule into your jbuild file:

(rule (with-output-to foo.ml
       (progn
        (echo "module rec HACK : sig\n")
        (cat foo.mli)
        (echo "\nend = HACK\ninclue HACK\n"))))

In fact, jbuilder will automatically add this rule if you have a module without imlpementation. However it will print a warning.

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:

$ make all-supported-ocaml-versions

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 =.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. 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.

Code flow
  • src/jbuild.mli contains the internal representation of jbuild files and the parsing code

  • src/jbuild_load.mli contains the code to scan a source tree and build the internal database by reading the =jbuild= files

  • src/gen_rules.mli contains all the build rules of Jbuilder

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

Conflicts

None

OCaml

Innovation. Community. Security.