package jbuilder

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

Install

Dune Dependency

Authors

Maintainers

Sources

jbuilder-1.0.beta12.tbz
md5=32a7243a26febe8e183dd03f04cb6fa6

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: 22 Aug 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 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.

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.

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

Conflicts

None

OCaml

Innovation. Community. Security.