package jbuilder

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

Install

Dune Dependency

Authors

Maintainers

Sources

1.0+beta7.tar.gz
md5=2a8f5277d3c3a7c85e6ec58cb36f5223

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: 12 Apr 2017

README

README.org

* JBUILDER - A composable build system for OCaml

Jbuilder is a build system designed for OCaml 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 [[./doc/manual.org][manual]]. If you want to get started without
reading too much, you can look at the [[./doc/quick-start.org][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]]

** 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 should be able to install OCaml on Windows with a
binary installer and then use only the Windows Console to build
Jbuilder and packages using Jbuilder. Although this hasn't been tested
yet.

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

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

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

Conflicts

None

OCaml

Innovation. Community. Security.