package jbuilder

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

Install

Dune Dependency

Authors

Maintainers

Sources

jbuilder-1.0.beta17.tbz
md5=03f11f4c6851d799ec7051ff48510ed4

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: 02 Feb 2018

README

Dune (Jbuilder) - A composable build system

Jbuilder has been renamed to Dune. A full renaming of the documentation and the tool will be done as part of the 1.0 release.

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 hundreds of developers, 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 or watch this introduction video.

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 has many 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 release
$ make install

Note however that make install requires the opam-installer tool. Running simply make will build jbuilder using the development settings.

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 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 which preserves composability; i.e. it doesn't require manually running ./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.

Where can I find some examples of projects using Jbuilder?

The jbuilder-universe repository contains a snapshot of the latest versions of all opam packages depending on jbuilder. It is therefore a useful reference to search through to find different approaches to constructing build rules.

Known issues

Optional libraries inside a multilib directory

https://github.com/ocaml/dune/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/ocaml/dune/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.

Note that we don't include all of the sources in boot.ml. We skip a few parts to speed up the build. In particular:

  • vendored libraries are replaced by simpler implementations taken from vendor/boot

  • a few files in src have an alternative version. These alternatives versions are named XXX.boot.EXT. For instance: glob_lexer.boot.ml

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

Conflicts

None

OCaml

Innovation. Community. Security.