package dune

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

Install

Dune Dependency

Authors

Maintainers

Sources

dune-2.4.0.tbz
sha256=28f1484a798103021833d544f1a79b0234cca77add49bba073013eae94b9dc24
sha512=aa8561d7174f8435a0e86fbd165005a121797e5e5e46d50d5dc75c863bde0e2945311222cadb8ac27e75052bedbae9edf418cb1130f50d807705218ee284a19b

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: 09 Mar 2020

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.

In particular, 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.07.0 to build itself and can build OCaml projects using ocaml 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

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

The first command builds 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 work. 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.07~~"
  5. ocaml >= "4.07" & < "4.12"

Dev Dependencies

None

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

Conflicts (4)

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

Innovation. Community. Security.