package dune

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

Install

dune-project
 Dependency

Authors

Maintainers

Sources

dune-1.6.3.tbz
sha256=bfd52160d88578c404af1267abfba6eb4928988e51aef0e92dbebdea1607ae36
md5=1212a36547d25269675d767c38fecf5f

Description

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

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

dune 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: 09 Jan 2019

README

Dune - A composable build system

Dune 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 dune 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.

Dune 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 dune.

Travis status AppVeyor status

Overview

Dune reads project metadata from dune 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...

Dune itself is fast, has very low overhead and supports parallel builds on all platforms. It has no system dependencies: all you need to build dune and packages using dune 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 dune and packages using dune.

Strengths

Composable

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

This make simultaneous development on multiple packages trivial.

Gracefully handles multi-package repositories

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

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

Building against several configurations at once

Dune 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 test them all at once without hassle.

In particular, this makes it easy to handle cross-compilation.

This feature requires opam.

Requirements

Dune requires OCaml version 4.02.3 or greater.

Installation

The recommended way to install dune is via the opam package manager:

$ opam install dune

You can also build it manually with:

$ make release
$ make install

Running simply make will build dune using the development settings.

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

$ ocaml bootstrap.ml
$ ./boot.exe
$ ./_build_bootstrap/default/bin/main_dune.exe install dune

Support

If you have questions about dune, you can send an email to ocaml-core@googlegroups.com or open a ticket on github.

Migration from jbuilder

Dune was formerly known as jbuilder. Migration from jbuilder to dune is described in the manual.

Status

Dune is now fairly stable and is used by the majority of packages on opam. The package is still in beta version as we are waiting for the renaming from Jbuilder to dune before releasing version 1.0.0. Note that dune will have backward compatibility with Jbuilder, in particular existing Jbuilder projects will continue to be buildable with dune.

Dependencies (3)

  1. base-threads
  2. base-unix
  3. ocaml >= "4.02" & < "4.12"

Dev Dependencies

None

  1. 0install < "2.15.1"
  2. ANSITerminal >= "0.8.1" & < "0.8.4"
  3. absolute < "0.2"
  4. acgtk < "2.1.0"
  5. ahrocksdb
  6. aifad >= "2.2.1" & < "2.3.0"
  7. albatross < "1.5.4"
  8. alt-ergo >= "2.3.0" & < "2.4.0"
  9. alt-ergo-lib < "2.4.0"
  10. alt-ergo-parsers < "2.4.0"
  11. altgr-ergo >= "2.3.0" & < "2.4.0"
  12. amqp-client >= "2.0.3" & < "2.3.0"
  13. amqp-client-async < "2.3.0"
  14. amqp-client-lwt < "2.3.0"
  15. angstrom >= "0.11.1" & < "0.15.0"
  16. angstrom-async >= "0.11.1" & < "0.15.0"
  17. angstrom-lwt-unix >= "0.11.1" & < "0.15.0"
  18. angstrom-unix >= "0.11.1" & < "0.15.0"
  19. anthill
  20. archi < "0.2.0"
  21. archi-async < "0.2.0"
  22. archi-lwt < "0.2.0"
  23. asak
  24. asn1-combinators >= "0.2.5"
  25. async < "v0.14.0"
  26. async_durable < "v0.14.0"
  27. async_extra < "v0.14.0"
  28. async_find < "v0.14.0"
  29. async_graphics
  30. async_inotify < "v0.14.0"
  31. async_interactive < "v0.14.0"
  32. async_js < "v0.14.0"
  33. async_kernel < "v0.14.0"
  34. async_rpc_kernel < "v0.14.0"
  35. async_sendfile < "v0.14.0"
  36. async_shell < "v0.14.0"
  37. async_smtp < "v0.14.0"
  38. async_ssl < "v0.14.0"
  39. async_udp < "v0.14.0"
  40. async_unix < "v0.14.0"
  41. async_websocket < "v0.14.0"
  42. atomic < "base"
  43. awa < "0.1.0"
  44. awa-mirage < "0.1.0"
  45. aws-s3 < "4.6.0"
  46. aws-s3-async < "4.6.0"
  47. aws-s3-lwt < "4.6.0"
  48. base < "v0.14.0"
  49. base64 >= "2.3.0" & < "3.3.0"
  50. base_bigstring < "v0.14.0"
  51. base_quickcheck < "v0.14.0"
  52. batsat < "0.7"
  53. beluga = "1.0"
  54. benchmark = "1.6"
  55. bencode >= "2.0"
  56. bigarray-compat
  57. bignum < "v0.14.0"
  58. bigstring >= "0.3"
  59. bigstring-unix
  60. bigstringaf >= "0.5.0" & < "0.7.0"
  61. bimage < "0.2.1"
  62. bimage-gtk < "0.2.1"
  63. bimage-sdl < "0.2.1"
  64. bimage-unix < "0.2.1"
  65. bin_prot < "v0.14.0"
  66. biocaml < "0.11.2"
  67. bisect_ppx >= "1.4.0" & < "2.5.0"
  68. bitcoinml
  69. bitmasks
  70. bitstring = "3.1.1"
  71. bonsai < "v0.14.0"
  72. bst >= "6.0.0" & < "7.0.1"
  73. bun = "0.3.3"
  74. bwrap
  75. bytearray
  76. bytepdf
  77. cairo2 >= "0.6" & < "0.6.3"
  78. cairo2-gtk < "0.6.3"
  79. cairo2-pango < "0.6.3"
  80. calculon
  81. calculon-web
  82. calendar >= "3.0.0"
  83. callipyge >= "0.2"
  84. camelsnakekebab
  85. camltc >= "0.9.8"
  86. capnp >= "3.3.0" & < "3.5.0"
  87. caqti >= "1.0.0" & < "1.2.0"
  88. caqti-driver-mariadb < "1.2.0"
  89. caqti-driver-postgresql >= "1.0.0" & < "1.2.0"
  90. caqti-driver-sqlite3 = "1.0.0"
  91. caqti-dynload = "1.0.0"
  92. caqti-lwt = "1.0.0"
  93. caqti-type-calendar = "1.0.0"
  94. catala-format >= "0.2.0"
  95. cbor >= "0.3"
  96. cconv >= "0.5"
  97. cdrom >= "0.9.4"
  98. certify >= "0.3.0"
  99. cfg >= "2.2.0" & < "2.3.0"
  100. cfstream
  101. charInfo_width
  102. charrua
  103. charrua-client
  104. charrua-server
  105. charrua-unix
  106. chase
  107. checkseum = "0.0.3"
  108. choice >= "0.4"
  109. cinaps = "v0.12.0" | = "v0.13.0"
  110. clap < "0.2.0"
  111. cohttp >= "1.1.1" & < "4.0.0"
  112. cohttp-async < "4.1.2"
  113. cohttp-lwt < "4.1.2"
  114. cohttp-lwt-jsoo < "5.3.0"
  115. cohttp-lwt-unix < "4.0.0"
  116. coin >= "0.1.1"
  117. colombe < "0.2.0"
  118. color = "0.2.0"
  119. color-brewery < "0.2"
  120. command_rpc < "v0.14.0"
  121. conduit < "2.3.0"
  122. conduit-async < "5.1.0"
  123. conduit-lwt < "2.3.0"
  124. conduit-lwt-unix < "2.3.0"
  125. conduit-mirage < "6.2.2"
  126. conex >= "0.10.0" & < "1.0.0"
  127. conex-mirage-crypto < "1.0.0"
  128. containers < "3.7"
  129. containers-data < "3.7"
  130. containers-thread < "3.7"
  131. coq-serapi < "8.11.0+0.11.1"
  132. core < "v0.14.0"
  133. core_bench < "v0.14.0"
  134. core_extended < "v0.14.0"
  135. core_kernel < "v0.14.0"
  136. core_profiler < "v0.14.0"
  137. cow = "2.4.0"
  138. cowabloga >= "0.5.0"
  139. cpm >= "5.0.0" & < "12.1.2"
  140. cppo >= "1.6.6" & < "1.6.9"
  141. cppo_ocamlbuild >= "1.6.6" & < "1.6.9"
  142. crc >= "2.1.0"
  143. crlibm >= "0.3" & < "0.5"
  144. crontab
  145. crowbar = "0.2"
  146. crunch < "4.0.0"
  147. csexp-query
  148. cstruct < "5.2.0"
  149. cstruct-lwt < "5.2.0"
  150. cstruct-sexp < "5.2.0"
  151. csv >= "2.1"
  152. csv-lwt >= "2.1"
  153. csvfields < "v0.14.0"
  154. csvtool
  155. ctypes-zarith
  156. cuid >= "0.2"
  157. curve-sampling
  158. cviode < "0.0.4"
  159. daft >= "0.0.4"
  160. dataframe
  161. datakit-server >= "0.12.2" & < "1.0.0"
  162. datakit-server-9p >= "0.12.2" & < "1.0.0"
  163. datalog = "0.6"
  164. decoders >= "0.1.2" & < "0.5.0"
  165. decoders-bencode < "0.5.0"
  166. decoders-cbor < "0.5.0"
  167. decoders-ezjsonm >= "0.1.2" & < "0.5.0"
  168. decoders-jsonm < "0.5.0"
  169. decoders-sexplib < "0.5.0"
  170. decoders-yojson >= "0.1.2" & < "0.5.0"
  171. decompress >= "0.8.1" & < "1.3.0"
  172. delimited_parsing < "v0.14.0"
  173. depyt
  174. devkit >= "1.0" & < "1.20210120"
  175. diet
  176. disml
  177. dispatch >= "0.4.1"
  178. dispatch-js
  179. dlm >= "0.3.1"
  180. dns < "7.0.3"
  181. dns-client < "7.0.3"
  182. dns-lwt
  183. docker-api >= "0.2" & < "0.2.2"
  184. dockerfile < "8.1.0"
  185. dockerfile-cmd < "8.2.7"
  186. dokeysto >= "3.0.0" & < "3.0.2"
  187. dokeysto_camltc < "3.0.2"
  188. dokeysto_lz4 >= "3.0.0" & < "3.0.2"
  189. dolmen >= "0.4" & < "0.5"
  190. domain-name
  191. dropbox
  192. dropbox_lwt_unix
  193. dtoa = "0.3.2"
  194. duff = "0.2"
  195. dune-configurator < "2.5.1"
  196. dune-release >= "1.0.0" & < "1.4.0"
  197. duration
  198. easy_logging < "0.5"
  199. easy_logging_yojson < "0.5"
  200. ecaml < "v0.14.0"
  201. edn < "0.2.0"
  202. eigen >= "0.1.0" & < "0.1.6"
  203. elasticsearch-cli >= "0.5"
  204. email_message < "v0.14.0"
  205. emile >= "0.4"
  206. encore >= "0.2" & < "0.5"
  207. epictetus
  208. eqaf >= "0.2" & < "0.8"
  209. esgg
  210. ethernet
  211. exenum >= "0.86"
  212. expect_test_helpers
  213. expect_test_helpers_kernel
  214. extlib >= "1.7.9"
  215. ezcurl < "0.3"
  216. ezcurl-lwt < "0.3"
  217. ezgzip >= "0.2.3"
  218. ezjsonm >= "1.0.0" & < "1.2.0"
  219. ezjsonm-lwt < "1.3.0"
  220. ezsqlite >= "0.4"
  221. ezxmlm >= "1.1.0"
  222. facteur
  223. fat-filesystem >= "0.13.0"
  224. fd-send-recv >= "2.0.1"
  225. feat
  226. feat-core
  227. feat-num
  228. fftw3
  229. fieldslib = "v0.13.0"
  230. fix >= "20181206"
  231. fluent-logger
  232. freetds >= "0.7"
  233. fswatch
  234. fswatch_async
  235. fswatch_lwt
  236. gemini
  237. gen >= "0.5.3"
  238. genspir >= "1.0.0"
  239. get_line >= "4.0.1" & < "7.0.0"
  240. git < "3.2.0"
  241. git-http
  242. git-unix < "3.2.0"
  243. github = "4.0.0"
  244. github-hooks
  245. github-hooks-unix >= "0.5.0"
  246. github-unix >= "4.0.0" & < "4.2.0"
  247. glfw-ocaml < "3.3.1"
  248. gluten < "0.4.0"
  249. gluten-async < "0.4.0"
  250. gluten-lwt < "0.4.0"
  251. gluten-lwt-unix < "0.4.0"
  252. gluten-mirage < "0.4.0"
  253. gmap
  254. gnuplot
  255. gobject-introspection
  256. gperftools
  257. graphql >= "0.8.0" & < "0.14.0"
  258. graphql-async >= "0.8.0" & < "0.14.0"
  259. graphql-cohttp >= "0.9.0" & < "0.14.0"
  260. graphql-lwt >= "0.8.0" & < "0.14.0"
  261. graphql_parser >= "0.9.0" & < "0.14.0"
  262. graphql_ppx < "1.0.1"
  263. grenier < "0.15"
  264. gsl = "1.24.0"
  265. h2 < "0.5.0"
  266. h2-lwt < "0.5.0"
  267. h2-lwt-unix < "0.5.0"
  268. h2-mirage < "0.5.0"
  269. hacl-star
  270. hacl-star-raw >= "0.5.0"
  271. hardcaml < "v0.14.0"
  272. hardcaml_waveterm < "v0.14.0"
  273. hdf5
  274. headache < "1.07"
  275. herdtools7 >= "7.54" & < "7.57"
  276. hex >= "1.3.0"
  277. hkdf
  278. hts_shrink < "2.1.2"
  279. httpaf >= "0.6.0"
  280. httpaf-async >= "0.6.0"
  281. httpaf-lwt-unix
  282. hvsock >= "2.0.0"
  283. ISO8601 >= "0.2.6"
  284. i3ipc
  285. icalendar
  286. idd
  287. incr_dom < "v0.14.0"
  288. incr_dom_keyboard < "v0.14.0"
  289. incr_dom_partial_render < "v0.14.0"
  290. incr_dom_widgets
  291. incr_map < "v0.14.0"
  292. incr_select < "v0.14.0"
  293. incremental < "v0.14.0"
  294. incremental_cycles
  295. influxdb < "0.3.0"
  296. influxdb-async < "0.3.0"
  297. influxdb-lwt < "0.3.0"
  298. integers >= "0.3.0"
  299. integers_stubs_js
  300. integration1d >= "0.5.1"
  301. interface-prime
  302. interface-prime-lwt
  303. interval >= "1.5" & < "1.6"
  304. interval_base < "1.6"
  305. interval_crlibm
  306. interval_intel
  307. io-page < "2.4.0"
  308. io-page-unix
  309. ipaddr >= "2.9.0" & < "5.6.0"
  310. irc-client >= "0.6.2"
  311. irc-client-lwt >= "0.6.2"
  312. irc-client-lwt-ssl
  313. irc-client-tls >= "0.6.2"
  314. irc-client-unix >= "0.6.2"
  315. iso639
  316. iter < "1.6"
  317. jane-street-headers >= "v0.12.0" & < "v0.14.0"
  318. jbuilder >= "transition"
  319. jemalloc >= "0.2"
  320. jhupllib
  321. json_decoder
  322. jst-config < "v0.14.0"
  323. junit >= "2.0.1" & < "2.2.0"
  324. junit_alcotest >= "2.0.1" & < "2.2.0"
  325. junit_ounit >= "2.0.1" & < "2.2.0"
  326. jupyter
  327. jupyter-archimedes < "2.7.3"
  328. jupyter-kernel
  329. jwto < "0.2.0"
  330. kappa-agents < "4.1.3"
  331. kappa-binaries < "4.1.3"
  332. kappa-library < "4.1.3"
  333. kappa-server
  334. ke < "0.5"
  335. key-parsers >= "0.10.1" & < "1.0.1"
  336. kicadsch >= "0.4.0"
  337. kinetic-client >= "0.0.11"
  338. lacaml >= "11.0.2" & < "11.0.5"
  339. lambda-term >= "2.0" & < "3.3.0"
  340. lambdasoup >= "0.6.4" & < "0.7.3"
  341. landmarks < "1.4"
  342. launchd >= "1.3"
  343. lazy-trie
  344. lbfgs >= "0.9.1"
  345. lbvs_consent >= "2.0.0"
  346. ldap = "2.4.1"
  347. lens >= "1.2.4"
  348. letsencrypt
  349. letsencrypt-app
  350. letsencrypt-dns
  351. letsencrypt-mirage
  352. line-up-words < "v0.14.0"
  353. linenoise >= "1.3.1"
  354. lmdb = "1.0"
  355. logical
  356. logs-async < "1.3"
  357. logs-async-reporter < "1.3"
  358. logs-syslog
  359. lpd
  360. lun >= "0.0.2"
  361. lwt < "4.3.0"
  362. lwt-dllist
  363. lwt-parallel
  364. lwt-pipe
  365. lwt-watcher < "0.2"
  366. lwt_glib >= "1.1.1"
  367. lwt_log >= "1.1.1"
  368. lwt_ppx >= "1.2.2" & < "2.0.2"
  369. lwt_react >= "1.1.2" & < "1.1.4"
  370. lwt_ssl >= "1.1.3"
  371. lz4_chans
  372. macaddr < "5.6.0"
  373. magic-mime >= "1.1.1"
  374. malfunction < "0.5"
  375. markup >= "0.8.0" & < "1.0.0-1"
  376. markup-lwt
  377. mastodon-archive-viewer >= "0.2" & < "0.4.0"
  378. matplotlib
  379. mccs
  380. mechaml < "1.2.0"
  381. memcad
  382. memprof-limits
  383. merge-fmt < "0.4"
  384. merlin-extend
  385. mesh >= "0.9.5"
  386. mesh-easymesh >= "0.9.5"
  387. mesh-graphics >= "0.9.5"
  388. mesh-triangle >= "0.9.5"
  389. metrics
  390. metrics-influx
  391. metrics-lwt
  392. metrics-rusage
  393. metrics-unix
  394. mew
  395. mew_vi
  396. mindstorm >= "0.8.1"
  397. mindstorm-lwt
  398. minicli >= "5.0.0"
  399. minisat >= "0.2" & < "0.6"
  400. mirage-block
  401. mirage-block-combinators
  402. mirage-block-lwt
  403. mirage-block-ramdisk
  404. mirage-block-unix
  405. mirage-block-xen
  406. mirage-channel >= "3.2.0"
  407. mirage-channel-lwt
  408. mirage-clock < "4.2.0"
  409. mirage-clock-lwt
  410. mirage-clock-unix < "4.2.0"
  411. mirage-conduit
  412. mirage-console
  413. mirage-console-lwt
  414. mirage-device
  415. mirage-dns
  416. mirage-flow
  417. mirage-flow-combinators
  418. mirage-flow-lwt
  419. mirage-flow-unix
  420. mirage-fs
  421. mirage-fs-lwt
  422. mirage-kv >= "2.0.0"
  423. mirage-kv-lwt >= "2.0.0"
  424. mirage-kv-mem
  425. mirage-kv-unix < "3.0.0"
  426. mirage-monitoring
  427. mirage-nat
  428. mirage-net
  429. mirage-net-lwt
  430. mirage-net-macosx >= "1.6.0"
  431. mirage-net-unix
  432. mirage-net-xen
  433. mirage-profile
  434. mirage-protocols
  435. mirage-protocols-lwt
  436. mirage-qubes
  437. mirage-qubes-ipv4
  438. mirage-random
  439. mirage-stack
  440. mirage-stack-lwt
  441. mirage-time
  442. mirage-time-lwt
  443. mirage-time-unix
  444. mirage-types >= "3.6.0"
  445. mirage-types-lwt >= "3.6.0"
  446. mkaudio = "1.1.0"
  447. mlpost-lablgtk
  448. mlt_parser < "v0.14.0"
  449. mmap
  450. mmdb
  451. mock >= "0.1.1"
  452. mock-ounit >= "0.1.1"
  453. molenc < "5.0.0"
  454. morbig >= "0.10.3" & < "0.11.0"
  455. morsmall
  456. moss >= "0.1.1"
  457. mpris
  458. mpris-clients
  459. mrmime < "0.4.0"
  460. msat >= "0.8"
  461. msat-bin
  462. multipart-form-data >= "0.3.0"
  463. mustache = "3.1.0"
  464. mutf8
  465. mwt
  466. naboris
  467. nbd = "4.0.3"
  468. netlink >= "0.3.4"
  469. netsnmp < "v0.14.0"
  470. notty_async = "v0.13.0"
  471. npy >= "0.0.8"
  472. nsq < "0.5.0"
  473. obeam
  474. obus >= "1.2.1"
  475. ocal >= "0.2.2"
  476. ocaml-compiler-libs >= "v0.12.0" & != "v0.12.4"
  477. ocaml-migrate-parsetree-ocamlbuild
  478. ocaml-monadic = "0.4.1"
  479. ocaml-r >= "0.1.1" & < "0.4.0"
  480. ocaml-version = "3.5.0"
  481. ocaml_plugin < "v0.14.0"
  482. ocolor
  483. ocp-browser >= "1.2.1"
  484. ocp-indent >= "1.7.0" & < "1.9.0"
  485. ocp-indent-nlfork
  486. ocp-index
  487. ocplib-endian >= "1.1"
  488. ocplib-json-typed >= "0.7"
  489. ocplib-json-typed-browser
  490. ocplib-json-typed-bson
  491. odepack >= "0.6.9"
  492. odoc < "2.1.1"
  493. offheap
  494. olinq >= "0.3"
  495. opam-client >= "2.0.2" & < "2.1.0"
  496. opam-core >= "2.0.2" & < "2.1.0"
  497. opam-custom-install
  498. opam-devel >= "2.0.2" & < "2.1.0"
  499. opam-file-format = "2.1.0" | >= "2.1.2" & < "2.1.5"
  500. opam-format >= "2.0.2" & < "2.1.0"
  501. opam-installer >= "2.0.2" & < "2.1.0"
  502. opam-package-upgrade >= "0.2"
  503. opam-publish >= "2.0.2"
  504. opam-repository >= "2.0.2" & < "2.1.0"
  505. opam-solver >= "2.0.2" & < "2.1.0"
  506. opam-state >= "2.0.2" & < "2.1.0"
  507. opasswd
  508. open >= "0.2.2"
  509. openai-gym
  510. opencc0
  511. opencc1
  512. opencc1_1
  513. opium < "0.18.0"
  514. opium_kernel >= "0.17.0" & < "0.18.0"
  515. oplsr
  516. opti
  517. optimization1d >= "0.6.1"
  518. optint
  519. oranger >= "2.0.1"
  520. ordma >= "0.0.5"
  521. orec >= "1.0.1"
  522. orewa
  523. orpie
  524. orrandomForest
  525. orsvm_e1071 >= "3.0.2"
  526. orun
  527. orxgboost >= "1.1.0"
  528. oseq >= "0.2"
  529. osx-secure-transport
  530. otf
  531. otr
  532. owee < "0.5"
  533. owl >= "0.4.0" & < "0.7.0"
  534. owl-base >= "0.4.0" & < "0.6.0"
  535. owl-jupyter
  536. owl-ode != "0.0.9" & < "0.3.0"
  537. owl-ode-base < "0.3.0"
  538. owl-ode-odepack < "0.3.0"
  539. owl-ode-sundials < "0.3.0"
  540. owl-opt
  541. owl-opt-lbfgs
  542. owl-plplot < "0.6.0"
  543. owl-top >= "0.4.0" & < "0.7.0"
  544. owl-zoo >= "0.4.0" & < "0.7.0"
  545. p4pp
  546. pam < "v0.14.0"
  547. parany >= "9.0.0"
  548. pardi < "2.0.2"
  549. parsexp = "v0.13.0"
  550. parsexp_io < "v0.14.0"
  551. patdiff < "v0.14.0"
  552. patience_diff < "v0.14.0"
  553. pcap-format >= "0.5.2"
  554. pcre >= "7.3.5" & < "7.4.2"
  555. pds-reachability >= "0.2.2"
  556. pecu >= "0.2"
  557. pf-qubes
  558. pkcs11 >= "0.18.0" & < "1.0.1"
  559. pkcs11-cli < "1.0.1"
  560. pkcs11-driver < "1.0.1"
  561. pkcs11-rev < "1.0.1"
  562. pla = "1.3"
  563. plotkicadsch
  564. pomap < "4.1.2"
  565. posixat < "v0.14.0"
  566. postgres_async < "v0.14.0"
  567. postgresql >= "4.4.1" & < "4.5.1"
  568. pprint >= "20200226"
  569. ppx_assert < "v0.14.0"
  570. ppx_base < "v0.14.0"
  571. ppx_bench < "v0.14.0"
  572. ppx_bin_prot < "v0.14.0"
  573. ppx_blob >= "0.6.0" & < "0.8.0"
  574. ppx_cold < "v0.14.0"
  575. ppx_compare < "v0.14.0"
  576. ppx_compose >= "0.1.0"
  577. ppx_conv_func < "v0.14.0"
  578. ppx_cstruct < "5.2.0"
  579. ppx_cstubs
  580. ppx_csv_conv < "v0.14.0"
  581. ppx_custom_printf < "v0.14.0"
  582. ppx_derivers >= "1.2.1"
  583. ppx_deriving
  584. ppx_deriving_cmdliner
  585. ppx_deriving_hardcaml < "v0.14.0"
  586. ppx_deriving_protobuf
  587. ppx_deriving_yojson
  588. ppx_enumerate < "v0.14.0"
  589. ppx_expect < "v0.14.0"
  590. ppx_factory
  591. ppx_fail < "v0.14.0"
  592. ppx_fields_conv < "v0.14.0"
  593. ppx_gen_rec = "1.1.0"
  594. ppx_hash < "v0.14.0"
  595. ppx_here < "v0.14.0"
  596. ppx_import < "1.9.0"
  597. ppx_inline_test < "v0.13.1"
  598. ppx_jane < "v0.14.0"
  599. ppx_js_style < "v0.14.0"
  600. ppx_jsobject_conv < "0.9.0"
  601. ppx_let < "v0.14.0"
  602. ppx_module_timer < "v0.14.0"
  603. ppx_mysql
  604. ppx_optcomp < "v0.14.0"
  605. ppx_optional < "v0.14.0"
  606. ppx_pattern_bind < "v0.14.0"
  607. ppx_pipebang < "v0.14.0"
  608. ppx_protocol_conv
  609. ppx_protocol_conv_json
  610. ppx_protocol_conv_jsonm
  611. ppx_protocol_conv_msgpack
  612. ppx_protocol_conv_xml_light
  613. ppx_protocol_conv_xmlm
  614. ppx_protocol_conv_yaml
  615. ppx_python < "v0.14.0"
  616. ppx_regexp >= "0.4.0" & < "0.4.3"
  617. ppx_sexp_conv < "v0.14.0"
  618. ppx_sexp_message < "v0.14.0"
  619. ppx_sexp_value < "v0.14.0"
  620. ppx_stable < "v0.14.0"
  621. ppx_tools
  622. ppx_tools_versioned
  623. ppx_typerep_conv < "v0.14.0"
  624. ppx_tyre < "0.4.3"
  625. ppx_variants_conv < "v0.14.0"
  626. ppx_wideopen
  627. ppx_xml_conv < "v0.14.0"
  628. ppx_yojson_conv < "v0.14.0"
  629. ppx_yojson_conv_lib < "v0.14.0"
  630. printbox >= "0.2" & < "0.6"
  631. prof_spacetime
  632. prometheus >= "0.6" & < "1.2"
  633. prometheus-app >= "0.6" & < "1.2"
  634. promise
  635. protocol-9p >= "1.0.0"
  636. protocol-9p-tool >= "1.0.0"
  637. protocol-9p-unix >= "1.0.0"
  638. protocol_version_header < "v0.14.0"
  639. pure-splitmix >= "0.3"
  640. purl
  641. py >= "1.1" & < "1.3"
  642. pythonlib < "v0.14.0"
  643. qcheck >= "0.13" & < "0.25"
  644. qcheck-core < "0.25"
  645. qcheck-ounit < "0.25"
  646. qmp >= "0.19.0"
  647. qtest >= "2.10"
  648. radare2 = "0.0.3"
  649. randomconv
  650. range < "0.7"
  651. rangeSet
  652. rankers
  653. rawlink < "2.1"
  654. re = "1.9.0"
  655. re2 < "v0.14.0"
  656. reactiveData = "0.3.0"
  657. reason < "3.8.1"
  658. record_builder < "v0.14.0"
  659. redis >= "0.4"
  660. redis-lwt >= "0.4"
  661. redis-sync >= "0.4"
  662. reed-solomon-erasure >= "1.0.2"
  663. reedsolomon
  664. res = "5.0.1"
  665. resource_cache < "v0.14.0"
  666. resp < "0.10.0"
  667. resp-client < "0.10.0"
  668. resp-mirage < "0.10.0"
  669. resp-server >= "0.9" & < "0.10.0"
  670. resp-unix < "0.10.0"
  671. result
  672. rfc1951 >= "0.8.1" & != "1.0.0" & < "1.3.0"
  673. rfc6287 >= "1.0.4"
  674. rfc7748
  675. rhythm
  676. root1d >= "0.5.1"
  677. rope >= "0.6.2"
  678. rosetta
  679. routes >= "0.7.2" & < "1.0.0"
  680. rpc_parallel < "v0.14.0"
  681. rtop < "3.8.1"
  682. rungen
  683. salsa20-core >= "1.0.0"
  684. scgi
  685. searchTree
  686. secp256k1 >= "0.4.1"
  687. secp256k1-internal < "0.2.0"
  688. sedlex < "2.1"
  689. semver2
  690. sendmail < "0.2.0"
  691. sendmail-lwt < "0.2.0"
  692. sequencer_table < "v0.14.0"
  693. session >= "0.4.1"
  694. session-cohttp >= "0.4.1"
  695. session-cohttp-async >= "0.4.1"
  696. session-cohttp-lwt >= "0.4.1"
  697. session-postgresql >= "0.4.1"
  698. session-postgresql-async
  699. session-postgresql-lwt
  700. session-redis-lwt >= "0.4.1"
  701. session-webmachine >= "0.4.1"
  702. setcore < "1.0.2"
  703. sexp < "v0.14.0"
  704. sexp_diff_kernel < "v0.14.0"
  705. sexp_macro < "v0.14.0"
  706. sexp_pretty < "v0.14.0"
  707. sexp_select < "v0.14.0"
  708. sexplib = "v0.13.0"
  709. sexplib0 >= "v0.12.0" & < "v0.14.0"
  710. sgf
  711. shapefile
  712. shared-memory-ring
  713. shared-memory-ring-lwt
  714. shell < "v0.14.0"
  715. shexp < "v0.14.0"
  716. slacko
  717. smtlib-utils < "0.4"
  718. snappy
  719. spacetime_lib
  720. spawn = "v0.13.0"
  721. spelll >= "0.3"
  722. splay_tree < "v0.14.0"
  723. splittable_random < "v0.14.0"
  724. spotify-web-api
  725. sqlite3 = "4.4.1"
  726. sqlite3_utils
  727. ssh-agent >= "0.2.0"
  728. ssl >= "0.5.6" & < "0.5.10"
  729. stdio < "v0.14.0"
  730. stdlib-diff
  731. stdlib-shims
  732. stitch
  733. string_dict < "v0.14.0"
  734. stringext >= "1.6.0"
  735. sturgeon >= "0.4.2"
  736. subscriptions-transport-ws
  737. swagger >= "0.2.0"
  738. syndic >= "1.6.0"
  739. syslog < "2.0.1"
  740. syslog-message >= "1.0.0" & < "1.2.0"
  741. tablecloth-native < "0.0.8"
  742. tensorboard
  743. tensorflow
  744. textrazor
  745. textutils < "v0.14.0"
  746. textutils_kernel < "v0.14.0"
  747. textwrap >= "0.2.1"
  748. thrift
  749. tidy
  750. time_now < "v0.14.0"
  751. timezone < "v0.14.0"
  752. tiny_httpd < "0.8"
  753. tiny_httpd_camlzip < "0.8"
  754. tip-parser >= "0.4"
  755. tldr
  756. tls >= "0.12.8" & < "0.15.4"
  757. tls-async < "0.17.0"
  758. tls-mirage < "0.15.4"
  759. toml < "7.0.0"
  760. toml-cconv
  761. toml_cconv < "7.0.0"
  762. toplevel_backend < "v0.14.0"
  763. toplevel_expect_test < "v0.14.0"
  764. topological_sort < "v0.14.0"
  765. torch < "v0.16.0"
  766. tqdm
  767. travesty < "0.5.1"
  768. tree_layout >= "0.2"
  769. trie
  770. tube >= "4.4.0"
  771. tuntap
  772. typerep = "v0.13.0"
  773. tyre = "0.5"
  774. tyxml >= "4.3.0" & < "4.5.0"
  775. tyxml-jsx < "4.5.0"
  776. tyxml-ppx >= "4.3.0" & < "4.5.0"
  777. tyxml-syntax < "4.5.0"
  778. ubpf < "0.2"
  779. ulid
  780. unionFind < "20250818"
  781. unison < "2.51.5"
  782. uri >= "2.2.1"
  783. uri-bench
  784. uri-re
  785. uri-sexp
  786. uritemplate
  787. user-agent-parser
  788. utop < "2.13.0"
  789. uuuu >= "0.1.1"
  790. variantslib = "v0.13.0"
  791. vchan
  792. vchan-unix
  793. vchan-xen
  794. vhd-format >= "0.12.0" & < "0.13.0"
  795. vhd-format-lwt < "0.13.0"
  796. virtual_dom < "v0.14.0"
  797. vmnet
  798. vocal
  799. weberizer >= "0.8"
  800. webmachine >= "0.6.2"
  801. websocket >= "2.12" & < "2.15"
  802. websocket-async < "2.15"
  803. websocket-lwt
  804. websocket-lwt-unix < "2.15"
  805. websocketaf
  806. webtest
  807. webtest-js
  808. wikitext
  809. win-error >= "1.0"
  810. win-eventlog = "0.3"
  811. ws
  812. wseg
  813. wtf8 >= "1.0.2"
  814. x509 < "1.0.6"
  815. xapi-backtrace < "0.8"
  816. xapi-inventory
  817. xapi-rrd < "1.9.0"
  818. xdg-basedir < "0.0.5"
  819. xen-evtchn
  820. xen-evtchn-unix
  821. xen-gnt
  822. xen-gnt-unix
  823. xenstore < "2.4.0"
  824. xenstore_transport >= "1.1.0" & < "1.5.0"
  825. yaml >= "1.0.0" & < "3.1.0"
  826. yaml-sexp < "3.1.0"
  827. yara >= "0.2"
  828. yojson >= "1.5.0" & < "2.0.1"
  829. yojson-bench
  830. yurt >= "0.6"
  831. yuscii >= "0.2.0"
  832. zarith_stubs_js < "v0.14.0"
  833. zed >= "2.0.6" & < "3.2.0"
  834. zeit
  835. zlib
  836. zmq >= "5.1.0" & < "5.1.4"
  837. zmq-async >= "5.1.0" & < "5.1.4"
  838. zmq-lwt >= "5.1.0" & < "5.1.4"
  839. zstandard < "v0.14.0"
  840. zxcvbn >= "2.3+2"

Conflicts (2)

  1. odoc < "1.3.0"
  2. jbuilder != "transition"