package dune

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

Install

Dune Dependency

Authors

Maintainers

Sources

dune-2.7.1.tbz
sha256=c3528f2f8b3a2e3fe18e166fc823e6caeee8b7c78ade6b6fe4d2fa978070925d
sha512=2b4b311824471dac8196181d7c7267f96b1b73f35341b72019f169cf6d42a19254e90bdfba2d3ecb138ad318e2e2431dd0ec6c38d9efe1da382ec95f5d9e959b

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: 06 Sep 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.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.12"

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

Conflicts (5)

  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"
OCaml

Innovation. Community. Security.