package dune

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

Install

Dune Dependency

Authors

Maintainers

Sources

dune-2.0.1.tbz
sha256=e04090c846f005f1cc02c390e963a7efe74c653ce2c5c7fd2e7e30a06ceadcb7
sha512=8c973ccfa1de0ff7173e17dac74ea850446a057866d47c7a100b271c7e440d5e607f1bfaa8fa5b756e0439492276e8c6615fac30cbff9ea900dc8e891f7ba4d3

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, has very low-overhead, and supports parallel builds on all platforms. It has no system dependencies; all you need to build dune or packages using dune is OCaml. You don't need 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: 19 Dec 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.

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
$ make install

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

$ ocaml bootstrap.ml
$ ./dune.exe build -p dune --profile dune-bootstrap
$ ./dune.exe install dune --build-dir _boot

The first command build the dune.exe binary. The second builds the additional files that are installed by dune, such as the man pages and the last simply installs all of that on the system.

Note that unless you ran the optional ./configure script, you can simply copy dune.exe anywhere and it will just works. dune is fully relocatable and discovers its environment at runtime rather than hard-coding it at compilation time.

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. Note that dune retains backward compatibility with Jbuilder, and in particular existing Jbuilder projects will continue to be buildable with dune.

Dependencies (5)

  1. base-threads
  2. base-unix
  3. ocamlfind-secondary
  4. ocaml >= "4.02" & < "4.06~~"
  5. ocaml >= "4.06" & < "4.12"

Dev Dependencies

None

  1. 0install >= "2.15.1" & < "2.16"
  2. 0install-gtk < "2.16"
  3. ANSITerminal >= "0.8.1"
  4. absolute
  5. abstract_algebra < "v0.17.0"
  6. accessor < "v0.17.0"
  7. accessor_async < "v0.17.0"
  8. accessor_base < "v0.17.0"
  9. accessor_core < "v0.17.0"
  10. acgtk >= "1.4.0" & < "2.0.0"
  11. aches
  12. aches-lwt
  13. acpc >= "2.0.0"
  14. ahrocksdb
  15. aifad >= "2.2.1" & < "2.3.0"
  16. alba >= "0.4.1"
  17. albatross < "1.5.0"
  18. alcotest >= "0.8.5" & < "1.2.3"
  19. alcotest-async >= "0.8.5" & < "1.2.3"
  20. alcotest-lwt >= "0.8.5" & < "1.2.3"
  21. alcotest-mirage < "1.2.3"
  22. alg_structs
  23. alg_structs_qcheck
  24. algaeff
  25. alsa >= "0.3.0"
  26. alt-ergo >= "2.3.0" & < "2.4.3"
  27. alt-ergo-free >= "2.3.3"
  28. alt-ergo-lib < "2.4.3"
  29. alt-ergo-lib-free
  30. alt-ergo-parsers < "2.4.3"
  31. alt-ergo-parsers-free
  32. altgr-ergo >= "2.3.0" & < "2.4.3"
  33. amf >= "0.1.2"
  34. amqp-client >= "2.0.3"
  35. amqp-client-async >= "2.0.3"
  36. amqp-client-lwt >= "2.0.3"
  37. anders
  38. angstrom >= "0.11.1"
  39. angstrom-async >= "0.11.1"
  40. angstrom-lwt-unix >= "0.11.1"
  41. angstrom-unix >= "0.11.1"
  42. ansi < "0.6.0"
  43. anthill
  44. ao >= "0.2.2" & < "0.2.4"
  45. archetype < "1.2.3"
  46. archi < "0.2.0"
  47. archi-async < "0.2.0"
  48. archi-lwt < "0.2.0"
  49. argon2 >= "1.0.0"
  50. arp >= "1.0.0" & < "2.3.1"
  51. arp-mirage
  52. asak
  53. asn1-combinators >= "0.2.2"
  54. async >= "v0.12.0" & < "v0.17.0"
  55. async-uri < "0.4.0"
  56. async_durable >= "v0.12.0" & < "v0.17.0"
  57. async_extra >= "v0.12.0" & < "v0.17.0"
  58. async_find >= "v0.12.0" & < "v0.17.0"
  59. async_graphics >= "0.7.0"
  60. async_inotify >= "v0.12.0" & < "v0.17.0"
  61. async_interactive >= "v0.12.0" & < "v0.17.0"
  62. async_js >= "v0.12.0" & < "v0.17.0"
  63. async_kernel >= "v0.12.0" & < "v0.17.0"
  64. async_rpc_kernel >= "v0.12.0" & < "v0.17.0"
  65. async_rpc_websocket < "v0.17.0"
  66. async_sendfile >= "v0.12.0" & < "v0.17.0"
  67. async_shell >= "v0.12.0" & < "v0.17.0"
  68. async_smtp >= "v0.12.0" & < "v0.17.0"
  69. async_ssl >= "v0.12.0" & < "v0.17.0"
  70. async_udp < "v0.17.0"
  71. async_unix >= "v0.12.0" & < "v0.17.0"
  72. async_websocket < "v0.17.0"
  73. atd = "2.2.1"
  74. atdgen = "2.2.1"
  75. atdgen-codec-runtime < "2.3.3"
  76. atdgen-runtime = "2.2.1"
  77. atdj = "2.2.1"
  78. atds < "2.3.3"
  79. atomic < "base"
  80. avro
  81. avro-compiler
  82. awa < "0.1.0"
  83. awa-lwt < "0.1.0"
  84. awa-mirage < "0.1.0"
  85. aws-s3 >= "4.0.0"
  86. aws-s3-async >= "4.0.0"
  87. aws-s3-lwt >= "4.0.0"
  88. azblob
  89. azblob-async
  90. azure-cosmos-db < "0.2.0"
  91. babel < "v0.17.0"
  92. bag
  93. bark
  94. base >= "v0.12.0" & < "v0.17.0"
  95. base64 >= "2.3.0" & < "3.5.1"
  96. base_bigstring < "v0.17.0"
  97. base_quickcheck >= "v0.12.1" & < "v0.17.0"
  98. base_trie < "v0.17.0"
  99. bastet >= "1.2.4"
  100. batsat < "0.7"
  101. bddrand
  102. bechamel
  103. bechamel-js
  104. bechamel-notty
  105. bechamel-perf
  106. beluga = "1.0"
  107. benchmark >= "1.6"
  108. benchpress
  109. benchpress-server
  110. bencode >= "2.0"
  111. bheap >= "2.0.0"
  112. bidirectional_map < "v0.17.0"
  113. bigarray-compat
  114. bigdecimal < "v0.17.0"
  115. bignum >= "v0.12.0" & < "v0.17.0"
  116. bigstring >= "0.3"
  117. bigstring-unix >= "0.3"
  118. bigstringaf >= "0.5.0" & < "0.7.0"
  119. bimage
  120. bimage-display
  121. bimage-gtk
  122. bimage-io
  123. bimage-lwt
  124. bimage-sdl
  125. bimage-unix
  126. bimap
  127. bin_prot >= "v0.12.0" & < "v0.17.0"
  128. biniou >= "1.2.1"
  129. biocaml >= "0.9.0"
  130. bisect_ppx >= "1.4.0" & < "2.5.0"
  131. bistro >= "0.5.0"
  132. bistro-bio
  133. bitcoinml >= "0.4.1"
  134. bitlib
  135. bitmasks >= "1.2.0"
  136. bitstring = "3.1.1"
  137. bitv >= "1.4"
  138. bjack >= "0.1.6"
  139. blake2 >= "0.3"
  140. bloomf
  141. bls12-381 < "0.4.1"
  142. bnfgen
  143. bogue < "20210917"
  144. bonsai < "v0.17.0"
  145. bson2
  146. bst >= "6.0.0"
  147. build_path_prefix_map >= "0.3"
  148. builder
  149. bun >= "0.3.4"
  150. bwd
  151. bwrap
  152. bytearray >= "1.0.1"
  153. bytepdf
  154. ca-certs
  155. ca-certs-nss < "3.64.0.1"
  156. cairo2 >= "0.6" & < "0.6.3"
  157. cairo2-gtk
  158. cairo2-pango < "0.6.3"
  159. calculon >= "0.4"
  160. calculon-redis
  161. calculon-redis-lib
  162. calculon-web >= "0.4"
  163. caldav < "0.2.2"
  164. calendar >= "3.0.0"
  165. calendars
  166. callipyge >= "0.2"
  167. camels
  168. camelsnakekebab
  169. camlimages >= "5.0.2" & < "5.0.5"
  170. camlon >= "3.0.0"
  171. camltc >= "0.9.8"
  172. camomile = "1.0.2"
  173. capnp >= "3.3.0" & < "3.5.0"
  174. capnp-rpc >= "0.3.2" & < "1.2.3"
  175. capnp-rpc-lwt >= "0.3.2" & < "1.2.3"
  176. capnp-rpc-mirage >= "0.3.2" & < "1.2.3"
  177. capnp-rpc-net < "1.2.3"
  178. capnp-rpc-unix >= "0.3.2" & < "1.2.3"
  179. caqti >= "1.0.0" & < "2.0.1"
  180. caqti-async >= "1.0.0" & < "2.0.1"
  181. caqti-driver-mariadb >= "1.0.0" & < "2.0.1"
  182. caqti-driver-pgx < "2.1.1"
  183. caqti-driver-postgresql >= "1.0.0" & < "2.0.1"
  184. caqti-driver-sqlite3 >= "1.0.0" & < "2.0.1"
  185. caqti-dynload >= "1.0.0" & < "2.0.1"
  186. caqti-lwt >= "1.0.0" & < "2.0.1"
  187. caqti-type-calendar >= "1.0.0" & < "2.0.1"
  188. catapult
  189. catapult-client
  190. catapult-daemon
  191. catapult-file
  192. catapult-sqlite
  193. cbor >= "0.3"
  194. cconv >= "0.5"
  195. cconv-ppx
  196. cdb
  197. cdrom >= "0.9.4"
  198. ceph
  199. certify >= "0.3.0"
  200. cfg >= "2.2.0" & < "2.3.0"
  201. cfml
  202. cfstream >= "1.3.1"
  203. chacha
  204. charInfo_width
  205. charrua
  206. charrua-client >= "0.11.2"
  207. charrua-client-lwt >= "0.11.2"
  208. charrua-client-mirage >= "0.11.2"
  209. charrua-core >= "0.11.2"
  210. charrua-server
  211. charrua-unix >= "0.11.2"
  212. chartjs
  213. chartjs-annotation
  214. chartjs-colorschemes
  215. chartjs-datalabels
  216. chartjs-streaming
  217. chase
  218. checkseum >= "0.0.3" & < "0.2.1"
  219. choice >= "0.4"
  220. cinaps >= "v0.12.0"
  221. clangml >= "4.0.0" & < "4.8.0"
  222. clangml-transforms >= "0.24"
  223. clap < "0.2.0"
  224. clarity >= "0.4.0"
  225. clz
  226. cmarker
  227. codept = "0.10.3"
  228. cohttp >= "1.1.1" & < "6.0.0~alpha0"
  229. cohttp-async >= "1.1.1" & < "6.0.0~alpha0"
  230. cohttp-lwt >= "1.1.1" & < "6.0.0~alpha0"
  231. cohttp-lwt-jsoo >= "1.1.1" & < "6.0.0~alpha0"
  232. cohttp-lwt-unix >= "1.1.1" & < "6.0.0~alpha0"
  233. cohttp-lwt-unix-nossl
  234. cohttp-lwt-unix-ssl
  235. cohttp-mirage >= "1.1.1" & < "6.0.0~alpha0"
  236. cohttp-top >= "1.1.1" & < "6.0.0~alpha0"
  237. cohttp_async_websocket < "v0.17.0"
  238. cohttp_static_handler < "v0.17.0"
  239. coin >= "0.1.1"
  240. colombe
  241. color >= "0.2.0"
  242. color-brewery
  243. combinat < "3.0"
  244. command_rpc >= "v0.12.0" & < "v0.17.0"
  245. conduit >= "1.3.0"
  246. conduit-async >= "1.3.0"
  247. conduit-async-ssl
  248. conduit-async-tls
  249. conduit-lwt >= "1.3.0"
  250. conduit-lwt-ssl
  251. conduit-lwt-tls
  252. conduit-lwt-unix >= "1.3.0"
  253. conduit-mirage
  254. conduit-tls
  255. conex >= "0.10.0"
  256. conex-mirage-crypto
  257. conex-nocrypto
  258. containers >= "2.4" & < "3.13"
  259. containers-data < "3.13"
  260. containers-thread
  261. content_security_policy < "v0.17.0"
  262. cookie
  263. coq-of-ocaml < "2.4.1"
  264. coq-serapi >= "8.9.0+0.6.0"
  265. core >= "v0.12.0" & < "v0.17.0"
  266. core_bench >= "v0.12.0" & < "v0.17.0"
  267. core_compat
  268. core_extended >= "v0.12.0" & < "v0.17.0"
  269. core_kernel >= "v0.12.3" & < "v0.17.0"
  270. core_profiler >= "v0.12.0" & < "v0.17.0"
  271. core_unix < "v0.17.0"
  272. cow = "2.4.0"
  273. cowabloga >= "0.5.0"
  274. cpm >= "5.0.0" & < "12.1.2"
  275. cppo >= "1.6.6"
  276. cppo_ocamlbuild >= "1.6.6"
  277. cpu
  278. cpuid >= "0.1.2"
  279. crc >= "2.1.0"
  280. crlibm >= "0.3"
  281. crontab
  282. crowbar = "0.2"
  283. crunch >= "2.2.0" & < "3.3.0"
  284. cry = "0.6.5"
  285. cryptokit = "1.16.1"
  286. csexp < "1.1.0" | >= "1.3.2" & < "1.5.2"
  287. cstruct >= "3.3.0"
  288. cstruct-async >= "3.3.0"
  289. cstruct-lwt >= "3.3.0"
  290. cstruct-sexp
  291. cstruct-unix >= "3.3.0"
  292. csv >= "2.2"
  293. csv-lwt >= "2.1"
  294. csvfields >= "v0.12.0" & < "v0.17.0"
  295. csvtool
  296. ctypes-zarith
  297. cudf >= "0.10"
  298. cuid >= "0.2"
  299. current < "0.6"
  300. current_ansi
  301. current_docker < "0.6"
  302. current_examples < "0.6"
  303. current_git < "0.6"
  304. current_github < "0.6"
  305. current_incr < "0.6.0"
  306. current_rpc < "0.6"
  307. current_slack < "0.6"
  308. current_web < "0.6"
  309. curses = "1.0.9"
  310. curve-sampling
  311. cviode
  312. cwe_checker
  313. DrawGrammar >= "0.2.2"
  314. daft >= "0.0.4"
  315. data-encoding < "1.0.0"
  316. dataframe
  317. datakit >= "0.12.2"
  318. datakit-bridge-github >= "0.12.2"
  319. datakit-bridge-local-git >= "0.12.2"
  320. datakit-ci >= "0.12.2"
  321. datakit-client >= "0.12.2"
  322. datakit-client-9p >= "0.12.2"
  323. datakit-client-git >= "0.12.2"
  324. datakit-github >= "0.12.2"
  325. datakit-server >= "0.12.2"
  326. datakit-server-9p >= "0.12.2"
  327. datalog >= "0.6"
  328. daypack-lib
  329. dbf < "0.1.1"
  330. debian-formats >= "0.1.2"
  331. decoders >= "0.1.2" & < "1.0.0"
  332. decoders-bencode < "1.0.0"
  333. decoders-cbor < "1.0.0"
  334. decoders-ezjsonm >= "0.1.2" & < "1.0.0"
  335. decoders-jsonm < "1.0.0"
  336. decoders-msgpck < "1.0.0"
  337. decoders-sexplib < "1.0.0"
  338. decoders-yojson >= "0.1.2" & < "1.0.0"
  339. decompress >= "0.8.1" & < "1.3.0"
  340. dedent < "v0.17.0"
  341. dedukti >= "2.7"
  342. delimited_parsing >= "v0.12.0" & < "v0.17.0"
  343. depyt >= "0.3.0"
  344. devkit >= "1.0"
  345. diet >= "0.2"
  346. diffable
  347. digestif >= "0.7" & < "0.8.1"
  348. disml
  349. dispatch >= "0.4.1"
  350. dispatch-js >= "0.4.1"
  351. distributed >= "0.6.0"
  352. distributed-lwt >= "0.2.0"
  353. distributed-uwt >= "0.2.0"
  354. dkim
  355. dkim-bin
  356. dkim-mirage
  357. dlm >= "0.3.1"
  358. dns >= "1.1.0"
  359. dns-async >= "1.1.0"
  360. dns-certify
  361. dns-cli
  362. dns-client
  363. dns-client-lwt
  364. dns-client-mirage
  365. dns-lwt >= "1.1.0"
  366. dns-lwt-unix >= "1.1.0"
  367. dns-mirage
  368. dns-resolver
  369. dns-server
  370. dns-stub
  371. dns-tsig
  372. dnssec
  373. docker-api >= "0.2" & < "0.2.2"
  374. docker_hub
  375. dockerfile >= "6.0.0" & < "8.1.0"
  376. dockerfile-cmd >= "6.0.0" & < "8.1.0"
  377. dockerfile-opam >= "6.0.0" & < "8.1.0"
  378. dokeysto >= "3.0.1"
  379. dokeysto_camltc >= "3.0.1"
  380. dokeysto_lz4 >= "3.0.2"
  381. dolmen = "0.4.1"
  382. dolog >= "4.0.0"
  383. domain-name >= "0.1.2"
  384. domainslib < "0.5.0"
  385. dot-merlin-reader < "3.5.0"
  386. dotenv
  387. dream-cli < "0.2.0"
  388. dream-encoding < "0.2.0"
  389. dream-livereload < "0.2.0"
  390. dream-serve
  391. dropbox >= "0.2"
  392. dropbox_lwt_unix
  393. dssi = "0.1.3"
  394. dtoa >= "0.3.2"
  395. dtools = "0.4.2"
  396. duff >= "0.2"
  397. dum >= "1.0.2"
  398. dune-action-plugin < "2.3.0"
  399. dune-build-info < "2.3.0"
  400. dune-configurator >= "1.11.4" & < "2.3.0"
  401. dune-glob < "2.3.0"
  402. dune-private-libs < "2.3.0"
  403. dune-release >= "1.0.0" & < "1.4.0"
  404. duppy = "0.9.0"
  405. duration >= "0.1.2"
  406. earley = "2.0.0"
  407. earlybird < "1.0.0"
  408. easy-format = "1.3.2"
  409. easy_logging
  410. easy_logging_yojson
  411. ecaml >= "v0.12.0" & < "v0.17.0"
  412. edn = "0.1.6-1-gff9db95"
  413. eigen >= "0.1.0"
  414. eio-ssl < "0.1.1"
  415. either
  416. elasticsearch-cli >= "0.5"
  417. electrod >= "0.2.1" & < "1.0.0"
  418. elpi >= "1.3.1" & < "1.11.1"
  419. email_message >= "v0.12.0" & < "v0.17.0"
  420. emile >= "0.4"
  421. encore >= "0.3"
  422. env_config < "v0.17.0"
  423. epictetus
  424. eqaf >= "0.2"
  425. eqaf-cstruct
  426. erssical >= "1.1.0"
  427. esgg
  428. ethernet
  429. euler
  430. exenum >= "0.86"
  431. exit
  432. expect_test_helpers >= "v0.12.0"
  433. expect_test_helpers_async < "v0.17.0"
  434. expect_test_helpers_core < "v0.17.0"
  435. expect_test_helpers_kernel >= "v0.12.0"
  436. extlib >= "1.7.9"
  437. ez_pgocaml
  438. ezcurl
  439. ezcurl-lwt
  440. ezdl
  441. ezgzip >= "0.2.3"
  442. ezjs_ace
  443. ezjs_blockies
  444. ezjs_cleave
  445. ezjs_crypto
  446. ezjs_cytoscape
  447. ezjs_d3pie
  448. ezjs_extension
  449. ezjs_fetch < "0.3"
  450. ezjs_idb < "0.1.1"
  451. ezjs_jquery
  452. ezjs_min < "0.2.2"
  453. ezjs_odometer
  454. ezjs_push
  455. ezjs_qrcode
  456. ezjs_recaptcha
  457. ezjs_timeline
  458. ezjsonm >= "1.0.0"
  459. ezjsonm-lwt >= "1.0.0"
  460. ezresto
  461. ezresto-directory
  462. ezsqlite >= "0.4.2"
  463. ezxenstore >= "0.4.1"
  464. ezxmlm >= "1.1.0"
  465. faad = "0.5.0"
  466. facteur
  467. faraday >= "0.7.1"
  468. faraday-async >= "0.7.1"
  469. faraday-lwt >= "0.7.1"
  470. faraday-lwt-unix >= "0.7.1"
  471. farmhash >= "0.4"
  472. fasmifra
  473. fat-filesystem >= "0.13.0"
  474. fd-send-recv >= "2.0.1"
  475. fdkaac = "0.3.2"
  476. feat
  477. feat-core
  478. feat-num
  479. ff < "0.6.0"
  480. ff-pbt < "0.6.0"
  481. ff-sig < "0.6.0"
  482. ffmpeg = "1.0.0~beta1"
  483. ffmpeg-av < "1.0.0~beta2"
  484. ffmpeg-avcodec < "1.0.0~beta2"
  485. ffmpeg-avdevice < "1.0.0~beta2"
  486. ffmpeg-avfilter < "1.0.0~beta2"
  487. ffmpeg-avutil < "1.0.0~beta2"
  488. ffmpeg-swresample < "1.0.0~beta2"
  489. ffmpeg-swscale < "1.0.0~beta2"
  490. fftw3 >= "0.8.2"
  491. fiat-p256 < "0.2.2"
  492. fieldslib >= "v0.12.0" & < "v0.17.0"
  493. file_path < "v0.17.0"
  494. fileutils >= "0.6.1"
  495. fit
  496. fix >= "20181206"
  497. flac = "0.3.0"
  498. flex-array
  499. fmlib < "0.5.3"
  500. fmlib_js >= "0.3.0" & < "0.5.3"
  501. fmlib_parse < "0.5.3"
  502. fmlib_pretty < "0.5.3"
  503. fmlib_std < "0.5.3"
  504. freetds >= "0.7"
  505. frei0r >= "0.1.2"
  506. frenetic >= "5.0.5"
  507. fswatch
  508. fswatch_async
  509. fswatch_lwt
  510. functoria >= "2.2.2" & < "4.0.0~beta1"
  511. functoria-runtime >= "2.2.2" & != "2.2.5" & < "4.0.0~beta1"
  512. fuzzy_compare
  513. fuzzy_match < "v0.17.0"
  514. fzf < "v0.17.0"
  515. General >= "0.6.0"
  516. gapi-ocaml >= "0.3.7"
  517. gbddml
  518. gdbprofiler >= "0.4"
  519. gemini >= "0.3.0"
  520. gen >= "0.5.2"
  521. gen_js_api >= "1.0.6" & < "1.0.8"
  522. genprint
  523. genspir >= "1.0.0"
  524. get_line >= "7.0.0"
  525. gettext >= "0.4.1"
  526. gettext-camomile
  527. gettext-stub
  528. git >= "2.0.0" & < "3.0.0"
  529. git-http >= "2.0.0"
  530. git-mirage >= "2.0.0" & < "3.0.0"
  531. git-unix >= "2.0.0" & < "3.0.0"
  532. github >= "4.0.0" & < "4.4.0"
  533. github-hooks >= "0.4.0"
  534. github-hooks-unix >= "0.4.0"
  535. github-jsoo >= "4.0.0" & < "4.4.0"
  536. github-unix >= "4.0.0" & < "4.4.0"
  537. glfw-ocaml
  538. gluten < "0.5.0"
  539. gluten-async < "0.5.0"
  540. gluten-eio < "0.5.0"
  541. gluten-lwt < "0.5.0"
  542. gluten-lwt-unix < "0.5.0"
  543. gluten-mirage < "0.5.0"
  544. gmap >= "0.2.1"
  545. gnuplot >= "0.6"
  546. gobba
  547. gobject-introspection
  548. google-drive-ocamlfuse >= "0.6.26"
  549. gopcaml-mode >= "0.0.2" & < "0.0.6"
  550. gperftools >= "0.4"
  551. gpr >= "1.4.0"
  552. gr
  553. graphics >= "5.0.0" & < "5.1.1"
  554. graphql >= "0.8.0"
  555. graphql-async >= "0.8.0"
  556. graphql-cohttp >= "0.9.0"
  557. graphql-lwt >= "0.8.0"
  558. graphql_parser >= "0.9.0"
  559. graphql_ppx = "0.7.1"
  560. gremlin
  561. grenier >= "0.8" & < "0.15"
  562. grid
  563. gsl >= "1.24.0" & < "1.25.0"
  564. gstreamer >= "0.3.1"
  565. h2 < "0.10.0"
  566. h2-async < "0.10.0"
  567. h2-lwt < "0.10.0"
  568. h2-lwt-unix < "0.10.0"
  569. h2-mirage < "0.10.0"
  570. hack_parallel >= "1.0.0"
  571. hacl >= "0.3"
  572. hacl-star
  573. hacl-star-raw >= "0.5.0"
  574. hacl_x25519 < "0.2.1"
  575. happy-eyeballs
  576. happy-eyeballs-lwt
  577. happy-eyeballs-mirage
  578. hardcaml >= "v0.12.0" & < "v0.17.0"
  579. hardcaml_axi < "v0.17.0"
  580. hardcaml_c < "v0.17.0"
  581. hardcaml_circuits < "v0.17.0"
  582. hardcaml_fixed_point < "v0.17.0"
  583. hardcaml_handshake < "v0.17.0"
  584. hardcaml_of_verilog < "v0.17.0"
  585. hardcaml_step_testbench < "v0.17.0"
  586. hardcaml_verify < "v0.17.0"
  587. hardcaml_verilator < "v0.17.0"
  588. hardcaml_waveterm < "v0.17.0"
  589. hardcaml_xilinx < "v0.17.0"
  590. hardcaml_xilinx_components < "v0.17.0"
  591. hardcaml_xilinx_reports < "v0.17.0"
  592. hashids >= "1.0.1"
  593. haxe >= "4.1.1"
  594. hc < "0.2"
  595. hdf5 >= "0.1.5"
  596. headache >= "1.04" & < "1.07"
  597. herdtools7 >= "7.55" & < "7.57"
  598. hex >= "1.3.0"
  599. hex_encode < "v0.17.0"
  600. hg_lib < "v0.17.0"
  601. hidapi >= "1.1"
  602. hidapi-lwt
  603. higher_kinded < "v0.17.0"
  604. hkdf >= "1.0.3"
  605. hl_yaml
  606. hockmd
  607. horned_worm >= "0.3.4"
  608. hpack < "0.10.0"
  609. hts_shrink >= "2.0.0" & < "2.1.2"
  610. http-lwt-client
  611. httpaf >= "0.6.0"
  612. httpaf-async >= "0.6.0"
  613. httpaf-lwt-unix
  614. hvsock >= "2.0.0"
  615. hxd < "0.3.0"
  616. ISO8601 >= "0.2.6"
  617. i3ipc >= "0.1.4"
  618. icalendar
  619. idd
  620. idds
  621. incr_dom >= "v0.12.0" & < "v0.17.0"
  622. incr_dom_interactive < "v0.17.0"
  623. incr_dom_keyboard
  624. incr_dom_partial_render < "v0.17.0"
  625. incr_dom_sexp_form < "v0.17.0"
  626. incr_dom_widgets >= "v0.12.0"
  627. incr_map >= "v0.12.0" & < "v0.17.0"
  628. incr_select >= "v0.12.0" & < "v0.17.0"
  629. incremental >= "v0.12.0" & < "v0.17.0"
  630. indentation_buffer < "v0.17.0"
  631. index < "1.3.0"
  632. inferno >= "20190924" & < "20211222"
  633. influxdb
  634. influxdb-async
  635. influxdb-lwt
  636. inquire < "0.3.0"
  637. int_repr < "v0.17.0"
  638. integers >= "0.3.0"
  639. integers_stubs_js
  640. integration1d >= "0.5.1"
  641. interface-prime
  642. interface-prime-lwt
  643. interval >= "1.5" & < "1.6"
  644. interval-map
  645. interval_base < "1.6"
  646. interval_crlibm
  647. interval_intel
  648. io-page >= "2.1.0" & < "2.4.0"
  649. io-page-unix >= "2.1.0"
  650. io-page-xen >= "2.1.0"
  651. iostream
  652. iostream-camlzip
  653. ipaddr >= "2.9.0"
  654. ipaddr-cstruct
  655. ipaddr-sexp
  656. irc-client >= "0.6.2"
  657. irc-client-lwt >= "0.6.2"
  658. irc-client-lwt-ssl
  659. irc-client-tls >= "0.6.2"
  660. irc-client-unix >= "0.6.2"
  661. irmin >= "2.0.0" & < "2.3.0"
  662. irmin-chunk >= "2.0.0" & < "2.3.0"
  663. irmin-fs >= "2.0.0" & < "2.3.0"
  664. irmin-git >= "2.0.0" & < "2.3.0"
  665. irmin-graphql < "2.3.0"
  666. irmin-http >= "2.0.0" & < "2.3.0"
  667. irmin-indexeddb >= "2.0"
  668. irmin-mem >= "2.0.0" & < "2.3.0"
  669. irmin-mirage >= "2.0.0" & < "2.3.0"
  670. irmin-mirage-git < "2.3.0"
  671. irmin-mirage-graphql < "2.3.0"
  672. irmin-pack < "2.3.0"
  673. irmin-test < "2.3.0"
  674. irmin-unix >= "2.0.0" & < "2.3.0"
  675. iso639
  676. iter
  677. itv-tree >= "2.2"
  678. JsOfOCairo >= "2.0.0"
  679. jane-street-headers >= "v0.12.0" & < "v0.17.0"
  680. jane_rope < "v0.17.0"
  681. janestreet_cpuid < "v0.17.0"
  682. janestreet_csv < "v0.17.0"
  683. janestreet_lru_cache < "v0.17.0"
  684. jemalloc >= "0.2"
  685. jerboa
  686. jhupllib >= "0.2.1"
  687. jingoo >= "1.3.0"
  688. jose < "0.6.0"
  689. js_of_ocaml >= "3.3.0" & < "3.6.0"
  690. js_of_ocaml-compiler >= "3.3.0" & < "3.6.0"
  691. js_of_ocaml-lwt >= "3.3.0" & < "3.6.0"
  692. js_of_ocaml-ocamlbuild >= "3.5.0" & < "3.6.0"
  693. js_of_ocaml-ppx >= "3.3.0" & < "3.6.0"
  694. js_of_ocaml-ppx_deriving_json >= "3.3.0" & < "3.6.0"
  695. js_of_ocaml-toplevel >= "3.3.0" & < "3.6.0"
  696. js_of_ocaml-tyxml >= "3.3.0" & < "3.6.0"
  697. js_of_ocaml_patches < "v0.17.0"
  698. json-data-encoding < "1.0.0"
  699. json-data-encoding-browser < "1.0.0"
  700. json-data-encoding-bson < "1.0.0"
  701. json_decoder
  702. jsonaf < "v0.17.0"
  703. jsonxt
  704. jsoo_broadcastchannel >= "2.0.0"
  705. jsoo_storage >= "1.0.1"
  706. jst-config < "v0.17.0"
  707. junit >= "2.0.1"
  708. junit_alcotest >= "2.0.1"
  709. junit_ounit >= "2.0.1"
  710. jupyter >= "2.3.2"
  711. jupyter-archimedes >= "2.3.2" & < "2.7.3"
  712. jupyter-kernel >= "0.4"
  713. jwto < "0.4.0"
  714. kafka >= "0.5"
  715. kafka_async
  716. kafka_lwt
  717. kappa-agents
  718. kappa-binaries
  719. kappa-library
  720. kappa-server
  721. kcas < "0.1.6"
  722. ke
  723. key-parsers >= "0.10.0"
  724. kicadsch >= "0.4.0"
  725. kind2 < "1.5.0"
  726. kinetic-client >= "0.0.11"
  727. krb
  728. lablgtk3 >= "3.0.beta4"
  729. lablgtk3-goocanvas2
  730. lablgtk3-gtkspell3
  731. lablgtk3-rsvg2
  732. lablgtk3-sourceview3
  733. lablqml >= "0.6" & < "0.7"
  734. labrys
  735. lacaml >= "11.0.2" & < "11.0.10"
  736. ladspa = "0.2.0"
  737. lambda-runtime
  738. lambda-term >= "2.0" & < "3.3.0"
  739. lambdasoup >= "0.6.4" & < "0.7.3"
  740. lame >= "0.3.4" & < "0.3.6"
  741. lascar >= "0.6-alpha" & < "0.7.0"
  742. lastfm = "0.3.3"
  743. launchd >= "1.3"
  744. lazy-trie >= "1.2.0"
  745. lbfgs >= "0.9.1"
  746. lbvs_consent >= "2.1.0"
  747. ldap = "2.4.1"
  748. learn-ocaml < "0.13.0"
  749. learn-ocaml-client < "0.13.0"
  750. ledgerwallet < "0.2.1"
  751. ledgerwallet-tezos < "0.2.1"
  752. lens >= "1.2.3"
  753. let-if >= "0.2.0"
  754. letsencrypt
  755. letsencrypt-app
  756. letsencrypt-dns
  757. letsencrypt-mirage
  758. leveldb >= "1.3.0"
  759. libabsolute
  760. libsvm >= "0.10.0"
  761. libzipperposition
  762. line-up-words >= "v0.12.0" & < "v0.17.0"
  763. line_oriented
  764. linenoise >= "1.2.0"
  765. links >= "0.9" & < "0.9.5"
  766. links-mysql < "0.9.5"
  767. links-postgresql >= "0.9" & < "0.9.5"
  768. links-sqlite3 < "0.9.5"
  769. linol
  770. linol-eio
  771. linol-lwt
  772. linwrap
  773. lmdb >= "1.0"
  774. lo >= "0.2.0"
  775. logical
  776. logs-async < "1.3"
  777. logs-async-reporter < "1.3"
  778. logs-syslog >= "0.2.0"
  779. logtk >= "1.5.1"
  780. lpd >= "1.2.2"
  781. lru >= "0.3.0"
  782. lru_cache >= "v0.16.0"
  783. lustre-v6 >= "6.103.3"
  784. lutils >= "1.51.2"
  785. lutin >= "2.71.10"
  786. luv < "0.5.13"
  787. luv_unix
  788. lwd < "0.2"
  789. lwt >= "4.2.0"
  790. lwt-canceler
  791. lwt-dllist
  792. lwt-exit
  793. lwt-parallel >= "1.0.0"
  794. lwt-pipe
  795. lwt-pipeline >= "0.2"
  796. lwt-watcher
  797. lwt_domain
  798. lwt_glib >= "1.1.1"
  799. lwt_log >= "1.1.1"
  800. lwt_ppx >= "1.2.2"
  801. lwt_ppx_let
  802. lwt_react >= "1.1.2"
  803. lwt_ssl >= "1.1.3"
  804. lz4 >= "1.2.0"
  805. lz4_chans
  806. lzo >= "0.0.3"
  807. macaddr
  808. macaddr-cstruct
  809. macaddr-sexp
  810. mad = "0.5.0"
  811. magic-mime >= "1.1.2"
  812. magic-trace
  813. malfunction >= "0.3" & < "0.5"
  814. man_in_the_middle_debugger < "v0.17.0"
  815. markdown
  816. markup >= "0.8.0" & < "1.0.0-1"
  817. markup-lwt
  818. mastodon-archive-viewer >= "0.2" & < "0.4.0"
  819. matplotlib
  820. mc2
  821. mccs >= "1.1+10"
  822. md2mld < "0.7.0"
  823. mdx < "1.8.0"
  824. mechaml >= "1.1.0"
  825. memcad >= "1.1.0"
  826. memo
  827. memprof-limits
  828. memtrace_viewer >= "v0.15.0"
  829. menhir = "20200123"
  830. menhirLib < "20211125"
  831. menhirSdk < "20211125"
  832. merge-fmt
  833. merlin >= "3.2.1" & != "3.3.5" & < "4.1-411"
  834. merlin-extend >= "0.4"
  835. mesh >= "0.9.5"
  836. mesh-easymesh >= "0.9.5"
  837. mesh-graphics >= "0.9.5"
  838. mesh-triangle >= "0.9.5"
  839. metapp < "0.4.4"
  840. metaquot < "0.5.2"
  841. metrics
  842. metrics-influx
  843. metrics-lwt
  844. metrics-mirage
  845. metrics-rusage
  846. metrics-unix
  847. mew
  848. mew_vi
  849. mindstorm >= "0.8"
  850. mindstorm-lwt
  851. minicaml
  852. minicli >= "5.0.2"
  853. minisat >= "0.3"
  854. mirage >= "3.3.0" & < "4.0.0~beta1"
  855. mirage-block >= "1.2.0"
  856. mirage-block-combinators
  857. mirage-block-lwt >= "1.2.0"
  858. mirage-block-ramdisk >= "0.4"
  859. mirage-block-solo5 >= "0.6.0"
  860. mirage-block-unix >= "2.11.0"
  861. mirage-block-xen >= "1.6.0"
  862. mirage-bootvar-solo5 >= "0.6.0"
  863. mirage-bootvar-unix
  864. mirage-bootvar-xen >= "0.6.0"
  865. mirage-channel >= "3.2.0"
  866. mirage-channel-lwt >= "3.2.0"
  867. mirage-clock >= "2.0.0" & < "4.1.0"
  868. mirage-clock-freestanding >= "2.0.0" & < "4.1.0"
  869. mirage-clock-lwt >= "2.0.0"
  870. mirage-clock-unix >= "2.0.0" & < "4.1.0"
  871. mirage-conduit = "1.3.0" | >= "3.1.0"
  872. mirage-console >= "2.4.0"
  873. mirage-console-lwt >= "2.4.0"
  874. mirage-console-solo5 >= "0.6.0"
  875. mirage-console-unix >= "2.4.1"
  876. mirage-console-xen >= "2.4.0"
  877. mirage-console-xen-backend >= "2.4.0"
  878. mirage-console-xen-proto >= "2.4.0"
  879. mirage-crypto < "0.8.6"
  880. mirage-crypto-entropy
  881. mirage-crypto-pk < "0.8.6"
  882. mirage-crypto-rng < "0.8.6"
  883. mirage-crypto-rng-mirage < "0.8.6"
  884. mirage-device >= "1.2.0"
  885. mirage-dns >= "3.1.0"
  886. mirage-entropy >= "0.5.1"
  887. mirage-flow >= "1.6.0"
  888. mirage-flow-combinators
  889. mirage-flow-lwt >= "1.6.0"
  890. mirage-flow-rawlink >= "1.1.0"
  891. mirage-flow-unix >= "1.6.0"
  892. mirage-fs >= "1.2.0"
  893. mirage-fs-lwt >= "1.2.0"
  894. mirage-fs-mem
  895. mirage-fs-unix >= "1.6.0"
  896. mirage-kv >= "2.0.0"
  897. mirage-kv-lwt >= "2.0.0"
  898. mirage-kv-mem
  899. mirage-kv-unix < "3.0.0"
  900. mirage-logs >= "1.0.0" & < "2.0.0"
  901. mirage-monitoring
  902. mirage-nat >= "1.1.0"
  903. mirage-net >= "2.0.0"
  904. mirage-net-lwt >= "2.0.0"
  905. mirage-net-macosx >= "1.5.0"
  906. mirage-net-solo5 >= "0.4.3"
  907. mirage-net-unix >= "2.5.0"
  908. mirage-net-xen >= "1.9.0"
  909. mirage-profile >= "0.9.0"
  910. mirage-profile-unix >= "0.9.0"
  911. mirage-profile-xen >= "0.9.0"
  912. mirage-protocols >= "2.0.0"
  913. mirage-protocols-lwt >= "2.0.0"
  914. mirage-qubes >= "0.7.0"
  915. mirage-qubes-ipv4 >= "0.7.0"
  916. mirage-random >= "1.2.0"
  917. mirage-random-stdlib
  918. mirage-random-test
  919. mirage-runtime >= "3.3.0" & < "4.0.0~beta1"
  920. mirage-solo5 >= "0.6.2" & < "0.6.4"
  921. mirage-stack >= "1.4.0"
  922. mirage-stack-lwt >= "1.4.0"
  923. mirage-time >= "1.3.0"
  924. mirage-time-lwt >= "1.3.0"
  925. mirage-time-unix >= "1.3.0"
  926. mirage-types >= "3.3.0"
  927. mirage-types-lwt >= "3.3.0"
  928. mirage-unix >= "3.2.0"
  929. mirage-vnetif >= "0.4.2"
  930. mirage-vnetif-stack
  931. mirage-xen >= "3.2.0" & < "6.0.0"
  932. mkaudio >= "1.1.0"
  933. mkocaml
  934. mlfenv
  935. mlmpfr >= "4.0.2+dune" & < "4.1.0+bugfix1"
  936. mlpost-lablgtk
  937. mlt_parser >= "v0.12.0" & < "v0.17.0"
  938. mm >= "0.7.0" & < "0.7.2"
  939. mmap
  940. mmdb
  941. mock >= "0.1.1"
  942. mock-ounit >= "0.1.1"
  943. molenc
  944. monolith
  945. morbig >= "0.10.3" & < "0.11.0"
  946. morsmall
  947. moss >= "0.1.1"
  948. mparser >= "1.3"
  949. mparser-pcre
  950. mparser-re
  951. mperf
  952. mpg123 < "0.3"
  953. mpp >= "0.3.4"
  954. mpris >= "0.2.0"
  955. mpris-clients
  956. mrmime < "0.4.0"
  957. mrt-format >= "0.3.1"
  958. msat >= "0.8"
  959. msat-bin
  960. msgpck >= "1.5"
  961. msgpck-repr
  962. mssql
  963. mugen
  964. multipart-form-data >= "0.3.0"
  965. multipart_form
  966. multipart_form-cohttp-lwt
  967. multipart_form-eio
  968. multipart_form-lwt
  969. murmur3 >= "0.3"
  970. mustache = "3.1.0"
  971. mutf8
  972. mwt
  973. mybuild >= "7"
  974. mysql8
  975. n_ary < "v0.17.0"
  976. naboris
  977. nacc
  978. nbd = "4.0.3"
  979. netchannel >= "1.9.0"
  980. netkat
  981. netlink >= "0.3.4"
  982. netsnmp < "v0.17.0"
  983. nice_parser
  984. nocoiner
  985. noise
  986. nottui < "0.2"
  987. nottui-lwt < "0.2"
  988. nottui-pretty < "0.2"
  989. notty >= "0.2.3"
  990. notty_async >= "v0.12.0" & < "v0.17.0"
  991. npy >= "0.0.9"
  992. nsq >= "0.4.0"
  993. numeric_string < "v0.17.0"
  994. nuscr < "2.0.0"
  995. obeam
  996. obus >= "1.2.0"
  997. ocal >= "0.2.2"
  998. ocaml-compiler-libs >= "v0.12.0" & != "v0.12.4"
  999. ocaml-embed-file < "v0.17.0"
  1000. ocaml-lua >= "1.8"
  1001. ocaml-migrate-parsetree >= "1.2.0" & < "2.2.0"
  1002. ocaml-migrate-parsetree-ocamlbuild >= "1.2.0"
  1003. ocaml-monadic = "0.4.1"
  1004. ocaml-print-intf
  1005. ocaml-probes < "v0.17.0"
  1006. ocaml-protoc >= "2.0.1"
  1007. ocaml-protoc-plugin < "4.3.1"
  1008. ocaml-r >= "0.1.1" & < "0.4.0"
  1009. ocaml-syntax-shims
  1010. ocaml-systemd >= "1.3"
  1011. ocaml-top >= "1.2.0"
  1012. ocaml-vdom < "transition"
  1013. ocaml-version >= "1.0.0" & < "3.6.0"
  1014. ocaml_db_model
  1015. ocaml_intrinsics < "v0.17.0"
  1016. ocaml_pgsql_model
  1017. ocaml_plugin >= "v0.12.0"
  1018. ocamlapi
  1019. ocamlapi_async
  1020. ocamlapi_lwt_unix
  1021. ocamlapi_ppx
  1022. ocamlcodoc
  1023. ocamlformat >= "0.7" & < "0.14.0"
  1024. ocamlfuse >= "2.7.1-cvs6" & < "2.7.1-cvs8"
  1025. ocamlgraph >= "2.0.0"
  1026. ocamlgraph_gtk
  1027. ocamline
  1028. ocb
  1029. ocolor
  1030. ocp-browser >= "1.1.9"
  1031. ocp-indent >= "1.7.0"
  1032. ocp-indent-nlfork >= "1.5.4"
  1033. ocp-index >= "1.1.9"
  1034. ocplib-endian >= "1.1"
  1035. ocplib-json-typed >= "0.7"
  1036. ocplib-json-typed-browser
  1037. ocplib-json-typed-bson
  1038. ocplib-simplex >= "0.5"
  1039. octavius >= "1.2.2"
  1040. odash
  1041. odepack >= "0.6.9"
  1042. odnnr
  1043. odoc >= "1.4.0" & < "2.0.0"
  1044. of_json < "v0.17.0"
  1045. offheap
  1046. ogg = "0.6.0" | = "0.7.0"
  1047. ojs < "1.0.8"
  1048. olinq >= "0.3"
  1049. omd = "2.0.0~alpha2"
  1050. omg
  1051. omigrate < "0.3.1"
  1052. omlr
  1053. opam-0install < "0.4.2"
  1054. opam-0install-cudf < "0.4.2"
  1055. opam-build
  1056. opam-client >= "2.0.2"
  1057. opam-core >= "2.0.2"
  1058. opam-custom-install
  1059. opam-devel >= "2.0.2"
  1060. opam-ed >= "0.4"
  1061. opam-file-format >= "2.1.0" & < "2.1.5"
  1062. opam-format >= "2.0.2"
  1063. opam-graph
  1064. opam-grep >= "0.2.0"
  1065. opam-installer >= "2.0.2"
  1066. opam-package-upgrade >= "0.2"
  1067. opam-publish >= "2.0.2"
  1068. opam-repository >= "2.0.2"
  1069. opam-solver >= "2.0.2"
  1070. opam-state >= "2.0.2"
  1071. opam-test
  1072. opam2web >= "2.0"
  1073. opasswd >= "1.3.1"
  1074. opazl
  1075. openai-gym
  1076. opencc0
  1077. opencc1
  1078. opencc1_1
  1079. openQASM
  1080. opium >= "0.17.0"
  1081. opium-graphql
  1082. opium-testing
  1083. opium_kernel >= "0.17.0"
  1084. oplot = "0.50"
  1085. oplsr
  1086. optal
  1087. opti
  1088. optimization1d >= "0.6.1"
  1089. optint >= "0.0.2"
  1090. opus = "0.2.0"
  1091. oraft < "0.3.0"
  1092. oranger >= "2.0.1"
  1093. ordinal_abbreviation < "v0.17.0"
  1094. ordma >= "0.0.5"
  1095. orec >= "1.0.1"
  1096. orewa
  1097. orpie
  1098. orrandomForest
  1099. orsvm_e1071 >= "4.0.0"
  1100. orun
  1101. orxgboost >= "1.1.0"
  1102. oseq >= "0.2"
  1103. oskel
  1104. osx-secure-transport >= "0.1.1"
  1105. otf
  1106. otoml
  1107. otr >= "0.3.6"
  1108. ounit = "2.1.2"
  1109. ounit-lwt < "2.2.0"
  1110. ounit2 < "2.2.7"
  1111. ounit2-lwt < "2.2.7"
  1112. override < "0.4.0"
  1113. owee >= "0.3"
  1114. owl >= "0.4.0"
  1115. owl-base >= "0.4.0"
  1116. owl-jupyter
  1117. owl-ode
  1118. owl-ode-base
  1119. owl-ode-odepack
  1120. owl-ode-sundials
  1121. owl-opt
  1122. owl-opt-lbfgs
  1123. owl-plplot
  1124. owl-symbolic
  1125. owl-top >= "0.4.0"
  1126. owl-zoo >= "0.4.0"
  1127. owork
  1128. ozulip
  1129. p4pp
  1130. pacomb
  1131. paf
  1132. paf-cohttp
  1133. paf-le
  1134. pam < "v0.17.0"
  1135. pandoc < "0.2.1"
  1136. pandoc-abbreviations < "0.2.1"
  1137. pandoc-comment < "0.2.1"
  1138. pandoc-crossref < "0.2.1"
  1139. pandoc-include < "0.2.1"
  1140. pandoc-inspect < "0.2.1"
  1141. pandoc-pdf2png < "0.2.1"
  1142. pandoc-replace < "0.2.1"
  1143. papi >= "0.1.1"
  1144. parany >= "7.0.2"
  1145. pardi
  1146. parmap >= "1.1.1" & < "1.2.3"
  1147. parse-argv >= "0.2.0"
  1148. parsexp >= "v0.12.0" & < "v0.17.0"
  1149. parsexp_io >= "v0.12.0" & < "v0.17.0"
  1150. parsley
  1151. patch < "2.0.0"
  1152. patdiff >= "v0.12.1" & < "v0.17.0"
  1153. patience_diff >= "v0.12.0" & < "v0.17.0"
  1154. pattern
  1155. pb
  1156. pb-plugin
  1157. pbkdf >= "1.0.0"
  1158. pbrt
  1159. pbrt_services
  1160. pbrt_yojson
  1161. pcap-format >= "0.5.2"
  1162. pcre >= "7.3.5" & < "7.5.0"
  1163. pds-reachability >= "0.2.2"
  1164. pecu >= "0.2"
  1165. petr4
  1166. pf-qubes
  1167. pg_query
  1168. pgocaml >= "4.0"
  1169. pgocaml_ppx
  1170. pgx >= "1.0" & < "2.2"
  1171. pgx_async >= "1.0" & < "2.2"
  1172. pgx_lwt >= "1.0" & < "2.2"
  1173. pgx_lwt_mirage < "2.2"
  1174. pgx_lwt_unix < "2.2"
  1175. pgx_unix >= "1.0" & < "2.2"
  1176. pgx_value_core < "2.2"
  1177. pgx_value_ptime < "2.2"
  1178. phonetic
  1179. piqi >= "0.7.8"
  1180. piqilib >= "0.6.16"
  1181. pixel_pusher
  1182. pkcs11 >= "0.18.0"
  1183. pkcs11-cli
  1184. pkcs11-driver
  1185. pkcs11-rev
  1186. pla = "1.3"
  1187. plato
  1188. plebeia < "2.0.0"
  1189. plotkicadsch >= "0.4.0"
  1190. plplot >= "5.11.0-1"
  1191. polka
  1192. polling_state_rpc < "v0.17.0"
  1193. polly
  1194. pomap >= "4.1.0"
  1195. portaudio = "0.2.2"
  1196. posixat >= "v0.12.0" & < "v0.17.0"
  1197. postgres_async < "v0.17.0"
  1198. postgresql >= "4.4.1"
  1199. pp < "1.2.0"
  1200. pprint >= "20200226"
  1201. ppx-owl-opt
  1202. ppx_accessor < "v0.17.0"
  1203. ppx_assert >= "v0.12.0" & < "v0.17.0"
  1204. ppx_bap
  1205. ppx_base >= "v0.12.0" & < "v0.17.0"
  1206. ppx_bench >= "v0.12.0" & < "v0.17.0"
  1207. ppx_bigarray >= "3.0.0"
  1208. ppx_bin_prot >= "v0.12.0" & < "v0.17.0"
  1209. ppx_blob >= "0.6.0"
  1210. ppx_bsx
  1211. ppx_cold < "v0.17.0"
  1212. ppx_compare >= "v0.12.0" & < "v0.17.0"
  1213. ppx_compose >= "0.1.0"
  1214. ppx_const >= "2.0"
  1215. ppx_conv_func >= "v0.12.0" & < "v0.17.0"
  1216. ppx_css < "v0.17.0"
  1217. ppx_cstruct >= "3.3.0"
  1218. ppx_cstubs
  1219. ppx_csv_conv >= "v0.12.0" & < "v0.17.0"
  1220. ppx_custom_printf >= "v0.12.0" & < "v0.17.0"
  1221. ppx_defer >= "0.4.0"
  1222. ppx_demo < "v0.17.0"
  1223. ppx_derive_at_runtime < "v0.17.0"
  1224. ppx_derivers >= "1.2.1"
  1225. ppx_deriving >= "4.3"
  1226. ppx_deriving_cmdliner >= "0.5.1"
  1227. ppx_deriving_encoding < "0.3.0"
  1228. ppx_deriving_hardcaml >= "v0.12.0"
  1229. ppx_deriving_jsoo
  1230. ppx_deriving_protobuf >= "2.7"
  1231. ppx_deriving_rpc >= "6.1.0"
  1232. ppx_deriving_yojson >= "3.3"
  1233. ppx_disable_unused_warnings < "v0.17.0"
  1234. ppx_enum
  1235. ppx_enumerate >= "v0.12.0" & < "v0.17.0"
  1236. ppx_expect >= "v0.12.0" & < "v0.17.0"
  1237. ppx_factory
  1238. ppx_fail >= "v0.12.0"
  1239. ppx_fast_pipe
  1240. ppx_fields_conv >= "v0.12.0" & < "v0.17.0"
  1241. ppx_fixed_literal < "v0.17.0"
  1242. ppx_gen_rec >= "1.1.0"
  1243. ppx_getenv >= "2.0"
  1244. ppx_globalize < "v0.17.0"
  1245. ppx_hash >= "v0.12.0" & < "v0.17.0"
  1246. ppx_here >= "v0.12.0" & < "v0.17.0"
  1247. ppx_ignore_instrumentation < "v0.17.0"
  1248. ppx_import >= "1.5-3-gbd627d5"
  1249. ppx_inline_alcotest
  1250. ppx_inline_test >= "v0.12.0" & < "v0.16.1"
  1251. ppx_irmin < "2.3.0"
  1252. ppx_jane >= "v0.12.0" & < "v0.17.0"
  1253. ppx_js_style >= "v0.12.0" & < "v0.17.0"
  1254. ppx_jsobject_conv >= "0.6.0" & < "0.9.0"
  1255. ppx_jsonaf_conv < "v0.17.0"
  1256. ppx_let >= "v0.12.0" & < "v0.17.0"
  1257. ppx_log < "v0.17.0"
  1258. ppx_meta_conv >= "4.0.1"
  1259. ppx_module_timer < "v0.17.0"
  1260. ppx_monoid = "0.3.2"
  1261. ppx_mysql
  1262. ppx_mysql_identity
  1263. ppx_optcomp >= "v0.12.0" & < "v0.17.0"
  1264. ppx_optional >= "v0.12.0" & < "v0.17.0"
  1265. ppx_pattern_bind < "v0.17.0"
  1266. ppx_pipebang >= "v0.12.0" & < "v0.17.0"
  1267. ppx_protocol_conv >= "3.1.0"
  1268. ppx_protocol_conv_json >= "3.1.0"
  1269. ppx_protocol_conv_jsonm
  1270. ppx_protocol_conv_msgpack >= "3.1.0"
  1271. ppx_protocol_conv_xml_light >= "3.1.0"
  1272. ppx_protocol_conv_xmlm
  1273. ppx_protocol_conv_yaml >= "3.1.0"
  1274. ppx_python < "v0.17.0"
  1275. ppx_rapper
  1276. ppx_rapper_async
  1277. ppx_rapper_lwt
  1278. ppx_regexp >= "0.4.0"
  1279. ppx_relit
  1280. ppx_sexp_conv >= "v0.12.0" & < "v0.17.0"
  1281. ppx_sexp_message >= "v0.12.0" & < "v0.17.0"
  1282. ppx_sexp_value >= "v0.12.0" & < "v0.17.0"
  1283. ppx_show
  1284. ppx_stable < "v0.17.0"
  1285. ppx_stable_witness < "v0.17.0"
  1286. ppx_string < "v0.17.0"
  1287. ppx_string_interpolation
  1288. ppx_test >= "1.7.0"
  1289. ppx_there
  1290. ppx_tools >= "6.0+4.08.0"
  1291. ppx_tools_versioned >= "5.2.2"
  1292. ppx_tydi < "v0.17.0"
  1293. ppx_type_directed_value
  1294. ppx_typed_fields < "v0.17.0"
  1295. ppx_typerep_conv >= "v0.12.0" & < "v0.17.0"
  1296. ppx_tyre
  1297. ppx_units
  1298. ppx_variants_conv >= "v0.12.0" & < "v0.17.0"
  1299. ppx_wideopen
  1300. ppx_xml_conv >= "v0.12.0" & < "v0.17.0"
  1301. ppx_yojson < "1.1.0"
  1302. ppx_yojson_conv < "v0.17.0"
  1303. ppx_yojson_conv_lib < "v0.17.0"
  1304. ppxfind >= "1.3"
  1305. ppxlib >= "0.4.0" & < "0.21.0"
  1306. ppxx >= "2.4.0"
  1307. printbox >= "0.2" & < "0.8"
  1308. printbox-html < "0.8"
  1309. printbox-text < "0.8"
  1310. prof_spacetime >= "0.3.0"
  1311. profunctor < "v0.17.0"
  1312. prom
  1313. prometheus >= "0.6" & < "1.2"
  1314. prometheus-app >= "0.6" & < "1.2"
  1315. promise
  1316. protocell
  1317. protocol-9p >= "1.0.0"
  1318. protocol-9p-tool >= "1.0.0"
  1319. protocol-9p-unix >= "1.0.0"
  1320. protocol_version_header >= "v0.12.0" & < "v0.17.0"
  1321. psq >= "0.1.1"
  1322. ptmap >= "2.0.5"
  1323. ptset >= "1.0.1"
  1324. pulseaudio = "0.1.4"
  1325. pure-splitmix >= "0.3"
  1326. py >= "1.1"
  1327. pythonlib
  1328. qbf >= "0.3"
  1329. qcheck >= "0.9" & < "0.18"
  1330. qcheck-alcotest < "0.18"
  1331. qcheck-core < "0.18"
  1332. qcheck-ounit < "0.18"
  1333. qmp >= "0.19.0"
  1334. qrencode >= "0.2"
  1335. qtest >= "2.10.1"
  1336. queenshead
  1337. quests
  1338. radare2 >= "0.0.3"
  1339. randomconv >= "0.1.1"
  1340. range < "0.8.3"
  1341. rangeSet
  1342. rankers
  1343. rawlink >= "1.0" & < "2.1"
  1344. rdbg >= "1.196.12"
  1345. re >= "1.9.0"
  1346. re2 >= "v0.12.1" & < "v0.17.0"
  1347. re2_stable
  1348. re_parser < "v0.17.0"
  1349. reactiveData >= "0.3.0"
  1350. reanalyze
  1351. reason >= "3.5.0" & < "3.8.1"
  1352. received
  1353. record_builder >= "v0.12.0" & < "v0.17.0"
  1354. records >= "1.0.0"
  1355. redirect
  1356. redis >= "0.4"
  1357. redis-async < "v0.17.0"
  1358. redis-lwt >= "0.4"
  1359. redis-sync >= "0.4"
  1360. reed-solomon-erasure >= "1.0.2"
  1361. reedsolomon >= "0.3"
  1362. refl
  1363. regenerate >= "0.2"
  1364. regex_parser_intf < "v0.17.0"
  1365. relit_helper
  1366. remu_ts
  1367. res >= "5.0.1"
  1368. resource-pooling >= "1.1"
  1369. resource_cache >= "v0.12.0" & < "v0.17.0"
  1370. resp
  1371. resp-client
  1372. resp-mirage
  1373. resp-server >= "0.9"
  1374. resp-unix
  1375. resto
  1376. resto-acl
  1377. resto-cohttp
  1378. resto-cohttp-client
  1379. resto-cohttp-self-serving-client
  1380. resto-cohttp-server
  1381. resto-directory
  1382. resto-json
  1383. result >= "1.4"
  1384. rfc1951 >= "0.8.1" & != "1.0.0" & < "1.3.0"
  1385. rfc6287 >= "1.0.4"
  1386. rfc7748
  1387. rfsm >= "1.6-alpha-3" & < "1.7.0"
  1388. rhythm
  1389. ringo
  1390. ringo-lwt
  1391. rock
  1392. root1d >= "0.5.1"
  1393. rope >= "0.6.2"
  1394. rosetta >= "0.2.0"
  1395. routes != "0.7.0" & < "1.0.0"
  1396. rpc >= "6.1.0"
  1397. rpc_parallel >= "v0.12.0" & < "v0.17.0"
  1398. rpclib >= "6.1.0"
  1399. rpclib-async >= "6.1.0"
  1400. rpclib-html
  1401. rpclib-js
  1402. rpclib-lwt >= "6.1.0"
  1403. rss
  1404. rtop >= "3.5.0" & < "3.8.1"
  1405. rungen
  1406. rusage
  1407. SZXX
  1408. safepass >= "3.1"
  1409. salsa20 >= "1.0.0"
  1410. salsa20-core >= "1.0.0"
  1411. samplerate = "0.1.5"
  1412. sanddb = "0.2"
  1413. satex
  1414. satyrographos < "0.0.2.7"
  1415. scgi
  1416. scrypt-kdf >= "1.0.0"
  1417. searchTree
  1418. secp256k1 >= "0.4.1"
  1419. secp256k1-internal < "0.4.0"
  1420. sedlex >= "2.0" & < "2.4"
  1421. sek
  1422. selective
  1423. semantic_version < "v0.17.0"
  1424. semaphore-compat
  1425. semver >= "0.2.1"
  1426. semver2
  1427. sendmail
  1428. sendmail-lwt
  1429. sentry
  1430. seq >= "0.2" & < "0.3"
  1431. sequencer_table >= "v0.12.0" & < "v0.17.0"
  1432. session >= "0.4.1"
  1433. session-cohttp >= "0.4.1"
  1434. session-cohttp-async >= "0.4.1"
  1435. session-cohttp-lwt >= "0.4.1"
  1436. session-cookie
  1437. session-cookie-async
  1438. session-cookie-lwt
  1439. session-postgresql >= "0.4.1"
  1440. session-postgresql-async >= "0.4.1"
  1441. session-postgresql-lwt >= "0.4.1"
  1442. session-redis-lwt >= "0.4.1"
  1443. session-webmachine >= "0.4.1"
  1444. setcore >= "1.0.2"
  1445. sexp < "v0.17.0"
  1446. sexp_diff < "v0.17.0"
  1447. sexp_diff_kernel
  1448. sexp_grammar < "v0.17.0"
  1449. sexp_macro < "v0.17.0"
  1450. sexp_pretty >= "v0.12.0" & < "v0.17.0"
  1451. sexp_select < "v0.17.0"
  1452. sexp_string_quickcheck < "v0.17.0"
  1453. sexplib >= "v0.12.0" & < "v0.17.0"
  1454. sexplib0 >= "v0.12.0" & < "v0.17.0"
  1455. sgf >= "1.0.1"
  1456. sha >= "1.13" & < "1.15.1"
  1457. shapefile
  1458. shared-memory-ring >= "3.1.0"
  1459. shared-memory-ring-lwt >= "3.1.0"
  1460. shared-secret >= "0.4"
  1461. shell < "v0.17.0"
  1462. shexp >= "v0.12.0" & < "v0.17.0"
  1463. slacko >= "0.14.1"
  1464. slug
  1465. smart-print >= "0.3.0"
  1466. smbc >= "0.5"
  1467. smtlib-utils
  1468. snappy >= "0.1.2"
  1469. so
  1470. sortedseq_intersect
  1471. soundtouch >= "0.1.9"
  1472. soupault
  1473. spacetime_lib >= "0.3.0"
  1474. spawn = "v0.13.0"
  1475. speex = "0.4.0"
  1476. spelll >= "0.3"
  1477. spin < "0.6.0"
  1478. splay_tree >= "v0.12.0" & < "v0.17.0"
  1479. splittable_random >= "v0.12.0" & < "v0.17.0"
  1480. spotify-web-api >= "0.2.1"
  1481. spotlib >= "4.1.0"
  1482. sqlgg >= "20200521"
  1483. sqlite3 >= "4.4.1" & < "5.0.3"
  1484. sqlite3_utils
  1485. srt < "0.2.1"
  1486. ssh-agent >= "0.2.0"
  1487. ssh-agent-unix
  1488. ssl >= "0.5.6" & < "0.6.0"
  1489. stdcompat >= "19"
  1490. stdint >= "0.6.0" & < "0.7.2"
  1491. stdio >= "v0.12.0" & < "v0.17.0"
  1492. stdlib-diff
  1493. stdlib-shims
  1494. stitch
  1495. stored_reversed < "v0.17.0"
  1496. streamable < "v0.17.0"
  1497. streaming
  1498. string_dict >= "v0.12.0" & < "v0.17.0"
  1499. stringext >= "1.6.0"
  1500. sturgeon >= "0.4.2"
  1501. subscriptions-transport-ws
  1502. subtype-refinement >= "0.2"
  1503. swagger >= "0.2.0"
  1504. swhid_core
  1505. syndic >= "1.6.0"
  1506. sys-socket
  1507. sys-socket-unix
  1508. syslog >= "2.0.0"
  1509. syslog-message >= "1.0.0"
  1510. syslog-rfc5424
  1511. tablecloth-native < "0.0.8"
  1512. tar >= "1.0.0" & < "2.0.0"
  1513. tar-mirage >= "1.0.0" & < "2.0.0"
  1514. tar-unix >= "1.0.0" & < "2.0.0"
  1515. tcalc
  1516. tcpip >= "3.7.0" & < "6.0.0"
  1517. tdigest
  1518. teash
  1519. tensorboard
  1520. terminal_size >= "0.1.4"
  1521. textrazor
  1522. textutils >= "v0.12.0" & < "v0.17.0"
  1523. textutils_kernel >= "v0.12.0" & < "v0.17.0"
  1524. textwrap >= "0.2.1"
  1525. tezos-accuser-006-PsCARTHA
  1526. tezos-accuser-007-PsDELPH1
  1527. tezos-accuser-008-PtEdo2Zk < "9.2"
  1528. tezos-accuser-008-PtEdoTez
  1529. tezos-accuser-009-PsFLoren < "9.2"
  1530. tezos-alpha-test-helpers < "9.2"
  1531. tezos-baker-006-PsCARTHA
  1532. tezos-baker-007-PsDELPH1
  1533. tezos-baker-008-PtEdo2Zk < "9.2"
  1534. tezos-baker-008-PtEdoTez
  1535. tezos-baker-009-PsFLoren < "9.2"
  1536. tezos-baking-006-PsCARTHA
  1537. tezos-baking-006-PsCARTHA-commands
  1538. tezos-baking-007-PsDELPH1
  1539. tezos-baking-007-PsDELPH1-commands
  1540. tezos-baking-008-PtEdo2Zk < "9.2"
  1541. tezos-baking-008-PtEdo2Zk-commands < "9.2"
  1542. tezos-baking-008-PtEdoTez
  1543. tezos-baking-008-PtEdoTez-commands
  1544. tezos-baking-009-PsFLoren < "9.2"
  1545. tezos-baking-009-PsFLoren-commands < "9.2"
  1546. tezos-baking-alpha < "9.2"
  1547. tezos-baking-alpha-commands < "9.2"
  1548. tezos-base < "9.2"
  1549. tezos-clic < "9.2"
  1550. tezos-client < "9.2"
  1551. tezos-client-000-Ps9mPmXa < "9.2"
  1552. tezos-client-001-PtCJ7pwo < "9.2"
  1553. tezos-client-001-PtCJ7pwo-commands < "9.2"
  1554. tezos-client-002-PsYLVpVv < "9.2"
  1555. tezos-client-002-PsYLVpVv-commands < "9.2"
  1556. tezos-client-003-PsddFKi3 < "9.2"
  1557. tezos-client-003-PsddFKi3-commands < "9.2"
  1558. tezos-client-004-Pt24m4xi < "9.2"
  1559. tezos-client-004-Pt24m4xi-commands < "9.2"
  1560. tezos-client-005-PsBabyM1 < "9.2"
  1561. tezos-client-005-PsBabyM1-commands < "9.2"
  1562. tezos-client-006-PsCARTHA < "9.2"
  1563. tezos-client-006-PsCARTHA-commands < "9.2"
  1564. tezos-client-007-PsDELPH1 < "9.2"
  1565. tezos-client-007-PsDELPH1-commands < "9.2"
  1566. tezos-client-007-PsDELPH1-commands-registration < "9.2"
  1567. tezos-client-008-PtEdo2Zk < "9.2"
  1568. tezos-client-008-PtEdo2Zk-commands < "9.2"
  1569. tezos-client-008-PtEdo2Zk-commands-registration < "9.2"
  1570. tezos-client-008-PtEdoTez
  1571. tezos-client-008-PtEdoTez-commands
  1572. tezos-client-008-PtEdoTez-commands-registration
  1573. tezos-client-009-PsFLoren < "9.2"
  1574. tezos-client-009-PsFLoren-commands < "9.2"
  1575. tezos-client-009-PsFLoren-commands-registration < "9.2"
  1576. tezos-client-alpha < "9.2"
  1577. tezos-client-alpha-commands < "9.2"
  1578. tezos-client-alpha-commands-registration < "9.2"
  1579. tezos-client-base < "9.2"
  1580. tezos-client-base-unix < "9.2"
  1581. tezos-client-commands < "9.2"
  1582. tezos-client-demo-counter < "9.2"
  1583. tezos-client-genesis < "9.2"
  1584. tezos-client-genesis-carthagenet < "9.2"
  1585. tezos-client-sapling-008-PtEdo2Zk < "9.2"
  1586. tezos-client-sapling-008-PtEdoTez
  1587. tezos-client-sapling-009-PsFLoren < "9.2"
  1588. tezos-client-sapling-alpha < "9.2"
  1589. tezos-codec < "9.2"
  1590. tezos-crypto < "9.2"
  1591. tezos-embedded-protocol-000-Ps9mPmXa < "9.2"
  1592. tezos-embedded-protocol-001-PtCJ7pwo < "9.2"
  1593. tezos-embedded-protocol-002-PsYLVpVv < "9.2"
  1594. tezos-embedded-protocol-003-PsddFKi3 < "9.2"
  1595. tezos-embedded-protocol-004-Pt24m4xi < "9.2"
  1596. tezos-embedded-protocol-005-PsBABY5H < "9.2"
  1597. tezos-embedded-protocol-005-PsBabyM1 < "9.2"
  1598. tezos-embedded-protocol-006-PsCARTHA < "9.2"
  1599. tezos-embedded-protocol-007-PsDELPH1 < "9.2"
  1600. tezos-embedded-protocol-008-PtEdo2Zk < "9.2"
  1601. tezos-embedded-protocol-008-PtEdoTez < "9.2"
  1602. tezos-embedded-protocol-009-PsFLoren < "9.2"
  1603. tezos-embedded-protocol-alpha < "9.2"
  1604. tezos-embedded-protocol-demo-counter < "9.2"
  1605. tezos-embedded-protocol-demo-noops < "9.2"
  1606. tezos-embedded-protocol-genesis < "9.2"
  1607. tezos-embedded-protocol-genesis-carthagenet < "9.2"
  1608. tezos-endorser-006-PsCARTHA
  1609. tezos-endorser-007-PsDELPH1
  1610. tezos-endorser-008-PtEdo2Zk < "9.2"
  1611. tezos-endorser-008-PtEdoTez
  1612. tezos-endorser-009-PsFLoren < "9.2"
  1613. tezos-error-monad < "9.2"
  1614. tezos-event-logging < "9.2"
  1615. tezos-lmdb
  1616. tezos-lwt-result-stdlib < "9.0"
  1617. tezos-mempool-006-PsCARTHA
  1618. tezos-mempool-007-PsDELPH1
  1619. tezos-mempool-008-PtEdoTez
  1620. tezos-micheline < "9.2"
  1621. tezos-mockup < "9.2"
  1622. tezos-mockup-commands < "9.2"
  1623. tezos-mockup-proxy < "9.2"
  1624. tezos-mockup-registration < "9.2"
  1625. tezos-node < "9.2"
  1626. tezos-p2p < "9.2"
  1627. tezos-p2p-services < "9.2"
  1628. tezos-protocol-000-Ps9mPmXa < "9.2"
  1629. tezos-protocol-001-PtCJ7pwo < "9.2"
  1630. tezos-protocol-002-PsYLVpVv < "9.2"
  1631. tezos-protocol-003-PsddFKi3 < "9.2"
  1632. tezos-protocol-004-Pt24m4xi < "9.2"
  1633. tezos-protocol-005-PsBABY5H < "9.2"
  1634. tezos-protocol-005-PsBabyM1 < "9.2"
  1635. tezos-protocol-006-PsCARTHA < "9.2"
  1636. tezos-protocol-006-PsCARTHA-parameters < "9.2"
  1637. tezos-protocol-007-PsDELPH1 < "9.2"
  1638. tezos-protocol-007-PsDELPH1-parameters
  1639. tezos-protocol-008-PtEdo2Zk < "9.2"
  1640. tezos-protocol-008-PtEdo2Zk-parameters < "9.2"
  1641. tezos-protocol-008-PtEdoTez < "9.2"
  1642. tezos-protocol-008-PtEdoTez-parameters
  1643. tezos-protocol-009-PsFLoren < "9.2"
  1644. tezos-protocol-009-PsFLoren-parameters < "9.2"
  1645. tezos-protocol-alpha < "9.2"
  1646. tezos-protocol-alpha-parameters < "9.2"
  1647. tezos-protocol-compiler < "9.2"
  1648. tezos-protocol-demo-counter < "9.2"
  1649. tezos-protocol-demo-noops < "9.2"
  1650. tezos-protocol-environment < "9.2"
  1651. tezos-protocol-environment-packer < "9.2"
  1652. tezos-protocol-environment-sigs < "9.2"
  1653. tezos-protocol-environment-structs < "9.2"
  1654. tezos-protocol-genesis < "9.2"
  1655. tezos-protocol-genesis-carthagenet < "9.2"
  1656. tezos-protocol-plugin-007-PsDELPH1 < "9.2"
  1657. tezos-protocol-plugin-007-PsDELPH1-registerer < "9.2"
  1658. tezos-protocol-plugin-008-PtEdo2Zk < "9.2"
  1659. tezos-protocol-plugin-008-PtEdo2Zk-registerer < "9.2"
  1660. tezos-protocol-plugin-009-PsFLoren < "9.2"
  1661. tezos-protocol-plugin-009-PsFLoren-registerer < "9.2"
  1662. tezos-protocol-plugin-alpha < "9.2"
  1663. tezos-protocol-plugin-alpha-registerer < "9.2"
  1664. tezos-protocol-updater < "9.2"
  1665. tezos-proxy < "9.2"
  1666. tezos-requester < "9.2"
  1667. tezos-rpc < "9.2"
  1668. tezos-rpc-http < "9.2"
  1669. tezos-rpc-http-client < "9.2"
  1670. tezos-rpc-http-client-unix < "9.2"
  1671. tezos-rpc-http-server < "9.2"
  1672. tezos-sapling < "9.2"
  1673. tezos-shell < "9.2"
  1674. tezos-shell-context < "9.2"
  1675. tezos-shell-services < "9.2"
  1676. tezos-signer < "9.2"
  1677. tezos-signer-backends < "9.2"
  1678. tezos-signer-services < "9.2"
  1679. tezos-stdlib < "8.0"
  1680. tezos-stdlib-unix < "9.2"
  1681. tezos-storage < "9.2"
  1682. tezos-test-services < "9.2"
  1683. tezos-tooling < "13.0"
  1684. tezos-validation < "9.2"
  1685. tezos-validator < "9.2"
  1686. tezos-version < "9.2"
  1687. tezos-workers < "9.2"
  1688. theora >= "0.4.0"
  1689. thread-local-storage
  1690. thrift >= "0.10.0"
  1691. tidy >= "5-0.2"
  1692. tilde_f < "v0.17.0"
  1693. time_now < "v0.17.0"
  1694. timezone < "v0.17.0"
  1695. tiny_httpd < "0.15"
  1696. tiny_httpd_camlzip < "0.15"
  1697. tip-parser >= "0.4"
  1698. tldr
  1699. tls >= "0.11.0" & < "0.15.4"
  1700. tls-async < "0.15.4"
  1701. tls-mirage < "0.15.4"
  1702. toml >= "5.0.0" & < "7.0.0"
  1703. toml-cconv
  1704. toml_cconv < "7.0.0"
  1705. toplevel_backend < "v0.17.0"
  1706. toplevel_expect_test >= "v0.12.0" & < "v0.17.0"
  1707. topological_sort >= "v0.12.0" & < "v0.17.0"
  1708. torch < "v0.17.0"
  1709. tqdm
  1710. tracing < "v0.17.0"
  1711. transept
  1712. traverse
  1713. travesty < "0.7.2"
  1714. travis-opam >= "1.5.0"
  1715. tree_layout >= "0.2"
  1716. treeprint >= "2.3.0"
  1717. trie >= "1.0.0"
  1718. tsort
  1719. tube >= "4.4.0"
  1720. tuntap >= "1.7.0"
  1721. twostep
  1722. typerep >= "v0.12.0" & < "v0.17.0"
  1723. tyre >= "0.5"
  1724. tyxml >= "4.3.0" & < "4.6.0"
  1725. tyxml-jsx < "4.6.0"
  1726. tyxml-lwd < "0.2"
  1727. tyxml-ppx >= "4.3.0" & < "4.6.0"
  1728. tyxml-syntax < "4.6.0"
  1729. ubase < "0.20"
  1730. ubpf < "0.2"
  1731. uecc >= "0.2"
  1732. uint >= "2.0.1"
  1733. ulid
  1734. unidecode
  1735. unionFind
  1736. unison = "2.51.4"
  1737. universo
  1738. unstrctrd
  1739. uri >= "2.2.0"
  1740. uri-bench
  1741. uri-re
  1742. uri-sexp
  1743. uritemplate
  1744. user-agent-parser
  1745. username_kernel < "v0.17.0"
  1746. utop >= "2.3.0"
  1747. uuuu >= "0.1.1"
  1748. variantslib >= "v0.12.0" & < "v0.17.0"
  1749. vcaml
  1750. vcardgen >= "1.2"
  1751. vchan >= "4.0.0"
  1752. vchan-unix >= "4.0.0"
  1753. vchan-xen >= "4.0.0"
  1754. vector
  1755. vercel
  1756. vhd-format >= "0.12.0"
  1757. vhd-format-lwt >= "0.12.0"
  1758. virtual_dom >= "v0.12.0" & < "v0.17.0"
  1759. visitors >= "20200207"
  1760. vlq >= "0.2.1"
  1761. vmnet >= "1.3.2"
  1762. vocal
  1763. voqc < "0.2.0"
  1764. vorbis >= "0.8.0"
  1765. wall >= "0.4"
  1766. wasmer
  1767. weberizer >= "0.8"
  1768. webmachine >= "0.6.2"
  1769. websocket >= "2.12" & < "2.15"
  1770. websocket-async >= "2.12" & < "2.15"
  1771. websocket-lwt >= "2.12"
  1772. websocket-lwt-unix < "2.15"
  1773. websocketaf
  1774. webtest >= "2.0.0"
  1775. webtest-js
  1776. wikitext
  1777. win-error >= "1.0"
  1778. win-eventlog = "0.3"
  1779. winsvc < "1.0.1"
  1780. ws
  1781. ws-server
  1782. wseg
  1783. wtf8 >= "1.0.2"
  1784. x509 >= "0.6.3"
  1785. xapi-backtrace >= "0.7"
  1786. xapi-inventory >= "1.2.1"
  1787. xapi-rrd >= "1.8.2"
  1788. xapi-stdext-date < "4.21.0"
  1789. xapi-stdext-encodings < "4.21.0"
  1790. xapi-stdext-pervasives < "4.21.0"
  1791. xapi-stdext-std < "4.21.0"
  1792. xapi-stdext-threads < "4.21.0"
  1793. xapi-stdext-unix < "4.21.0"
  1794. xapi-stdext-zerocheck < "4.21.0"
  1795. xdg-basedir
  1796. xen-evtchn >= "2.1.0"
  1797. xen-evtchn-unix >= "2.1.0"
  1798. xen-gnt >= "3.1.0"
  1799. xen-gnt-unix >= "3.1.0"
  1800. xenstore >= "2.1.0"
  1801. xenstore_transport >= "1.1.0"
  1802. xmlplaylist >= "0.1.5"
  1803. yaml >= "1.0.0"
  1804. yaml-sexp
  1805. yara >= "0.2"
  1806. yojson >= "1.5.0" & < "2.1.0"
  1807. yojson-bench
  1808. yurt >= "0.6"
  1809. yuscii >= "0.2.1"
  1810. yuujinchou >= "3.0.0"
  1811. zarith-ppx
  1812. zarith_stubs_js < "v0.17.0"
  1813. zed >= "2.0" & < "3.2.0"
  1814. zeit
  1815. zipperposition >= "1.5.1"
  1816. zipperposition-tools
  1817. zlib >= "0.6"
  1818. zmq >= "5.1.0" & < "5.2.1"
  1819. zmq-async >= "5.1.0" & < "5.2.1"
  1820. zmq-lwt >= "5.1.0" & < "5.2.1"
  1821. zstandard >= "v0.12.1" & < "v0.17.0"
  1822. zstd = "0.3"
  1823. zxcvbn >= "2.3+2"

Conflicts (3)

  1. jbuilder = "transition"
  2. dune-release < "1.3.0"
  3. odoc < "1.3.0"
OCaml

Innovation. Community. Security.