package dune

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

Install

Dune Dependency

Authors

Maintainers

Sources

dune-2.8.1.tbz
sha256=e7b405c75af321ce6518aa8e70ebdd403dbcc2ede931713e69c2b5addda4bd44
sha512=300c9f5074af5db78c8ffb17b4a1c402fce322d9af4b213aa847bfd9f9fd053e757182f3da8b207f2d24afbd609a227e8c0e57ef038ab236322229c41e240c43

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: 14 Jan 2021

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

If you are new to opam, make sure to run eval $(opam config env) to make dune available in your PATH. The dune binary is self contained and relocatable, so you can safely copy it somewhere else to make it permanently available.

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.08~~"
  5. ocaml >= "4.08" & < "4.13"

Dev Dependencies

None

  1. 0install >= "2.15.1"
  2. 0install-gtk
  3. 0install-solver
  4. ANSITerminal >= "0.8.1"
  5. absolute
  6. abstract_algebra < "v0.17.0"
  7. accessor < "v0.17.0"
  8. accessor_async < "v0.17.0"
  9. accessor_base < "v0.17.0"
  10. accessor_core < "v0.17.0"
  11. acgtk >= "1.4.0" & < "2.0.0"
  12. aches
  13. aches-lwt
  14. acpc >= "2.0.0"
  15. advi
  16. agrid
  17. ahrocksdb
  18. aifad >= "2.2.1"
  19. alba >= "0.4.1"
  20. albatross
  21. alcotest >= "0.8.5" & < "1.7.0"
  22. alcotest-async >= "0.8.5" & < "1.7.0"
  23. alcotest-js < "1.7.0"
  24. alcotest-lwt >= "0.8.5" & < "1.7.0"
  25. alcotest-mirage < "1.7.0"
  26. alg_structs
  27. alg_structs_qcheck
  28. algaeff
  29. alsa >= "0.3.0"
  30. alt-ergo >= "2.3.0" & < "2.4.3"
  31. alt-ergo-free >= "2.3.3"
  32. alt-ergo-lib < "2.4.3"
  33. alt-ergo-lib-free
  34. alt-ergo-parsers < "2.4.3"
  35. alt-ergo-parsers-free
  36. altgr-ergo >= "2.3.0" & < "2.4.3"
  37. amf >= "0.1.2"
  38. amqp-client >= "2.0.3"
  39. amqp-client-async >= "2.0.3"
  40. amqp-client-lwt >= "2.0.3"
  41. anders
  42. angstrom >= "0.11.1"
  43. angstrom-async >= "0.11.1"
  44. angstrom-lwt-unix >= "0.11.1"
  45. angstrom-unix >= "0.11.1"
  46. ansi < "0.6.0"
  47. anthill
  48. ao >= "0.2.2"
  49. apronext
  50. archetype
  51. archi
  52. archi-async
  53. archi-lwt
  54. arg-complete
  55. argon2 >= "1.0.0"
  56. arp >= "1.0.0"
  57. arp-mirage
  58. art
  59. asak
  60. ask
  61. ask-integrator
  62. asli >= "0.2.0"
  63. asn1-combinators >= "0.2.2"
  64. async >= "v0.12.0" & < "v0.17.0"
  65. async-uri < "0.4.0"
  66. async_durable >= "v0.12.0" & < "v0.17.0"
  67. async_extra >= "v0.12.0" & < "v0.17.0"
  68. async_find >= "v0.12.0" & < "v0.17.0"
  69. async_graphics >= "0.7.0"
  70. async_inotify >= "v0.12.0" & < "v0.17.0"
  71. async_interactive >= "v0.12.0" & < "v0.17.0"
  72. async_js >= "v0.12.0" & < "v0.17.0"
  73. async_kernel >= "v0.12.0" & < "v0.17.0"
  74. async_rpc_kernel >= "v0.12.0" & < "v0.17.0"
  75. async_rpc_websocket < "v0.17.0"
  76. async_sendfile >= "v0.12.0" & < "v0.17.0"
  77. async_shell >= "v0.12.0" & < "v0.17.0"
  78. async_smtp >= "v0.12.0" & < "v0.17.0"
  79. async_ssl >= "v0.12.0" & < "v0.17.0"
  80. async_udp < "v0.17.0"
  81. async_unix >= "v0.12.0" & < "v0.17.0"
  82. async_websocket < "v0.17.0"
  83. atable
  84. atd >= "2.2.1"
  85. atdd
  86. atdgen >= "2.2.1"
  87. atdgen-codec-runtime
  88. atdgen-runtime >= "2.2.1"
  89. atdj >= "2.2.1" & < "20151001.01"
  90. atdpy
  91. atds
  92. atdts
  93. atomic < "base"
  94. autofonce
  95. autofonce_config
  96. autofonce_core
  97. autofonce_lib
  98. autofonce_m4
  99. autofonce_misc
  100. autofonce_patch
  101. autofonce_share
  102. avro
  103. avro-compiler
  104. awa
  105. awa-lwt
  106. awa-mirage
  107. aws >= "1.2"
  108. aws-async
  109. aws-autoscaling >= "1.2"
  110. aws-cloudformation >= "1.2"
  111. aws-cloudtrail >= "1.2"
  112. aws-cloudwatch
  113. aws-ec2 >= "1.2"
  114. aws-elasticache
  115. aws-elasticloadbalancing >= "1.2"
  116. aws-lwt
  117. aws-rds
  118. aws-route53
  119. aws-s3 >= "4.0.0"
  120. aws-s3-async >= "4.0.0"
  121. aws-s3-lwt >= "4.0.0"
  122. aws-sdb >= "1.2"
  123. aws-sqs
  124. aws-ssm >= "1.2"
  125. aws-sts >= "1.2"
  126. azblob
  127. azblob-async
  128. azure-cosmos-db
  129. babel < "v0.17.0"
  130. bag
  131. bare_encoding
  132. bark
  133. base >= "v0.12.0" & < "v0.17.0"
  134. base32
  135. base64 >= "2.3.0"
  136. base_bigstring < "v0.17.0"
  137. base_quickcheck >= "v0.12.1" & < "v0.17.0"
  138. base_trie < "v0.17.0"
  139. bastet
  140. bastet_async
  141. bastet_lwt
  142. batch_jaro_winkler
  143. batsat
  144. batteries >= "3.7.1"
  145. bddrand
  146. bech32
  147. bechamel
  148. bechamel-js
  149. bechamel-notty
  150. bechamel-perf
  151. beluga = "1.0"
  152. benchmark >= "1.6"
  153. benchpress
  154. benchpress-server
  155. bencode >= "2.0"
  156. bentov
  157. bheap >= "2.0.0"
  158. bidirectional_map < "v0.17.0"
  159. bigarray-compat
  160. bigarray-overlap
  161. bigdecimal < "v0.17.0"
  162. bignum >= "v0.12.0" & < "v0.17.0"
  163. bigstring >= "0.3"
  164. bigstring-unix >= "0.3"
  165. bigstringaf >= "0.5.0" & < "0.9.1"
  166. bimage
  167. bimage-display
  168. bimage-gtk
  169. bimage-io
  170. bimage-lwt
  171. bimage-sdl
  172. bimage-unix
  173. bimap
  174. bin_prot >= "v0.12.0" & < "v0.17.0"
  175. binaryen != "0.3.0" & < "0.11.0"
  176. binaryen_dsl
  177. bindlib >= "6.0.0"
  178. biniou >= "1.2.1"
  179. binning
  180. binsec >= "0.4.0" & < "0.5.0"
  181. bio_io != "0.1.2" & < "0.5.1"
  182. biocaml >= "0.9.0"
  183. biotk < "0.3"
  184. bisect_ppx >= "1.4.0" & < "2.8.3"
  185. bistro >= "0.5.0"
  186. bistro-bio
  187. bitcoin >= "3.0"
  188. bitcoin-cohttp-async
  189. bitcoin-cohttp-lwt
  190. bitcoin-ocurl
  191. bitcoinml >= "0.4.1"
  192. bitlib
  193. bitmasks >= "1.2.0"
  194. bitpack_serializer
  195. bitstring >= "3.1.1"
  196. bitv >= "1.4"
  197. bitwuzla
  198. bitwuzla-bin < "1.0.0"
  199. bitwuzla-c
  200. bjack >= "0.1.6"
  201. blake2 >= "0.3"
  202. blake3
  203. bloomf
  204. bls12-381 < "0.4.1"
  205. bnfgen
  206. bogue
  207. boltzgen
  208. bonsai < "v0.17.0"
  209. box
  210. brr-lwd
  211. bson2
  212. bst >= "6.0.0"
  213. buffer-pool
  214. build_path_prefix_map >= "0.3"
  215. builder
  216. builder-web
  217. bun >= "0.3.4"
  218. bwd
  219. bwrap
  220. bytearray >= "1.0.1"
  221. bytebuffer
  222. bytepdf
  223. bz2
  224. ca-certs
  225. ca-certs-nss
  226. cactus
  227. cairo2 >= "0.6"
  228. cairo2-gtk
  229. cairo2-pango
  230. calculon >= "0.4"
  231. calculon-redis
  232. calculon-redis-lib
  233. calculon-web >= "0.4"
  234. caldav < "0.2.2"
  235. calendar >= "3.0.0"
  236. calendars
  237. calipso
  238. callipyge >= "0.2"
  239. camelot
  240. camels
  241. camelsnakekebab
  242. camlimages >= "5.0.2" & < "5.0.5"
  243. camlon >= "3.0.0"
  244. camlp-streams
  245. camltc >= "0.9.8"
  246. camomile = "1.0.2"
  247. camyll
  248. capnp >= "3.3.0"
  249. capnp-rpc >= "0.3.2" & < "1.2.3"
  250. capnp-rpc-lwt >= "0.3.2" & < "1.2.3"
  251. capnp-rpc-mirage >= "0.3.2" & < "1.2.3"
  252. capnp-rpc-net < "1.2.3"
  253. capnp-rpc-unix >= "0.3.2" & < "1.2.3"
  254. caqti >= "1.0.0" & < "2.1.1"
  255. caqti-async >= "1.0.0" & < "2.1.1"
  256. caqti-driver-mariadb >= "1.0.0" & < "2.0.1"
  257. caqti-driver-pgx < "2.1.1"
  258. caqti-driver-postgresql >= "1.0.0" & < "2.1.1"
  259. caqti-driver-sqlite3 >= "1.0.0" & < "2.1.1"
  260. caqti-dynload >= "1.0.0"
  261. caqti-eio < "2.1.1"
  262. caqti-lwt >= "1.0.0" & < "2.1.1"
  263. caqti-mirage < "2.1.1"
  264. caqti-type-calendar >= "1.0.0"
  265. carton
  266. carton-git
  267. carton-lwt
  268. catala < "0.8.0"
  269. catapult
  270. catapult-client
  271. catapult-daemon
  272. catapult-file
  273. catapult-sqlite
  274. cbor >= "0.3"
  275. cconv >= "0.5"
  276. cconv-ppx
  277. cdb
  278. cdrom >= "0.9.4"
  279. certify >= "0.3.0"
  280. cf < "0.5.0"
  281. cf-lwt < "0.5.0"
  282. cfg >= "2.2.0"
  283. cfml
  284. cfstream >= "1.3.1"
  285. chacha
  286. charInfo_width
  287. charrua
  288. charrua-client >= "0.11.2"
  289. charrua-client-lwt >= "0.11.2"
  290. charrua-client-mirage >= "0.11.2"
  291. charrua-core >= "0.11.2"
  292. charrua-server
  293. charrua-unix >= "0.11.2"
  294. charset
  295. chartjs
  296. chartjs-annotation
  297. chartjs-colorschemes
  298. chartjs-datalabels
  299. chartjs-streaming
  300. chase
  301. checkseum = "0.0.3" | >= "0.2.1"
  302. choice >= "0.4"
  303. cinaps >= "v0.12.0"
  304. clangml >= "4.0.0" & < "4.8.0"
  305. clangml-transforms >= "0.24"
  306. clap
  307. clarity >= "0.4.0"
  308. clarity-lang
  309. clim
  310. clim-ppx
  311. clz
  312. cmarker
  313. codept >= "0.10.3"
  314. cohttp >= "1.1.1" & < "6.0.0~alpha0"
  315. cohttp-async >= "1.1.1" & < "6.0.0~alpha0"
  316. cohttp-lwt >= "1.1.1" & < "6.0.0~alpha0"
  317. cohttp-lwt-jsoo >= "1.1.1" & < "6.0.0~alpha0"
  318. cohttp-lwt-unix >= "1.1.1" & < "6.0.0~alpha0"
  319. cohttp-lwt-unix-nossl
  320. cohttp-lwt-unix-ssl
  321. cohttp-mirage >= "1.1.1" & < "6.0.0~alpha0"
  322. cohttp-top >= "1.1.1" & < "6.0.0~alpha0"
  323. cohttp_async_websocket < "v0.17.0"
  324. cohttp_static_handler < "v0.17.0"
  325. coin >= "0.1.1"
  326. colombe
  327. color >= "0.2.0"
  328. color-brewery
  329. combinat
  330. comby
  331. comby-kernel
  332. comby-semantic
  333. command_rpc >= "v0.12.0" & < "v0.17.0"
  334. conduit >= "1.3.0"
  335. conduit-async >= "1.3.0"
  336. conduit-async-ssl
  337. conduit-async-tls
  338. conduit-lwt >= "1.3.0"
  339. conduit-lwt-ssl
  340. conduit-lwt-tls
  341. conduit-lwt-unix >= "1.3.0"
  342. conduit-mirage
  343. conduit-tls
  344. conex >= "0.10.0"
  345. conex-mirage-crypto
  346. conex-nocrypto
  347. conformist
  348. containers >= "2.4" & < "3.13"
  349. containers-data < "3.13"
  350. containers-thread
  351. content_security_policy < "v0.17.0"
  352. cookie
  353. cookies
  354. coq >= "8.14.0" & < "8.17.0"
  355. coq-of-ocaml >= "2.4.1" & != "2.5.2+4.13" & < "2.5.3+4.13"
  356. coq-serapi >= "8.9.0+0.6.0"
  357. coqide >= "8.14.0" & < "8.17.0"
  358. core >= "v0.12.0" & < "v0.17.0"
  359. core_bench >= "v0.12.0" & < "v0.17.0"
  360. core_compat
  361. core_extended >= "v0.12.0" & < "v0.17.0"
  362. core_kernel >= "v0.12.3" & < "v0.17.0"
  363. core_profiler >= "v0.12.0" & < "v0.17.0"
  364. core_unix < "v0.17.0"
  365. cosovo
  366. cow = "2.4.0"
  367. cowabloga >= "0.5.0"
  368. cpm >= "5.0.0"
  369. cppo >= "1.6.6"
  370. cppo_ocamlbuild >= "1.6.6"
  371. cps_toolbox < "0.3"
  372. cpu
  373. cpuid >= "0.1.2"
  374. crc >= "2.1.0"
  375. crlibm >= "0.3"
  376. crontab
  377. crowbar = "0.2"
  378. crunch >= "2.2.0"
  379. cry >= "0.6.5"
  380. cryptokit >= "1.16.1"
  381. csexp < "1.5.2"
  382. css-parser
  383. cstruct >= "3.3.0"
  384. cstruct-async >= "3.3.0"
  385. cstruct-lwt >= "3.3.0"
  386. cstruct-sexp
  387. cstruct-unix >= "3.3.0"
  388. csv >= "2.2"
  389. csv-lwt >= "2.1"
  390. csvfields >= "v0.12.0" & < "v0.17.0"
  391. csvtool
  392. ctoxml
  393. ctypes-zarith
  394. cudf >= "0.10"
  395. cuid >= "0.2"
  396. cumulus
  397. curly >= "0.2.0"
  398. current < "0.6"
  399. current-web-pipelines
  400. current_ansi
  401. current_docker < "0.6"
  402. current_examples < "0.6"
  403. current_git < "0.6"
  404. current_github < "0.6"
  405. current_incr
  406. current_ocluster < "0.2"
  407. current_rpc < "0.6"
  408. current_slack < "0.6"
  409. current_web < "0.6"
  410. curses >= "1.0.9"
  411. curve-sampling
  412. cviode
  413. cwe_checker
  414. DrawGrammar >= "0.2.2"
  415. daft >= "0.0.4"
  416. dap
  417. data-encoding < "1.0.0"
  418. dataframe
  419. datakit >= "0.12.2"
  420. datakit-bridge-github >= "0.12.2"
  421. datakit-bridge-local-git >= "0.12.2"
  422. datakit-ci >= "0.12.2"
  423. datakit-client >= "0.12.2"
  424. datakit-client-9p >= "0.12.2"
  425. datakit-client-git >= "0.12.2"
  426. datakit-github >= "0.12.2"
  427. datakit-server >= "0.12.2"
  428. datakit-server-9p >= "0.12.2"
  429. datalog >= "0.6"
  430. dates_calc
  431. daypack-lib
  432. dbf < "0.1.1"
  433. debian-formats >= "0.1.2"
  434. decimal
  435. decoders >= "0.1.2" & < "1.0.0"
  436. decoders-bencode < "1.0.0"
  437. decoders-cbor < "1.0.0"
  438. decoders-ezjsonm >= "0.1.2" & < "1.0.0"
  439. decoders-jsonm < "1.0.0"
  440. decoders-msgpck < "1.0.0"
  441. decoders-sexplib < "1.0.0"
  442. decoders-yojson >= "0.1.2" & < "1.0.0"
  443. decompress >= "0.8.1"
  444. dedent < "v0.17.0"
  445. dedukti >= "2.7"
  446. delimited_parsing >= "v0.12.0" & < "v0.17.0"
  447. depyt >= "0.3.0"
  448. devkit >= "1.0"
  449. diet >= "0.2"
  450. diffable
  451. digestif >= "0.7" & < "0.7.2" | >= "0.8.1"
  452. directories
  453. dirsift
  454. dirsp-exchange
  455. dirsp-exchange-kbb2017
  456. dirsp-proscript
  457. dirsp-proscript-mirage
  458. dirsp-ps2ocaml
  459. disml
  460. dispatch >= "0.4.1"
  461. dispatch-js >= "0.4.1"
  462. distributed >= "0.6.0"
  463. distributed-lwt >= "0.2.0"
  464. distributed-uwt >= "0.2.0"
  465. dkim
  466. dkim-bin
  467. dkim-mirage
  468. dlm >= "0.3.1"
  469. dns >= "1.1.0"
  470. dns-async >= "1.1.0"
  471. dns-certify
  472. dns-cli
  473. dns-client
  474. dns-client-lwt
  475. dns-client-mirage
  476. dns-lwt >= "1.1.0"
  477. dns-lwt-unix >= "1.1.0"
  478. dns-mirage
  479. dns-resolver
  480. dns-server
  481. dns-stub
  482. dns-tsig
  483. dnssec
  484. docker-api >= "0.2"
  485. docker_hub
  486. dockerfile >= "6.0.0" & < "8.1.0"
  487. dockerfile-cmd >= "6.0.0" & < "8.1.0"
  488. dockerfile-opam >= "6.0.0" & < "8.1.0"
  489. docteur
  490. docteur-solo5
  491. docteur-unix
  492. doi2bib
  493. dokeysto >= "3.0.1"
  494. dokeysto_camltc >= "3.0.1"
  495. dokeysto_lz4 >= "3.0.2"
  496. dolmen >= "0.4.1" & < "0.8"
  497. dolmen_bin < "0.8"
  498. dolmen_loop < "0.8"
  499. dolmen_lsp < "0.8"
  500. dolmen_type < "0.8"
  501. dolog >= "4.0.0"
  502. domain-name >= "0.1.2"
  503. domainslib < "0.5.0"
  504. dose3 >= "6.1"
  505. dose3-extra
  506. dot-merlin-reader < "4.2"
  507. dotenv
  508. dream
  509. dream-cli
  510. dream-encoding
  511. dream-html
  512. dream-httpaf
  513. dream-livereload
  514. dream-pure
  515. dream-serve
  516. drom >= "0.3.0"
  517. drom_lib >= "0.3.0"
  518. drom_toml
  519. dropbox >= "0.2"
  520. dropbox_lwt_unix
  521. dssi >= "0.1.3"
  522. dtoa >= "0.3.2"
  523. dtools >= "0.4.2"
  524. dual
  525. duff >= "0.2"
  526. dum >= "1.0.2"
  527. dune-action-plugin < "2.9.0"
  528. dune-build-info < "2.9.0"
  529. dune-compiledb
  530. dune-configurator >= "1.11.4" & < "2.9.0"
  531. dune-deps
  532. dune-expand
  533. dune-glob < "2.9.0"
  534. dune-private-libs < "2.9.0"
  535. dune-release >= "1.0.0" & < "2.0.0"
  536. dune-site < "2.9.0"
  537. duppy >= "0.9.0"
  538. duration >= "0.1.2"
  539. earley >= "2.0.0"
  540. earlybird < "1.3.2"
  541. easy-format = "1.3.2"
  542. easy_logging
  543. easy_logging_yojson
  544. ecaml >= "v0.12.0" & < "v0.17.0"
  545. edn >= "0.1.6-1-gff9db95"
  546. eigen >= "0.1.0"
  547. eio-ssl
  548. either
  549. elasticsearch-cli >= "0.5"
  550. electrod >= "0.2.1"
  551. elpi >= "1.3.1"
  552. email_message >= "v0.12.0" & < "v0.17.0"
  553. embedded_ocaml_templates < "0.8"
  554. emile >= "0.4"
  555. encore >= "0.3"
  556. env_config < "v0.17.0"
  557. epictetus
  558. eqaf >= "0.2"
  559. eqaf-cstruct
  560. erlang
  561. erssical >= "1.1.0"
  562. esgg
  563. esperanto-cosmopolitan >= "0.0.5"
  564. ethernet
  565. euler
  566. exenum >= "0.86"
  567. exit
  568. expect_test_helpers >= "v0.12.0"
  569. expect_test_helpers_async < "v0.17.0"
  570. expect_test_helpers_core < "v0.17.0"
  571. expect_test_helpers_kernel >= "v0.12.0"
  572. extlib >= "1.7.9"
  573. extunix >= "0.3.1"
  574. ez_api
  575. ez_cmdliner
  576. ez_config
  577. ez_file != "0.2.0"
  578. ez_hash
  579. ez_pgocaml
  580. ez_search
  581. ez_subst
  582. ezcurl
  583. ezcurl-lwt
  584. ezdl
  585. ezgzip >= "0.2.3"
  586. ezjs_ace
  587. ezjs_blockies
  588. ezjs_cleave
  589. ezjs_crypto
  590. ezjs_cytoscape
  591. ezjs_d3pie
  592. ezjs_extension
  593. ezjs_fetch < "0.3"
  594. ezjs_idb
  595. ezjs_jquery
  596. ezjs_min
  597. ezjs_odometer
  598. ezjs_push
  599. ezjs_qrcode
  600. ezjs_recaptcha
  601. ezjs_timeline
  602. ezjsonm >= "1.0.0"
  603. ezjsonm-lwt >= "1.0.0"
  604. ezresto
  605. ezresto-directory
  606. ezsqlite >= "0.4.2"
  607. ezxenstore >= "0.4.1"
  608. ezxmlm >= "1.1.0"
  609. FPauth
  610. FPauth-core
  611. FPauth-responses
  612. FPauth-strategies
  613. FrontC >= "4.0.0"
  614. faad >= "0.5.0"
  615. facteur
  616. fadbadml >= "0.1.2"
  617. faraday >= "0.7.1"
  618. faraday-async >= "0.7.1"
  619. faraday-lwt >= "0.7.1"
  620. faraday-lwt-unix >= "0.7.1"
  621. farmhash >= "0.4"
  622. fasmifra
  623. fat-filesystem >= "0.13.0"
  624. fd-send-recv >= "2.0.1"
  625. fdkaac = "0.3.2"
  626. feat
  627. feat-core
  628. feat-num
  629. feather
  630. feather_async
  631. ff
  632. ff-bench
  633. ff-pbt
  634. ff-sig
  635. ffmpeg >= "1.0.0~beta1" & < "1.1.5"
  636. ffmpeg-av < "1.1.5"
  637. ffmpeg-avcodec < "1.1.5"
  638. ffmpeg-avdevice < "1.1.5"
  639. ffmpeg-avfilter < "1.1.5"
  640. ffmpeg-avutil < "1.1.5"
  641. ffmpeg-swresample < "1.1.5"
  642. ffmpeg-swscale < "1.1.5"
  643. fftw3 >= "0.8.2"
  644. fiat-p256
  645. fieldslib >= "v0.12.0" & < "v0.17.0"
  646. file_path < "v0.17.0"
  647. fileutils >= "0.6.1"
  648. finch
  649. fit
  650. fix >= "20181206"
  651. flac >= "0.3.0"
  652. flex-array
  653. fmlib < "0.5.3"
  654. fmlib_js < "0.5.3"
  655. fmlib_parse < "0.5.3"
  656. fmlib_pretty < "0.5.3"
  657. fmlib_std < "0.5.3"
  658. fontforge-of-ocaml
  659. fred
  660. freetds >= "0.7"
  661. frei0r >= "0.1.2"
  662. frenetic >= "5.0.5"
  663. fromager
  664. fsevents
  665. fsevents-lwt
  666. fsml
  667. fswatch
  668. fswatch_async
  669. fswatch_lwt
  670. fun-postgresql
  671. fun-sql
  672. fun-sqlite
  673. functoria >= "2.2.2" & < "4.0.0"
  674. functoria-runtime >= "2.2.2" & != "2.2.5" & < "3.0.2" | >= "3.1.2" & < "4.0.0"
  675. fuzzy_compare
  676. fuzzy_match < "v0.17.0"
  677. fzf < "v0.17.0"
  678. General >= "0.6.0"
  679. GT
  680. gapi-ocaml >= "0.3.7"
  681. gbddml
  682. gd >= "1.1"
  683. gdbprofiler >= "0.4"
  684. gemini >= "0.3.0"
  685. gen >= "0.5.2"
  686. gen_js_api >= "1.0.6"
  687. genprint
  688. genspio >= "0.0.3"
  689. genspir >= "1.0.0"
  690. geoml
  691. get_line >= "7.0.0"
  692. gettext >= "0.4.1"
  693. gettext-camomile
  694. gettext-stub
  695. git >= "2.0.0"
  696. git-cohttp
  697. git-cohttp-mirage
  698. git-cohttp-unix
  699. git-http >= "2.0.0"
  700. git-mirage >= "2.0.0"
  701. git-paf
  702. git-unix >= "2.0.0"
  703. github >= "4.0.0"
  704. github-data
  705. github-hooks >= "0.4.0"
  706. github-hooks-unix >= "0.4.0"
  707. github-jsoo >= "4.0.0"
  708. github-unix >= "4.0.0"
  709. glfw-ocaml
  710. globlon
  711. gluten
  712. gluten-async
  713. gluten-eio
  714. gluten-lwt
  715. gluten-lwt-unix
  716. gluten-mirage
  717. gmap >= "0.2.1"
  718. gmp
  719. gnuplot >= "0.6"
  720. gobba
  721. gobject-introspection
  722. goblint-cil >= "1.8.0"
  723. google-drive-ocamlfuse >= "0.6.26"
  724. gopcaml-mode >= "0.0.2" & < "0.0.6"
  725. gospel < "0.2.0"
  726. gotd
  727. gperftools >= "0.4"
  728. gpiod
  729. gpr >= "1.4.0"
  730. gr
  731. graphics >= "5.0.0"
  732. graphql >= "0.8.0"
  733. graphql-async >= "0.8.0"
  734. graphql-cohttp >= "0.9.0"
  735. graphql-lwt >= "0.8.0"
  736. graphql_parser >= "0.9.0"
  737. graphql_ppx >= "0.7.1"
  738. graphv
  739. graphv_core
  740. graphv_core_lib
  741. graphv_font
  742. graphv_font_js
  743. graphv_font_stb_truetype
  744. graphv_gles2
  745. graphv_gles2_native
  746. graphv_gles2_native_impl
  747. graphv_webgl
  748. graphv_webgl_impl
  749. gremlin
  750. grenier >= "0.8" & < "0.15"
  751. grid
  752. grpc < "0.2.0"
  753. grpc-async < "0.2.0"
  754. grpc-lwt < "0.2.0"
  755. gsl >= "1.24.0"
  756. gstreamer >= "0.3.1"
  757. h1_parser
  758. h2
  759. h2-async
  760. h2-eio
  761. h2-lwt
  762. h2-lwt-unix
  763. h2-mirage
  764. hack_parallel >= "1.0.0"
  765. hacl >= "0.3"
  766. hacl-star
  767. hacl-star-raw >= "0.5.0"
  768. hacl_x25519
  769. happy-eyeballs
  770. happy-eyeballs-lwt
  771. happy-eyeballs-mirage
  772. hardcaml >= "v0.12.0" & < "v0.17.0"
  773. hardcaml_axi < "v0.17.0"
  774. hardcaml_c < "v0.17.0"
  775. hardcaml_circuits < "v0.17.0"
  776. hardcaml_fixed_point < "v0.17.0"
  777. hardcaml_handshake < "v0.17.0"
  778. hardcaml_of_verilog < "v0.17.0"
  779. hardcaml_step_testbench < "v0.17.0"
  780. hardcaml_verify < "v0.17.0"
  781. hardcaml_verilator < "v0.17.0"
  782. hardcaml_waveterm < "v0.17.0"
  783. hardcaml_xilinx < "v0.17.0"
  784. hardcaml_xilinx_components < "v0.17.0"
  785. hardcaml_xilinx_reports < "v0.17.0"
  786. hashcons >= "1.4.0"
  787. hashids >= "1.0.1"
  788. haxe >= "4.1.1"
  789. hc < "0.2"
  790. hdf5 >= "0.1.5"
  791. headache >= "1.04" & < "1.07"
  792. header-check
  793. herdtools7 >= "7.55"
  794. hex >= "1.3.0"
  795. hex_encode < "v0.17.0"
  796. hexstring
  797. hg_lib < "v0.17.0"
  798. hidapi >= "1.1"
  799. hidapi-lwt
  800. higher_kinded < "v0.17.0"
  801. hkdf >= "1.0.3"
  802. hl_yaml
  803. hockmd
  804. horned_worm >= "0.3.4"
  805. hpack
  806. hts_shrink >= "2.0.0"
  807. http-cookie != "4.0.0" & < "4.3.0"
  808. http-lwt-client
  809. http-mirage-client
  810. http-multipart-formdata
  811. httpaf >= "0.6.0"
  812. httpaf-async >= "0.6.0"
  813. httpaf-lwt-unix
  814. httpaf_caged
  815. httph
  816. huffman
  817. hvsock >= "2.0.0"
  818. hxd
  819. hyper
  820. ISO8601 >= "0.2.6"
  821. i3ipc >= "0.1.4"
  822. icalendar
  823. idd
  824. idds
  825. imagelib >= "20200929"
  826. incr_dom >= "v0.12.0" & < "v0.17.0"
  827. incr_dom_interactive < "v0.17.0"
  828. incr_dom_keyboard
  829. incr_dom_partial_render < "v0.17.0"
  830. incr_dom_sexp_form < "v0.17.0"
  831. incr_dom_widgets >= "v0.12.0"
  832. incr_map >= "v0.12.0" & < "v0.17.0"
  833. incr_select >= "v0.12.0" & < "v0.17.0"
  834. incremental >= "v0.12.0" & < "v0.17.0"
  835. indentation_buffer < "v0.17.0"
  836. index
  837. index-bench
  838. inferno >= "20190924"
  839. influxdb
  840. influxdb-async
  841. influxdb-lwt
  842. inquire
  843. int_repr < "v0.17.0"
  844. integers >= "0.3.0"
  845. integers_stubs_js
  846. integration1d >= "0.5.1"
  847. interface-prime
  848. interface-prime-lwt
  849. interval >= "1.5" & < "1.6"
  850. interval-map
  851. interval_base
  852. interval_crlibm
  853. interval_intel
  854. io-page >= "2.1.0"
  855. io-page-unix >= "2.1.0"
  856. io-page-xen >= "2.1.0"
  857. iostream
  858. iostream-camlzip
  859. ipaddr >= "2.9.0"
  860. ipaddr-cstruct
  861. ipaddr-sexp
  862. irc-client >= "0.6.2"
  863. irc-client-lwt >= "0.6.2"
  864. irc-client-lwt-ssl
  865. irc-client-tls >= "0.6.2"
  866. irc-client-unix >= "0.6.2"
  867. irmin >= "2.0.0" & < "3.0.0"
  868. irmin-bench < "3.0.0"
  869. irmin-chunk >= "2.0.0" & < "3.0.0"
  870. irmin-containers < "3.0.0"
  871. irmin-fs >= "2.0.0" & < "3.0.0"
  872. irmin-git >= "2.0.0" & < "3.0.0"
  873. irmin-graphql < "3.0.0"
  874. irmin-http >= "2.0.0" & < "3.0.0"
  875. irmin-indexeddb >= "2.0"
  876. irmin-layers
  877. irmin-mem >= "2.0.0"
  878. irmin-mirage >= "2.0.0" & < "3.0.0"
  879. irmin-mirage-git < "3.0.0"
  880. irmin-mirage-graphql < "3.0.0"
  881. irmin-pack < "3.0.0"
  882. irmin-test < "3.0.0"
  883. irmin-tezos < "3.0.0"
  884. irmin-unix >= "2.0.0" & < "3.0.0"
  885. irmin-watcher >= "0.5.0"
  886. iso639
  887. iter
  888. itv-tree >= "2.2"
  889. JsOfOCairo >= "2.0.0"
  890. jane-street-headers >= "v0.12.0" & < "v0.17.0"
  891. jane_rope < "v0.17.0"
  892. janestreet_cpuid < "v0.17.0"
  893. janestreet_csv < "v0.17.0"
  894. janestreet_lru_cache < "v0.17.0"
  895. jekyll-format >= "0.2.0" & < "0.3.1"
  896. jemalloc >= "0.2"
  897. jerboa
  898. jhupllib >= "0.2.1"
  899. jingoo >= "1.3.0"
  900. jose
  901. js_of_ocaml >= "3.3.0" & < "4.0.0"
  902. js_of_ocaml-compiler >= "3.3.0" & < "4.0.0"
  903. js_of_ocaml-lwt >= "3.3.0" & < "4.0.0"
  904. js_of_ocaml-ocamlbuild >= "3.5.0" & < "5.0"
  905. js_of_ocaml-ppx >= "3.3.0" & < "4.0.0"
  906. js_of_ocaml-ppx_deriving_json >= "3.3.0" & < "4.0.0"
  907. js_of_ocaml-toplevel >= "3.3.0" & < "4.0.0"
  908. js_of_ocaml-tyxml >= "3.3.0" & < "4.0.0"
  909. js_of_ocaml-webgpu
  910. js_of_ocaml-webidl
  911. js_of_ocaml_patches < "v0.17.0"
  912. json-data-encoding < "1.0.0"
  913. json-data-encoding-browser < "1.0.0"
  914. json-data-encoding-bson < "1.0.0"
  915. json_decoder
  916. jsonaf < "v0.17.0"
  917. jsonoo
  918. jsonrpc < "1.8.2"
  919. jsonxt
  920. jsoo-react
  921. jsoo_broadcastchannel >= "2.0.0"
  922. jsoo_storage >= "1.0.1"
  923. jst-config < "v0.17.0"
  924. junit >= "2.0.1"
  925. junit_alcotest >= "2.0.1"
  926. junit_ounit >= "2.0.1"
  927. jupyter >= "2.3.2"
  928. jupyter-archimedes >= "2.3.2"
  929. jupyter-kernel >= "0.4"
  930. jwto
  931. kafka >= "0.5"
  932. kafka_async
  933. kafka_lwt
  934. kappa-agents
  935. kappa-binaries
  936. kappa-library
  937. kappa-server
  938. kcas < "0.1.6"
  939. ke
  940. key-parsers >= "0.10.0"
  941. kicadsch >= "0.4.0"
  942. kind2
  943. kinetic-client >= "0.0.11"
  944. kittyimg
  945. kqueue < "0.2.0"
  946. krb
  947. lablgtk3 >= "3.0.beta4"
  948. lablgtk3-goocanvas2
  949. lablgtk3-gtkspell3
  950. lablgtk3-rsvg2
  951. lablgtk3-sourceview3
  952. lablqml >= "0.6"
  953. labrys
  954. lacaml >= "11.0.2"
  955. ladspa >= "0.2.0"
  956. lambda
  957. lambda-runtime
  958. lambda-term >= "2.0" & < "3.3.0"
  959. lambda_streams
  960. lambda_streams_async
  961. lambda_streams_lwt
  962. lambdapi >= "2.0.0" & < "2.3.1"
  963. lambdasoup >= "0.6.4"
  964. lame >= "0.3.4"
  965. landmarks >= "1.4"
  966. landmarks-ppx
  967. lascar >= "0.6-alpha"
  968. lastfm = "0.3.3"
  969. launchd >= "1.3"
  970. lazy-trie >= "1.2.0"
  971. lbfgs >= "0.9.1"
  972. lbvs_consent >= "2.1.0"
  973. ldap >= "2.4.1"
  974. learn-ocaml
  975. learn-ocaml-client
  976. ledgerwallet
  977. ledgerwallet-tezos
  978. lens >= "1.2.3"
  979. let-if >= "0.2.0"
  980. letsencrypt
  981. letsencrypt-app
  982. letsencrypt-dns
  983. letsencrypt-mirage
  984. letters
  985. leveldb >= "1.3.0"
  986. libabsolute
  987. libsvm >= "0.10.0"
  988. libzipperposition
  989. lilac
  990. lilv
  991. line-up-words >= "v0.12.0" & < "v0.17.0"
  992. line_oriented
  993. linenoise >= "1.2.0"
  994. links >= "0.9"
  995. links-mysql
  996. links-postgresql >= "0.9"
  997. links-sqlite3
  998. linol
  999. linol-eio
  1000. linol-lwt
  1001. lintcstubs-arity < "0.2.0" | >= "0.4.1"
  1002. linwrap
  1003. liquid_interpreter
  1004. liquid_ml
  1005. liquid_parser
  1006. liquid_std
  1007. liquid_syntax
  1008. little_logger
  1009. llama-cpp-ocaml
  1010. llvm >= "15.0.7+nnp-2"
  1011. lmdb >= "1.0"
  1012. lo >= "0.2.0"
  1013. loga >= "0.0.5"
  1014. logical
  1015. logs-async < "1.3"
  1016. logs-async-reporter < "1.3"
  1017. logs-ppx
  1018. logs-syslog >= "0.2.0"
  1019. logtk >= "1.5.1"
  1020. lp
  1021. lp-glpk
  1022. lp-glpk-js
  1023. lp-gurobi
  1024. lpd >= "1.2.2"
  1025. lru >= "0.3.0"
  1026. lru_cache >= "v0.16.0"
  1027. lsp < "1.8.2"
  1028. lt-code
  1029. lua_parser
  1030. lun
  1031. lustre-v6 >= "6.103.3"
  1032. lutils >= "1.51.2"
  1033. lutin >= "2.71.10"
  1034. luv
  1035. luv_unix
  1036. lwd
  1037. lwt >= "4.2.0"
  1038. lwt-canceler
  1039. lwt-dllist
  1040. lwt-exit
  1041. lwt-parallel >= "1.0.0"
  1042. lwt-pipe
  1043. lwt-pipeline >= "0.2"
  1044. lwt-watcher
  1045. lwt_domain
  1046. lwt_glib >= "1.1.1"
  1047. lwt_log >= "1.1.1"
  1048. lwt_ppx >= "1.2.2"
  1049. lwt_ppx_let
  1050. lwt_react >= "1.1.2"
  1051. lwt_ssl >= "1.1.3"
  1052. lz4 >= "1.2.0"
  1053. lz4_chans
  1054. macaddr
  1055. macaddr-cstruct
  1056. macaddr-sexp
  1057. mad >= "0.5.0"
  1058. magic-mime >= "1.1.2"
  1059. magic-trace
  1060. make-random
  1061. malfunction >= "0.3" & < "0.5"
  1062. man_in_the_middle_debugger < "v0.17.0"
  1063. markdown
  1064. markup >= "0.8.0"
  1065. markup-lwt
  1066. mastodon-archive-viewer >= "0.2" & < "0.4.0"
  1067. matplotlib
  1068. mc2
  1069. mccs >= "1.1+10"
  1070. md2mld < "0.7.0"
  1071. mdx != "1.7.0" & < "2.2.0"
  1072. mec
  1073. mechaml >= "1.1.0"
  1074. mem_usage
  1075. memcad >= "1.1.0"
  1076. memgraph
  1077. memgraph_kitty
  1078. memo
  1079. memprof-limits
  1080. memtrace
  1081. memtrace-mirage
  1082. memtrace_viewer
  1083. menhir >= "20200123"
  1084. menhirCST
  1085. menhirLib
  1086. menhirSdk
  1087. merge-fmt
  1088. merlin >= "3.2.1" & < "4.3.1-411"
  1089. merlin-extend >= "0.4"
  1090. mesh >= "0.9.5"
  1091. mesh-easymesh >= "0.9.5"
  1092. mesh-graphics >= "0.9.5"
  1093. mesh-triangle >= "0.9.5"
  1094. metapp
  1095. metaquot
  1096. metrics
  1097. metrics-influx
  1098. metrics-lwt
  1099. metrics-mirage
  1100. metrics-rusage
  1101. metrics-unix
  1102. mew
  1103. mew_vi
  1104. mimic
  1105. mimic-happy-eyeballs
  1106. mindstorm >= "0.8"
  1107. mindstorm-lwt
  1108. minicaml
  1109. minicli >= "5.0.2"
  1110. minisat >= "0.3"
  1111. miou
  1112. mirage >= "3.3.0" & < "4.0.0"
  1113. mirage-block >= "1.2.0"
  1114. mirage-block-ccm >= "1.1.0"
  1115. mirage-block-combinators
  1116. mirage-block-lwt >= "1.2.0"
  1117. mirage-block-ramdisk >= "0.4"
  1118. mirage-block-solo5 >= "0.6.0"
  1119. mirage-block-unix >= "2.11.0"
  1120. mirage-block-xen >= "1.6.0"
  1121. mirage-bootvar
  1122. mirage-bootvar-solo5 >= "0.6.0"
  1123. mirage-bootvar-unix
  1124. mirage-bootvar-xen >= "0.6.0"
  1125. mirage-channel >= "3.2.0"
  1126. mirage-channel-lwt >= "3.2.0"
  1127. mirage-clock >= "2.0.0"
  1128. mirage-clock-freestanding >= "2.0.0"
  1129. mirage-clock-lwt >= "2.0.0"
  1130. mirage-clock-solo5
  1131. mirage-clock-unix >= "2.0.0"
  1132. mirage-conduit = "1.3.0" | >= "3.1.0"
  1133. mirage-console >= "2.4.0"
  1134. mirage-console-lwt >= "2.4.0"
  1135. mirage-console-solo5 >= "0.6.0"
  1136. mirage-console-unix >= "2.4.1"
  1137. mirage-console-xen >= "2.4.0"
  1138. mirage-console-xen-backend >= "2.4.0"
  1139. mirage-console-xen-proto >= "2.4.0"
  1140. mirage-crypto
  1141. mirage-crypto-ec
  1142. mirage-crypto-entropy
  1143. mirage-crypto-pk
  1144. mirage-crypto-rng
  1145. mirage-crypto-rng-async
  1146. mirage-crypto-rng-eio >= "0.11.0"
  1147. mirage-crypto-rng-lwt
  1148. mirage-crypto-rng-miou-unix
  1149. mirage-crypto-rng-mirage
  1150. mirage-device >= "1.2.0"
  1151. mirage-dns >= "3.1.0"
  1152. mirage-entropy >= "0.5.1"
  1153. mirage-flow >= "1.6.0"
  1154. mirage-flow-combinators
  1155. mirage-flow-lwt >= "1.6.0"
  1156. mirage-flow-rawlink >= "1.1.0"
  1157. mirage-flow-unix >= "1.6.0"
  1158. mirage-fs >= "1.2.0"
  1159. mirage-fs-lwt >= "1.2.0"
  1160. mirage-fs-mem
  1161. mirage-fs-unix >= "1.6.0"
  1162. mirage-kv >= "2.0.0"
  1163. mirage-kv-lwt >= "2.0.0"
  1164. mirage-kv-mem
  1165. mirage-kv-unix < "3.0.0"
  1166. mirage-logs >= "1.0.0" & < "2.0.0"
  1167. mirage-monitoring
  1168. mirage-nat >= "1.1.0"
  1169. mirage-net >= "2.0.0"
  1170. mirage-net-lwt >= "2.0.0"
  1171. mirage-net-macosx >= "1.5.0"
  1172. mirage-net-solo5 >= "0.4.3"
  1173. mirage-net-unix >= "2.5.0"
  1174. mirage-net-xen >= "1.9.0"
  1175. mirage-profile >= "0.9.0"
  1176. mirage-profile-unix >= "0.9.0"
  1177. mirage-profile-xen >= "0.9.0"
  1178. mirage-protocols >= "2.0.0"
  1179. mirage-protocols-lwt >= "2.0.0"
  1180. mirage-qubes >= "0.7.0"
  1181. mirage-qubes-ipv4 >= "0.7.0"
  1182. mirage-random >= "1.2.0"
  1183. mirage-random-stdlib
  1184. mirage-random-test
  1185. mirage-runtime >= "3.3.0" & < "4.0.0"
  1186. mirage-solo5 >= "0.6.2"
  1187. mirage-stack >= "1.4.0"
  1188. mirage-stack-lwt >= "1.4.0"
  1189. mirage-time >= "1.3.0"
  1190. mirage-time-lwt >= "1.3.0"
  1191. mirage-time-unix >= "1.3.0"
  1192. mirage-types >= "3.3.0"
  1193. mirage-types-lwt >= "3.3.0"
  1194. mirage-unix >= "3.2.0"
  1195. mirage-vnetif >= "0.4.2"
  1196. mirage-vnetif-stack
  1197. mirage-xen >= "3.2.0"
  1198. mkaudio >= "1.1.0"
  1199. mkocaml
  1200. mlbdd >= "0.7.2"
  1201. mlfenv
  1202. mlmpfr >= "4.0.2+dune" & < "4.1.0+bugfix1"
  1203. mlpost >= "0.9"
  1204. mlpost-lablgtk
  1205. mlt_parser >= "v0.12.0" & < "v0.17.0"
  1206. mm >= "0.7.0" & < "0.8.2"
  1207. mmap
  1208. mmdb
  1209. mock >= "0.1.1"
  1210. mock-ounit >= "0.1.1"
  1211. module-graph
  1212. molenc
  1213. monaco_jsoo
  1214. monolith
  1215. monomorphic >= "2.0"
  1216. monorobot
  1217. morbig >= "0.10.3"
  1218. morsmall
  1219. moss >= "0.1.1"
  1220. mparser >= "1.3"
  1221. mparser-pcre
  1222. mparser-re
  1223. mperf
  1224. mpg123
  1225. mpp >= "0.3.4"
  1226. mpris >= "0.2.0"
  1227. mpris-clients
  1228. mrmime
  1229. mrt-format >= "0.3.1"
  1230. msat >= "0.8"
  1231. msat-bin
  1232. msgpck >= "1.5"
  1233. msgpck-repr
  1234. mssql
  1235. mugen
  1236. mula
  1237. multipart-form-data >= "0.3.0"
  1238. multipart_form
  1239. multipart_form-cohttp-lwt
  1240. multipart_form-eio
  1241. multipart_form-lwt
  1242. murmur3 >= "0.3"
  1243. mustache >= "3.1.0"
  1244. mustache-cli
  1245. mutf8
  1246. mwt
  1247. mybuild >= "7"
  1248. mysql8
  1249. mysql_protocol >= "3.0.1"
  1250. n_ary < "v0.17.0"
  1251. naboris
  1252. nacc
  1253. nanoid
  1254. nanosvg
  1255. nanosvg_text
  1256. nbd >= "4.0.3"
  1257. nbd-tool
  1258. nbd-unix
  1259. netchannel >= "1.9.0"
  1260. netkat
  1261. netlink >= "0.3.4"
  1262. netsnmp < "v0.17.0"
  1263. nice_parser
  1264. ninja_utils
  1265. nmea
  1266. noCanren >= "0.3.0~alpha1"
  1267. nocoiner
  1268. node_of_ocaml
  1269. noise
  1270. non_empty_list
  1271. nottui
  1272. nottui-lwt
  1273. nottui-pretty
  1274. notty >= "0.2.3"
  1275. notty_async >= "v0.12.0" & < "v0.17.0"
  1276. np
  1277. npy >= "0.0.9"
  1278. nsq >= "0.4.0"
  1279. numeric_string < "v0.17.0"
  1280. nuscr
  1281. OCanren < "0.3.0"
  1282. OCanren-ppx < "0.3.0"
  1283. obeam
  1284. obelisk >= "0.5.0"
  1285. obuilder < "0.5"
  1286. obuilder-spec < "0.5"
  1287. obus >= "1.2.0"
  1288. ocal >= "0.2.2"
  1289. ocaml-canvas
  1290. ocaml-compiler-libs >= "v0.12.0"
  1291. ocaml-embed-file < "v0.17.0"
  1292. ocaml-lsp-server < "1.8.0"
  1293. ocaml-lua >= "1.8"
  1294. ocaml-migrate-parsetree >= "1.2.0"
  1295. ocaml-migrate-parsetree-ocamlbuild >= "1.2.0"
  1296. ocaml-monadic >= "0.4.1"
  1297. ocaml-print-intf
  1298. ocaml-probes < "v0.17.0"
  1299. ocaml-protoc >= "2.0.1"
  1300. ocaml-protoc-plugin < "4.3.1"
  1301. ocaml-r >= "0.1.1"
  1302. ocaml-syntax-shims
  1303. ocaml-systemd >= "1.3"
  1304. ocaml-top >= "1.2.0"
  1305. ocaml-vdom < "transition"
  1306. ocaml-version >= "1.0.0" & < "3.6.0"
  1307. ocaml_db_model
  1308. ocaml_intrinsics < "v0.17.0"
  1309. ocaml_pgsql_model
  1310. ocaml_plugin >= "v0.12.0"
  1311. ocamlapi
  1312. ocamlapi_async
  1313. ocamlapi_lwt_unix
  1314. ocamlapi_ppx
  1315. ocamlcodoc
  1316. ocamlformat >= "0.7"
  1317. ocamlformat-lib
  1318. ocamlformat-rpc < "removed"
  1319. ocamlformat-rpc-lib
  1320. ocamlfuse >= "2.7.1-cvs6" & < "2.7.1-cvs8"
  1321. ocamlgraph >= "2.0.0"
  1322. ocamlgraph_gtk
  1323. ocamline
  1324. ocamlog
  1325. ocb
  1326. ocluster < "0.2"
  1327. ocluster-api < "0.2"
  1328. ocolor
  1329. ocp-browser >= "1.1.9"
  1330. ocp-indent >= "1.7.0"
  1331. ocp-indent-nlfork >= "1.5.4"
  1332. ocp-index >= "1.1.9"
  1333. ocp-search
  1334. ocp_reveal
  1335. ocplib-endian >= "1.1"
  1336. ocplib-json-typed >= "0.7"
  1337. ocplib-json-typed-browser
  1338. ocplib-json-typed-bson
  1339. ocplib-simplex >= "0.5"
  1340. ocplib_stuff != "0.3.0"
  1341. ocsigen-i18n >= "4.0.0"
  1342. ocsigen-ppx-rpc
  1343. ocsigenserver >= "4.0.1"
  1344. octavius >= "1.2.2"
  1345. odash
  1346. odate >= "0.6"
  1347. odep < "0.2.0"
  1348. odepack >= "0.6.9"
  1349. odnnr
  1350. odoc >= "1.4.0" & < "2.0.0"
  1351. odoc-parser < "2.3.0"
  1352. of_json < "v0.17.0"
  1353. offheap
  1354. ogg = "0.6.0" | >= "0.7.0"
  1355. ohex
  1356. oidc
  1357. ojs
  1358. olinq >= "0.3"
  1359. omd >= "1.3.2"
  1360. omg
  1361. omigrate < "0.3.1"
  1362. omlr
  1363. oniguruma
  1364. opam-0install
  1365. opam-0install-cudf
  1366. opam-bin >= "1.0.0"
  1367. opam-build
  1368. opam-client >= "2.0.2"
  1369. opam-compiler
  1370. opam-core >= "2.0.2"
  1371. opam-custom-install
  1372. opam-devel >= "2.0.2"
  1373. opam-dune-lint < "0.3"
  1374. opam-ed >= "0.4"
  1375. opam-file-format >= "2.1.0" & < "2.1.5"
  1376. opam-format >= "2.0.2"
  1377. opam-graph
  1378. opam-grep >= "0.2.0"
  1379. opam-installer >= "2.0.2"
  1380. opam-monorepo < "0.2.3"
  1381. opam-package-upgrade >= "0.2"
  1382. opam-publish >= "2.0.2"
  1383. opam-repository >= "2.0.2"
  1384. opam-solver >= "2.0.2"
  1385. opam-spin
  1386. opam-state >= "2.0.2"
  1387. opam-test
  1388. opam2web >= "2.0"
  1389. opam_bin_lib != "0.9.5"
  1390. opasswd >= "1.3.1"
  1391. opazl
  1392. openai-gym
  1393. openapi
  1394. openapi_router
  1395. opencc0
  1396. opencc1
  1397. opencc1_1
  1398. openQASM
  1399. opentelemetry < "0.7"
  1400. opentelemetry-client-cohttp-lwt < "0.7"
  1401. opentelemetry-client-ocurl < "0.7"
  1402. opentelemetry-cohttp-lwt < "0.7"
  1403. opentelemetry-lwt < "0.7"
  1404. opium >= "0.17.0"
  1405. opium-graphql
  1406. opium-testing
  1407. opium_kernel >= "0.17.0"
  1408. oplot
  1409. oplsr
  1410. opomodoro
  1411. opsian
  1412. optal
  1413. opti
  1414. optimization1d >= "0.6.1"
  1415. optiml-transport
  1416. optint >= "0.0.2"
  1417. opus >= "0.2.0"
  1418. oraft < "0.3.0"
  1419. oranger >= "2.0.1"
  1420. order-i3-xfce
  1421. ordinal_abbreviation < "v0.17.0"
  1422. ordma >= "0.0.5"
  1423. orec >= "1.0.1"
  1424. orewa
  1425. orf
  1426. orgeat
  1427. orpie
  1428. orrandomForest
  1429. orsvm_e1071 >= "4.0.0"
  1430. orun
  1431. orxgboost >= "1.1.0"
  1432. oseq >= "0.2"
  1433. osh
  1434. oskel
  1435. osnap
  1436. osx-secure-transport >= "0.1.1"
  1437. otf
  1438. otoml
  1439. otr >= "0.3.6"
  1440. ounit = "2.1.2"
  1441. ounit-lwt < "2.2.0"
  1442. ounit2 < "2.2.7"
  1443. ounit2-lwt < "2.2.7"
  1444. override < "0.4.0"
  1445. owee >= "0.3"
  1446. owl >= "0.4.0"
  1447. owl-base >= "0.4.0"
  1448. owl-jupyter
  1449. owl-ode
  1450. owl-ode-base
  1451. owl-ode-odepack
  1452. owl-ode-sundials
  1453. owl-opt
  1454. owl-opt-lbfgs
  1455. owl-plplot
  1456. owl-symbolic
  1457. owl-top >= "0.4.0"
  1458. owl-zoo >= "0.4.0"
  1459. owork
  1460. ozulip
  1461. p4pp
  1462. p5scm
  1463. packstream
  1464. pacomb
  1465. paf
  1466. paf-cohttp
  1467. paf-le
  1468. pam < "v0.17.0"
  1469. pandoc
  1470. pandoc-abbreviations
  1471. pandoc-comment
  1472. pandoc-crossref
  1473. pandoc-include
  1474. pandoc-inspect
  1475. pandoc-pdf2png
  1476. pandoc-replace
  1477. papi >= "0.1.1"
  1478. parany >= "7.0.2"
  1479. pardi
  1480. parmap >= "1.1.1"
  1481. parse-argv >= "0.2.0"
  1482. parsexp >= "v0.12.0" & < "v0.17.0"
  1483. parsexp_io >= "v0.12.0" & < "v0.17.0"
  1484. parsley
  1485. patch < "2.0.0"
  1486. patdiff >= "v0.12.1" & < "v0.17.0"
  1487. path_glob
  1488. patience_diff >= "v0.12.0" & < "v0.17.0"
  1489. patoline >= "0.2"
  1490. patricia-tree < "0.10.0"
  1491. pattern
  1492. pb
  1493. pb-plugin
  1494. pbkdf >= "1.0.0"
  1495. pbrt
  1496. pbrt_services
  1497. pbrt_yojson
  1498. pcap-format >= "0.5.2"
  1499. pcre >= "7.3.5"
  1500. pcre2
  1501. pds-reachability >= "0.2.2"
  1502. pecu >= "0.2"
  1503. petr4
  1504. pf-qubes
  1505. pg_query
  1506. pgocaml >= "4.0"
  1507. pgocaml_ppx
  1508. pgx >= "1.0" & < "2.2"
  1509. pgx_async >= "1.0" & < "2.2"
  1510. pgx_lwt >= "1.0" & < "2.2"
  1511. pgx_lwt_mirage < "2.2"
  1512. pgx_lwt_unix < "2.2"
  1513. pgx_unix >= "1.0" & < "2.2"
  1514. pgx_value_core < "2.2"
  1515. pgx_value_ptime < "2.2"
  1516. phantom-algebra >= "1.0.1"
  1517. phonetic
  1518. phylogenetics < "0.2.0"
  1519. piaf
  1520. picasso
  1521. piqi >= "0.7.8"
  1522. piqilib >= "0.6.16"
  1523. pixel_pusher
  1524. pkcs11 >= "0.18.0"
  1525. pkcs11-cli
  1526. pkcs11-driver
  1527. pkcs11-rev
  1528. pla >= "1.3"
  1529. plato
  1530. plebeia < "2.0.0"
  1531. plist-xml
  1532. plist-xml-lwt
  1533. plotkicadsch >= "0.4.0"
  1534. plplot >= "5.11.0-1"
  1535. polka
  1536. polling_state_rpc < "v0.17.0"
  1537. polly
  1538. polynomial
  1539. pomap >= "4.1.0"
  1540. popper
  1541. portaudio >= "0.2.2"
  1542. portaudio_c_bindings
  1543. portmidi
  1544. posix-base < "2.0.2"
  1545. posix-bindings < "2.0.2"
  1546. posix-getopt >= "2.0.0" & < "2.0.2"
  1547. posix-signal < "2.0.2"
  1548. posix-socket < "2.0.2"
  1549. posix-socket-unix < "2.0.2"
  1550. posix-time2 < "2.0.2"
  1551. posix-types >= "2.0.0" & < "2.0.2"
  1552. posix-uname < "2.0.2"
  1553. posixat >= "v0.12.0" & < "v0.17.0"
  1554. postgres_async < "v0.17.0"
  1555. postgresql >= "4.4.1"
  1556. pp
  1557. pp_loc
  1558. pprint >= "20200226"
  1559. ppx-owl-opt
  1560. ppx_accessor < "v0.17.0"
  1561. ppx_assert >= "v0.12.0" & < "v0.17.0"
  1562. ppx_bap
  1563. ppx_base >= "v0.12.0" & < "v0.17.0"
  1564. ppx_bench >= "v0.12.0" & < "v0.17.0"
  1565. ppx_bigarray >= "3.0.0"
  1566. ppx_bin_prot >= "v0.12.0" & < "v0.17.0"
  1567. ppx_bitstring >= "4.0.0"
  1568. ppx_blob >= "0.6.0"
  1569. ppx_bsx
  1570. ppx_catch
  1571. ppx_cold < "v0.17.0"
  1572. ppx_compare >= "v0.12.0" & < "v0.17.0"
  1573. ppx_compose >= "0.1.0"
  1574. ppx_const >= "2.0"
  1575. ppx_conv_func >= "v0.12.0" & < "v0.17.0"
  1576. ppx_counters
  1577. ppx_css < "v0.17.0"
  1578. ppx_cstruct >= "3.3.0"
  1579. ppx_cstubs
  1580. ppx_csv_conv >= "v0.12.0" & < "v0.17.0"
  1581. ppx_custom_printf >= "v0.12.0" & < "v0.17.0"
  1582. ppx_decimal
  1583. ppx_defer >= "0.4.0"
  1584. ppx_demo < "v0.17.0"
  1585. ppx_derive_at_runtime < "v0.17.0"
  1586. ppx_derivers >= "1.2.1"
  1587. ppx_deriving >= "4.3"
  1588. ppx_deriving_cmdliner >= "0.5.1"
  1589. ppx_deriving_encoding
  1590. ppx_deriving_hardcaml >= "v0.12.0"
  1591. ppx_deriving_hash
  1592. ppx_deriving_jsoo
  1593. ppx_deriving_madcast >= "0.2"
  1594. ppx_deriving_popper
  1595. ppx_deriving_protobuf >= "2.7"
  1596. ppx_deriving_qcheck
  1597. ppx_deriving_rpc >= "6.1.0"
  1598. ppx_deriving_scad
  1599. ppx_deriving_yaml < "0.2.2"
  1600. ppx_deriving_yojson >= "3.3"
  1601. ppx_disable_unused_warnings < "v0.17.0"
  1602. ppx_distr_guards >= "0.2"
  1603. ppx_enum
  1604. ppx_enumerate >= "v0.12.0" & < "v0.17.0"
  1605. ppx_expect >= "v0.12.0" & < "v0.17.0"
  1606. ppx_factory
  1607. ppx_fail >= "v0.12.0"
  1608. ppx_fast_pipe
  1609. ppx_fields_conv >= "v0.12.0" & < "v0.17.0"
  1610. ppx_fixed_literal < "v0.17.0"
  1611. ppx_gen_rec >= "1.1.0"
  1612. ppx_getenv >= "2.0"
  1613. ppx_globalize < "v0.17.0"
  1614. ppx_hash >= "v0.12.0" & < "v0.17.0"
  1615. ppx_here >= "v0.12.0" & < "v0.17.0"
  1616. ppx_ignore_instrumentation < "v0.17.0"
  1617. ppx_import >= "1.5-3-gbd627d5"
  1618. ppx_inline_alcotest
  1619. ppx_inline_test >= "v0.12.0" & < "v0.16.1"
  1620. ppx_irmin < "3.0.0"
  1621. ppx_jane >= "v0.12.0" & < "v0.17.0"
  1622. ppx_js_style >= "v0.12.0" & < "v0.17.0"
  1623. ppx_jsobject_conv >= "0.6.0"
  1624. ppx_jsonaf_conv < "v0.17.0"
  1625. ppx_let >= "v0.12.0" & < "v0.17.0"
  1626. ppx_log < "v0.17.0"
  1627. ppx_make
  1628. ppx_map
  1629. ppx_meta_conv >= "4.0.1"
  1630. ppx_module_timer < "v0.17.0"
  1631. ppx_monad
  1632. ppx_monoid >= "0.3.2"
  1633. ppx_mysql
  1634. ppx_mysql_identity
  1635. ppx_open
  1636. ppx_optcomp >= "v0.12.0" & < "v0.17.0"
  1637. ppx_optional >= "v0.12.0" & < "v0.17.0"
  1638. ppx_pattern_bind < "v0.17.0"
  1639. ppx_pbt
  1640. ppx_pipebang >= "v0.12.0" & < "v0.17.0"
  1641. ppx_protocol_conv >= "3.1.0"
  1642. ppx_protocol_conv_json >= "3.1.0"
  1643. ppx_protocol_conv_jsonm
  1644. ppx_protocol_conv_msgpack >= "3.1.0"
  1645. ppx_protocol_conv_xml_light >= "3.1.0"
  1646. ppx_protocol_conv_xmlm
  1647. ppx_protocol_conv_yaml >= "3.1.0"
  1648. ppx_pyformat
  1649. ppx_python < "v0.17.0"
  1650. ppx_rapper
  1651. ppx_rapper_async
  1652. ppx_rapper_lwt
  1653. ppx_regexp >= "0.4.0"
  1654. ppx_relit
  1655. ppx_repr
  1656. ppx_sexp_conv >= "v0.12.0" & < "v0.17.0"
  1657. ppx_sexp_message >= "v0.12.0" & < "v0.17.0"
  1658. ppx_sexp_value >= "v0.12.0" & < "v0.17.0"
  1659. ppx_show
  1660. ppx_stable < "v0.17.0"
  1661. ppx_stable_witness < "v0.17.0"
  1662. ppx_string < "v0.17.0"
  1663. ppx_string_interpolation
  1664. ppx_subliner
  1665. ppx_test >= "1.7.0"
  1666. ppx_there
  1667. ppx_tools >= "6.0+4.08.0"
  1668. ppx_tools_versioned >= "5.2.2"
  1669. ppx_tydi < "v0.17.0"
  1670. ppx_type_directed_value
  1671. ppx_typed_fields < "v0.17.0"
  1672. ppx_typerep_conv >= "v0.12.0" & < "v0.17.0"
  1673. ppx_tyre
  1674. ppx_units
  1675. ppx_variants_conv >= "v0.12.0" & < "v0.17.0"
  1676. ppx_viewpattern
  1677. ppx_wideopen
  1678. ppx_xml_conv >= "v0.12.0" & < "v0.17.0"
  1679. ppx_yojson
  1680. ppx_yojson_conv < "v0.17.0"
  1681. ppx_yojson_conv_lib < "v0.17.0"
  1682. ppxfind >= "1.3"
  1683. ppxlib >= "0.4.0"
  1684. ppxx >= "2.4.0"
  1685. pratter
  1686. prbnmcn-basic-structures
  1687. prbnmcn-cgrph
  1688. prbnmcn-clustering
  1689. prbnmcn-dagger
  1690. prbnmcn-dagger-gsl
  1691. prbnmcn-dagger-stats
  1692. prbnmcn-dagger-test
  1693. prbnmcn-gnuplot
  1694. prbnmcn-linalg
  1695. prbnmcn-mcts
  1696. prbnmcn-proptest
  1697. prbnmcn-stats
  1698. prbnmcn-ucb1
  1699. prc
  1700. preface
  1701. prettym
  1702. printbox >= "0.2" & < "0.8"
  1703. printbox-html < "0.8"
  1704. printbox-text < "0.8"
  1705. prof_spacetime >= "0.3.0"
  1706. profunctor < "v0.17.0"
  1707. progress
  1708. prom
  1709. prometheus >= "0.6"
  1710. prometheus-app >= "0.6"
  1711. promise
  1712. promise_jsoo
  1713. promise_jsoo_lwt
  1714. protocell
  1715. protocol-9p >= "1.0.0"
  1716. protocol-9p-tool >= "1.0.0"
  1717. protocol-9p-unix >= "1.0.0"
  1718. protocol_version_header >= "v0.12.0" & < "v0.17.0"
  1719. prr
  1720. psmt2-frontend = "0.3.0" | >= "0.4.0"
  1721. psq >= "0.1.1"
  1722. ptmap >= "2.0.5"
  1723. ptset >= "1.0.1"
  1724. pulseaudio >= "0.1.4"
  1725. pure-html
  1726. pure-splitmix >= "0.3"
  1727. py >= "1.1"
  1728. pyast
  1729. pyml >= "20210924"
  1730. pyml_bindgen < "0.3.0"
  1731. pyre-ast
  1732. pythonlib
  1733. qbf >= "0.3"
  1734. qcheck >= "0.9"
  1735. qcheck-alcotest
  1736. qcheck-core
  1737. qcheck-ounit
  1738. qinap
  1739. qiskit < "0.44.0"
  1740. qmp >= "0.19.0"
  1741. qrencode >= "0.2"
  1742. qtest >= "2.10.1"
  1743. queenshead
  1744. quests
  1745. radamsa
  1746. radare2 >= "0.0.3"
  1747. randomconv >= "0.1.1"
  1748. randoml
  1749. range
  1750. rangeSet
  1751. rankers
  1752. rawlink >= "1.0" & < "2.1"
  1753. raygui
  1754. raylib
  1755. rdbg >= "1.196.12"
  1756. re >= "1.9.0"
  1757. re2 >= "v0.12.1" & < "v0.17.0"
  1758. re2_stable
  1759. re_parser < "v0.17.0"
  1760. reactiveData >= "0.3.0"
  1761. reanalyze
  1762. reason >= "3.5.0" & < "3.9.0"
  1763. reason-standard
  1764. received
  1765. record_builder >= "v0.12.0" & < "v0.17.0"
  1766. records >= "1.0.0"
  1767. reddit_api_async
  1768. reddit_api_kernel
  1769. redirect
  1770. redis >= "0.4"
  1771. redis-async < "v0.17.0"
  1772. redis-lwt >= "0.4"
  1773. redis-sync >= "0.4"
  1774. reed-solomon-erasure >= "1.0.2"
  1775. reedsolomon >= "0.3"
  1776. refl
  1777. regenerate >= "0.2"
  1778. regex_parser_intf < "v0.17.0"
  1779. relit_helper
  1780. remu_ts
  1781. reparse < "3.1.0"
  1782. reparse-lwt < "3.1.0"
  1783. reparse-lwt-unix < "3.1.0"
  1784. reparse-unix
  1785. repr
  1786. repr-bench
  1787. repr-fuzz
  1788. res >= "5.0.1"
  1789. res_tailwindcss
  1790. resource-pooling >= "1.1"
  1791. resource_cache >= "v0.12.0" & < "v0.17.0"
  1792. resp
  1793. resp-client
  1794. resp-mirage
  1795. resp-server >= "0.9"
  1796. resp-unix
  1797. resto
  1798. resto-acl
  1799. resto-cohttp
  1800. resto-cohttp-client
  1801. resto-cohttp-self-serving-client
  1802. resto-cohttp-server
  1803. resto-directory
  1804. resto-json
  1805. result >= "1.4"
  1806. rfc1951 >= "0.8.1" & != "1.0.0"
  1807. rfc6287 >= "1.0.4"
  1808. rfc7748
  1809. rfsm >= "1.6-alpha-3" & < "2.0"
  1810. rhythm
  1811. ringo
  1812. ringo-lwt
  1813. rock
  1814. roman
  1815. root1d >= "0.5.1"
  1816. rope >= "0.6.2"
  1817. rosetta >= "0.2.0"
  1818. routes < "2.0.0"
  1819. rpc >= "6.1.0"
  1820. rpc_parallel >= "v0.12.0" & < "v0.17.0"
  1821. rpclib >= "6.1.0"
  1822. rpclib-async >= "6.1.0"
  1823. rpclib-html
  1824. rpclib-js
  1825. rpclib-lwt >= "6.1.0"
  1826. rsdd
  1827. rss
  1828. rtop >= "3.5.0" & < "3.9.0"
  1829. rungen
  1830. rusage
  1831. SZXX
  1832. safepass >= "3.1"
  1833. salsa20 >= "1.0.0"
  1834. salsa20-core >= "1.0.0"
  1835. samplerate >= "0.1.5"
  1836. sanddb = "0.2"
  1837. satex
  1838. satyrographos
  1839. scaml < "1.5.0"
  1840. scfg
  1841. scgi
  1842. scipy
  1843. scrypt-kdf >= "1.0.0"
  1844. sd_logic
  1845. searchTree
  1846. secp256k1 >= "0.4.1"
  1847. secp256k1-internal
  1848. sedlex >= "2.0" & < "3.2"
  1849. sek
  1850. selective
  1851. semantic_version < "v0.17.0"
  1852. semaphore-compat
  1853. semver >= "0.2.1"
  1854. semver2
  1855. sendmail
  1856. sendmail-lwt
  1857. sentry
  1858. seq >= "0.2" & < "base"
  1859. sequencer_table >= "v0.12.0" & < "v0.17.0"
  1860. serial
  1861. session >= "0.4.1"
  1862. session-cohttp >= "0.4.1"
  1863. session-cohttp-async >= "0.4.1"
  1864. session-cohttp-lwt >= "0.4.1"
  1865. session-cookie
  1866. session-cookie-async
  1867. session-cookie-lwt
  1868. session-postgresql >= "0.4.1"
  1869. session-postgresql-async >= "0.4.1"
  1870. session-postgresql-lwt >= "0.4.1"
  1871. session-redis-lwt >= "0.4.1"
  1872. session-webmachine >= "0.4.1"
  1873. setcore >= "1.0.2"
  1874. sexp < "v0.17.0"
  1875. sexp_diff < "v0.17.0"
  1876. sexp_diff_kernel
  1877. sexp_grammar < "v0.17.0"
  1878. sexp_macro < "v0.17.0"
  1879. sexp_pretty >= "v0.12.0" & < "v0.17.0"
  1880. sexp_select < "v0.17.0"
  1881. sexp_string_quickcheck < "v0.17.0"
  1882. sexplib >= "v0.12.0" & < "v0.17.0"
  1883. sexplib0 >= "v0.12.0" & < "v0.17.0"
  1884. sgf >= "1.0.1"
  1885. sha >= "1.13" & < "1.15.1"
  1886. shapefile
  1887. shared-block-ring >= "3.0.0"
  1888. shared-memory-ring >= "3.1.0"
  1889. shared-memory-ring-lwt >= "3.1.0"
  1890. shared-secret >= "0.4"
  1891. shell < "v0.17.0"
  1892. shexp >= "v0.12.0" & < "v0.17.0"
  1893. shine >= "0.2.2"
  1894. shuttle
  1895. shuttle_http < "0.11.0"
  1896. shuttle_ssl
  1897. sihl
  1898. sihl-cache
  1899. sihl-contract
  1900. sihl-core
  1901. sihl-email
  1902. sihl-facade
  1903. sihl-persistence
  1904. sihl-queue
  1905. sihl-session
  1906. sihl-storage
  1907. sihl-token
  1908. sihl-type
  1909. sihl-user
  1910. sihl-web
  1911. simple63
  1912. sklearn
  1913. slacko >= "0.14.1"
  1914. slug
  1915. smart-print >= "0.3.0"
  1916. smbc >= "0.5"
  1917. smol
  1918. smol-helpers
  1919. smtlib-utils
  1920. snappy >= "0.1.2"
  1921. so
  1922. solidity-alcotest
  1923. solidity-common
  1924. solidity-parser
  1925. solidity-test
  1926. solidity-typechecker
  1927. sortedseq_intersect
  1928. soundtouch >= "0.1.9"
  1929. soupault
  1930. spacetime_lib >= "0.3.0"
  1931. spawn < "v0.9.0" | >= "v0.13.0"
  1932. spdx_licenses
  1933. spectrum
  1934. speex >= "0.4.0"
  1935. spelll >= "0.3"
  1936. spin
  1937. splay_tree >= "v0.12.0" & < "v0.17.0"
  1938. splittable_random >= "v0.12.0" & < "v0.17.0"
  1939. spotify-web-api >= "0.2.1"
  1940. spotlib >= "4.1.0"
  1941. sqlgg >= "20200521"
  1942. sqlite3 >= "4.4.1"
  1943. sqlite3_utils
  1944. srt
  1945. ssh-agent >= "0.2.0"
  1946. ssh-agent-unix
  1947. ssl >= "0.5.6"
  1948. stdcompat >= "19"
  1949. stdint >= "0.6.0" & < "0.7.2"
  1950. stdint-literals
  1951. stdio >= "v0.12.0" & < "v0.17.0"
  1952. stdlib-diff
  1953. stdlib-random
  1954. stdlib-shims
  1955. stitch
  1956. stored_reversed < "v0.17.0"
  1957. streamable < "v0.17.0"
  1958. streaming
  1959. string_dict >= "v0.12.0" & < "v0.17.0"
  1960. stringext >= "1.6.0"
  1961. sturgeon >= "0.4.2"
  1962. subscriptions-transport-ws
  1963. subtype-refinement >= "0.2"
  1964. swagger >= "0.2.0"
  1965. swhid
  1966. swhid_compute
  1967. swhid_core
  1968. swhid_types
  1969. syndic >= "1.6.0"
  1970. sys-socket
  1971. sys-socket-unix
  1972. syslog >= "2.0.0"
  1973. syslog-message >= "1.0.0"
  1974. syslog-rfc5424
  1975. systemverilog >= "0.0.2"
  1976. tablecloth-base
  1977. tablecloth-native < "transition"
  1978. taglib >= "0.3.7"
  1979. talaria-bibtex
  1980. tar >= "1.0.0" & < "2.0.0"
  1981. tar-mirage >= "1.0.0" & < "2.0.0"
  1982. tar-unix >= "1.0.0" & < "2.0.0"
  1983. tcalc
  1984. tcpip >= "3.7.0"
  1985. tdigest
  1986. teash
  1987. telltime
  1988. tensorboard
  1989. terminal < "0.4.0"
  1990. terminal_size >= "0.1.4"
  1991. testu01
  1992. textmate-language
  1993. textrazor
  1994. textutils >= "v0.12.0" & < "v0.17.0"
  1995. textutils_kernel >= "v0.12.0" & < "v0.17.0"
  1996. textwrap >= "0.2.1"
  1997. tezos-008-PtEdo2Zk-test-helpers
  1998. tezos-009-PsFLoren-test-helpers
  1999. tezos-010-PtGRANAD-test-helpers
  2000. tezos-accuser-006-PsCARTHA
  2001. tezos-accuser-007-PsDELPH1
  2002. tezos-accuser-008-PtEdo2Zk
  2003. tezos-accuser-008-PtEdoTez
  2004. tezos-accuser-009-PsFLoren
  2005. tezos-accuser-010-PtGRANAD
  2006. tezos-accuser-011-PtHangz2 < "11.1"
  2007. tezos-accuser-alpha < "11.1"
  2008. tezos-alpha-test-helpers < "12.0"
  2009. tezos-baker-006-PsCARTHA
  2010. tezos-baker-007-PsDELPH1
  2011. tezos-baker-008-PtEdo2Zk
  2012. tezos-baker-008-PtEdoTez
  2013. tezos-baker-009-PsFLoren
  2014. tezos-baker-010-PtGRANAD
  2015. tezos-baker-011-PtHangz2 < "11.1"
  2016. tezos-baker-alpha < "11.1"
  2017. tezos-baking-006-PsCARTHA
  2018. tezos-baking-006-PsCARTHA-commands
  2019. tezos-baking-007-PsDELPH1
  2020. tezos-baking-007-PsDELPH1-commands
  2021. tezos-baking-008-PtEdo2Zk
  2022. tezos-baking-008-PtEdo2Zk-commands
  2023. tezos-baking-008-PtEdoTez
  2024. tezos-baking-008-PtEdoTez-commands
  2025. tezos-baking-009-PsFLoren
  2026. tezos-baking-009-PsFLoren-commands
  2027. tezos-baking-010-PtGRANAD
  2028. tezos-baking-010-PtGRANAD-commands
  2029. tezos-baking-011-PtHangz2 < "11.1"
  2030. tezos-baking-011-PtHangz2-commands < "11.1"
  2031. tezos-baking-alpha < "11.1"
  2032. tezos-baking-alpha-commands < "11.1"
  2033. tezos-base < "11.1"
  2034. tezos-base-test-helpers < "11.1"
  2035. tezos-base58
  2036. tezos-bls12-381-polynomial
  2037. tezos-clic < "11.1"
  2038. tezos-client < "11.1"
  2039. tezos-client-000-Ps9mPmXa < "11.1"
  2040. tezos-client-001-PtCJ7pwo < "11.1"
  2041. tezos-client-001-PtCJ7pwo-commands < "11.1"
  2042. tezos-client-002-PsYLVpVv < "11.1"
  2043. tezos-client-002-PsYLVpVv-commands < "11.1"
  2044. tezos-client-003-PsddFKi3 < "11.1"
  2045. tezos-client-003-PsddFKi3-commands < "11.1"
  2046. tezos-client-004-Pt24m4xi < "11.1"
  2047. tezos-client-004-Pt24m4xi-commands < "11.1"
  2048. tezos-client-005-PsBabyM1 < "11.1"
  2049. tezos-client-005-PsBabyM1-commands < "11.1"
  2050. tezos-client-006-PsCARTHA < "11.1"
  2051. tezos-client-006-PsCARTHA-commands < "11.1"
  2052. tezos-client-007-PsDELPH1 < "11.1"
  2053. tezos-client-007-PsDELPH1-commands < "11.1"
  2054. tezos-client-007-PsDELPH1-commands-registration < "11.1"
  2055. tezos-client-008-PtEdo2Zk < "11.1"
  2056. tezos-client-008-PtEdo2Zk-commands < "11.1"
  2057. tezos-client-008-PtEdo2Zk-commands-registration < "11.1"
  2058. tezos-client-008-PtEdoTez
  2059. tezos-client-008-PtEdoTez-commands
  2060. tezos-client-008-PtEdoTez-commands-registration
  2061. tezos-client-009-PsFLoren < "11.1"
  2062. tezos-client-009-PsFLoren-commands < "11.1"
  2063. tezos-client-009-PsFLoren-commands-registration < "11.1"
  2064. tezos-client-010-PtGRANAD < "11.1"
  2065. tezos-client-010-PtGRANAD-commands < "11.1"
  2066. tezos-client-010-PtGRANAD-commands-registration < "11.1"
  2067. tezos-client-011-PtHangz2 < "11.1"
  2068. tezos-client-011-PtHangz2-commands < "11.1"
  2069. tezos-client-011-PtHangz2-commands-registration < "11.1"
  2070. tezos-client-alpha < "11.1"
  2071. tezos-client-alpha-commands < "11.1"
  2072. tezos-client-alpha-commands-registration < "11.1"
  2073. tezos-client-base < "11.1"
  2074. tezos-client-base-unix < "11.1"
  2075. tezos-client-commands < "11.1"
  2076. tezos-client-demo-counter < "11.1"
  2077. tezos-client-genesis < "11.1"
  2078. tezos-client-genesis-carthagenet < "11.1"
  2079. tezos-client-sapling-008-PtEdo2Zk < "11.1"
  2080. tezos-client-sapling-008-PtEdoTez
  2081. tezos-client-sapling-009-PsFLoren < "11.1"
  2082. tezos-client-sapling-010-PtGRANAD < "11.1"
  2083. tezos-client-sapling-011-PtHangz2 < "11.1"
  2084. tezos-client-sapling-alpha < "11.1"
  2085. tezos-codec < "11.1"
  2086. tezos-context < "11.1"
  2087. tezos-context-hash
  2088. tezos-context-hash-irmin
  2089. tezos-crypto < "11.1"
  2090. tezos-embedded-protocol-000-Ps9mPmXa < "11.1"
  2091. tezos-embedded-protocol-001-PtCJ7pwo < "11.1"
  2092. tezos-embedded-protocol-002-PsYLVpVv < "11.1"
  2093. tezos-embedded-protocol-003-PsddFKi3 < "11.1"
  2094. tezos-embedded-protocol-004-Pt24m4xi < "11.1"
  2095. tezos-embedded-protocol-005-PsBABY5H < "11.1"
  2096. tezos-embedded-protocol-005-PsBabyM1 < "11.1"
  2097. tezos-embedded-protocol-006-PsCARTHA < "11.1"
  2098. tezos-embedded-protocol-007-PsDELPH1 < "11.1"
  2099. tezos-embedded-protocol-008-PtEdo2Zk < "11.1"
  2100. tezos-embedded-protocol-008-PtEdoTez < "11.1"
  2101. tezos-embedded-protocol-009-PsFLoren < "11.1"
  2102. tezos-embedded-protocol-010-PtGRANAD < "11.1"
  2103. tezos-embedded-protocol-011-PtHangz2 < "11.1"
  2104. tezos-embedded-protocol-alpha < "11.1"
  2105. tezos-embedded-protocol-demo-counter < "11.1"
  2106. tezos-embedded-protocol-demo-noops < "11.1"
  2107. tezos-embedded-protocol-genesis < "11.1"
  2108. tezos-embedded-protocol-genesis-carthagenet < "11.1"
  2109. tezos-endorser-006-PsCARTHA
  2110. tezos-endorser-007-PsDELPH1
  2111. tezos-endorser-008-PtEdo2Zk
  2112. tezos-endorser-008-PtEdoTez
  2113. tezos-endorser-009-PsFLoren
  2114. tezos-endorser-010-PtGRANAD
  2115. tezos-endorser-011-PtHangz2 < "11.1"
  2116. tezos-endorser-alpha < "11.1"
  2117. tezos-error-monad < "11.1"
  2118. tezos-event-logging < "11.1"
  2119. tezos-event-logging-test-helpers < "11.1"
  2120. tezos-hacl-glue < "11.1"
  2121. tezos-hacl-glue-unix < "11.0"
  2122. tezos-legacy-store < "11.1"
  2123. tezos-lmdb
  2124. tezos-lwt-result-stdlib < "11.1"
  2125. tezos-mempool-006-PsCARTHA
  2126. tezos-mempool-007-PsDELPH1
  2127. tezos-mempool-008-PtEdoTez
  2128. tezos-micheline < "11.1"
  2129. tezos-mockup < "11.1"
  2130. tezos-mockup-commands < "11.1"
  2131. tezos-mockup-proxy < "11.1"
  2132. tezos-mockup-registration < "11.1"
  2133. tezos-node < "11.1"
  2134. tezos-p2p < "11.1"
  2135. tezos-p2p-services < "11.1"
  2136. tezos-plompiler
  2137. tezos-plonk
  2138. tezos-protocol-000-Ps9mPmXa < "11.1"
  2139. tezos-protocol-001-PtCJ7pwo < "11.1"
  2140. tezos-protocol-002-PsYLVpVv < "11.1"
  2141. tezos-protocol-003-PsddFKi3 < "11.1"
  2142. tezos-protocol-004-Pt24m4xi < "11.1"
  2143. tezos-protocol-005-PsBABY5H < "11.1"
  2144. tezos-protocol-005-PsBabyM1 < "11.1"
  2145. tezos-protocol-006-PsCARTHA < "11.1"
  2146. tezos-protocol-006-PsCARTHA-parameters
  2147. tezos-protocol-007-PsDELPH1 < "11.1"
  2148. tezos-protocol-007-PsDELPH1-parameters
  2149. tezos-protocol-008-PtEdo2Zk < "11.1"
  2150. tezos-protocol-008-PtEdo2Zk-parameters < "11.1"
  2151. tezos-protocol-008-PtEdoTez < "11.1"
  2152. tezos-protocol-008-PtEdoTez-parameters
  2153. tezos-protocol-009-PsFLoren < "11.1"
  2154. tezos-protocol-009-PsFLoren-parameters < "11.1"
  2155. tezos-protocol-010-PtGRANAD < "11.1"
  2156. tezos-protocol-010-PtGRANAD-parameters < "11.1"
  2157. tezos-protocol-011-PtHangz2 < "11.1"
  2158. tezos-protocol-011-PtHangz2-parameters < "11.1"
  2159. tezos-protocol-alpha < "11.1"
  2160. tezos-protocol-alpha-parameters < "11.1"
  2161. tezos-protocol-compiler < "11.1"
  2162. tezos-protocol-demo-counter < "11.1"
  2163. tezos-protocol-demo-noops < "11.1"
  2164. tezos-protocol-environment < "11.1"
  2165. tezos-protocol-environment-packer < "11.1"
  2166. tezos-protocol-environment-sigs < "11.1"
  2167. tezos-protocol-environment-structs < "11.1"
  2168. tezos-protocol-genesis < "11.1"
  2169. tezos-protocol-genesis-carthagenet < "11.1"
  2170. tezos-protocol-plugin-007-PsDELPH1 < "11.1"
  2171. tezos-protocol-plugin-007-PsDELPH1-registerer < "11.1"
  2172. tezos-protocol-plugin-008-PtEdo2Zk < "11.1"
  2173. tezos-protocol-plugin-008-PtEdo2Zk-registerer < "11.1"
  2174. tezos-protocol-plugin-009-PsFLoren < "11.1"
  2175. tezos-protocol-plugin-009-PsFLoren-registerer < "11.1"
  2176. tezos-protocol-plugin-010-PtGRANAD < "11.1"
  2177. tezos-protocol-plugin-010-PtGRANAD-registerer < "11.1"
  2178. tezos-protocol-plugin-011-PtHangz2 < "11.1"
  2179. tezos-protocol-plugin-011-PtHangz2-registerer < "11.1"
  2180. tezos-protocol-plugin-alpha < "11.1"
  2181. tezos-protocol-plugin-alpha-registerer < "11.1"
  2182. tezos-protocol-updater < "11.1"
  2183. tezos-proxy < "11.1"
  2184. tezos-requester < "11.1"
  2185. tezos-rpc < "11.1"
  2186. tezos-rpc-http < "11.1"
  2187. tezos-rpc-http-client < "11.1"
  2188. tezos-rpc-http-client-unix < "11.1"
  2189. tezos-rpc-http-server < "11.1"
  2190. tezos-sapling < "11.1"
  2191. tezos-shell < "11.1"
  2192. tezos-shell-context < "11.1"
  2193. tezos-shell-services < "11.1"
  2194. tezos-shell-services-test-helpers < "11.1"
  2195. tezos-signer < "11.1"
  2196. tezos-signer-backends < "11.1"
  2197. tezos-signer-services < "11.1"
  2198. tezos-stdlib < "11.1"
  2199. tezos-stdlib-unix < "11.1"
  2200. tezos-storage
  2201. tezos-store < "11.1"
  2202. tezos-test-helpers < "11.1"
  2203. tezos-test-services
  2204. tezos-tooling < "13.0"
  2205. tezos-validation < "11.1"
  2206. tezos-validator < "11.1"
  2207. tezos-version < "11.1"
  2208. tezos-workers < "11.1"
  2209. tezt < "2.0.0"
  2210. theora >= "0.4.0"
  2211. thread-local-storage
  2212. thrift >= "0.10.0"
  2213. tidy >= "5-0.2"
  2214. tidy_email
  2215. tidy_email_mailgun
  2216. tidy_email_sendgrid
  2217. tidy_email_smtp
  2218. tilde_f < "v0.17.0"
  2219. time_now < "v0.17.0"
  2220. timed >= "1.1"
  2221. timedesc < "0.8.0"
  2222. timere < "0.8.0"
  2223. timere-parse
  2224. timezone < "v0.17.0"
  2225. tiny_httpd < "0.15"
  2226. tiny_httpd_camlzip < "0.15"
  2227. tip-parser >= "0.4"
  2228. tldr
  2229. tls >= "0.11.0" & < "0.15.4"
  2230. tls-async < "0.15.4"
  2231. tls-mirage < "0.15.4"
  2232. toml >= "5.0.0" & < "7.1.0"
  2233. toml-cconv
  2234. toml_cconv
  2235. toplevel_backend < "v0.17.0"
  2236. toplevel_expect_test >= "v0.12.0" & < "v0.17.0"
  2237. topological_sort >= "v0.12.0" & < "v0.17.0"
  2238. torch
  2239. tqdm
  2240. tracing < "v0.17.0"
  2241. tracy-client
  2242. transept
  2243. traverse
  2244. travesty < "0.7.2"
  2245. travis-opam >= "1.5.0"
  2246. trax >= "0.4.0"
  2247. tree_layout >= "0.2"
  2248. treeprint >= "2.3.0"
  2249. trie >= "1.0.0"
  2250. tsdl-image >= "0.3.0"
  2251. tsdl-mixer >= "0.3.0"
  2252. tsdl-ttf >= "0.3"
  2253. tsort
  2254. tube >= "4.4.0"
  2255. tuntap >= "1.7.0"
  2256. twostep
  2257. tyabt
  2258. typerep >= "v0.12.0" & < "v0.17.0"
  2259. typeset < "0.4"
  2260. tyre >= "0.5"
  2261. tyxml >= "4.3.0"
  2262. tyxml-jsx
  2263. tyxml-lwd
  2264. tyxml-ppx >= "4.3.0"
  2265. tyxml-syntax
  2266. u2f
  2267. ubase
  2268. ubpf < "0.2"
  2269. uecc >= "0.2"
  2270. uint >= "2.0.1"
  2271. ulid
  2272. um-abt
  2273. unidecode
  2274. unionFind
  2275. unisim_archisec < "0.0.1"
  2276. unison >= "2.51.4" & < "2.53.4"
  2277. universo
  2278. unix-errno >= "0.6.0"
  2279. unstrctrd
  2280. uri >= "2.2.0"
  2281. uri-bench
  2282. uri-re
  2283. uri-sexp
  2284. uring < "0.4"
  2285. uritemplate
  2286. user-agent-parser
  2287. username_kernel < "v0.17.0"
  2288. uspf
  2289. uspf-lwt
  2290. uspf-unix
  2291. utop >= "2.3.0"
  2292. uuuu >= "0.1.1"
  2293. validator
  2294. variantslib >= "v0.12.0" & < "v0.17.0"
  2295. varray
  2296. vcaml
  2297. vcardgen >= "1.2"
  2298. vchan >= "4.0.0"
  2299. vchan-unix >= "4.0.0"
  2300. vchan-xen >= "4.0.0"
  2301. vec
  2302. vector
  2303. vercel
  2304. vhd-format >= "0.12.0"
  2305. vhd-format-lwt >= "0.12.0"
  2306. virtual_dom >= "v0.12.0" & < "v0.17.0"
  2307. visitors >= "20200207"
  2308. vlq >= "0.2.1"
  2309. vmnet >= "1.3.2"
  2310. vocal
  2311. voqc
  2312. vorbis >= "0.8.0"
  2313. vpt >= "5.0.0"
  2314. vue-jsoo
  2315. wall >= "0.4"
  2316. wasmer
  2317. wasmtime
  2318. wayland
  2319. waylaunch
  2320. webauthn
  2321. weberizer >= "0.8"
  2322. webmachine >= "0.6.2"
  2323. websocket >= "2.12" & < "2.15"
  2324. websocket-async >= "2.12" & < "2.15"
  2325. websocket-lwt >= "2.12"
  2326. websocket-lwt-unix < "2.15"
  2327. websocketaf
  2328. webtest >= "2.0.0"
  2329. webtest-js
  2330. wikitext
  2331. win-error >= "1.0"
  2332. win-eventlog = "0.3"
  2333. winsvc
  2334. ws
  2335. ws-server
  2336. wseg
  2337. wtf8 >= "1.0.2"
  2338. wtr
  2339. wtr-ppx
  2340. wu-manber-fuzzy-search
  2341. x509 >= "0.6.3"
  2342. xapi-backtrace >= "0.7"
  2343. xapi-inventory >= "1.2.1"
  2344. xapi-rrd >= "1.8.2"
  2345. xapi-stdext-date
  2346. xapi-stdext-encodings
  2347. xapi-stdext-pervasives
  2348. xapi-stdext-std
  2349. xapi-stdext-threads
  2350. xapi-stdext-unix
  2351. xapi-stdext-zerocheck
  2352. xdg-basedir
  2353. xen-evtchn >= "2.1.0"
  2354. xen-evtchn-unix >= "2.1.0"
  2355. xen-gnt >= "3.1.0"
  2356. xen-gnt-unix >= "3.1.0"
  2357. xenstore >= "2.1.0"
  2358. xenstore_transport >= "1.1.0"
  2359. xml-light >= "2.5"
  2360. xmlplaylist >= "0.1.5"
  2361. xoshiro
  2362. yaml >= "1.0.0"
  2363. yaml-sexp
  2364. yara >= "0.2"
  2365. yocaml
  2366. yocaml_cmark
  2367. yocaml_git
  2368. yocaml_jingoo
  2369. yocaml_markdown
  2370. yocaml_mustache
  2371. yocaml_syndication
  2372. yocaml_unix
  2373. yocaml_yaml
  2374. yojson >= "1.5.0"
  2375. yojson-bench
  2376. yojson-five
  2377. yurt >= "0.6"
  2378. yuscii >= "0.2.1"
  2379. yuujinchou
  2380. zarith-ppx
  2381. zarith_stubs_js < "v0.17.0"
  2382. zed >= "2.0" & < "3.2.0"
  2383. zeit
  2384. zelus
  2385. zelus-gtk
  2386. zipperposition >= "1.5.1"
  2387. zipperposition-tools
  2388. zlib >= "0.6"
  2389. zlist >= "0.4.0"
  2390. zmq >= "5.1.0"
  2391. zmq-async >= "5.1.0"
  2392. zmq-eio
  2393. zmq-lwt >= "5.1.0"
  2394. zstandard >= "v0.12.1" & < "v0.17.0"
  2395. zstd = "0.3"
  2396. zxcvbn >= "2.3+2"

Conflicts (7)

  1. jbuilder = "transition"
  2. js_of_ocaml-compiler < "3.6.0"
  3. dune-release < "1.3.0"
  4. odoc < "1.3.0"
  5. dune-configurator < "2.3.0"
  6. ocaml-lsp-server < "1.3.0"
  7. merlin < "3.4.0"
OCaml

Innovation. Community. Security.