package dune

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

Install

Dune Dependency

Authors

Maintainers

Sources

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

Description

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

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

dune supports multi-package development by simply dropping multiple repositories into the same directory.

It also supports multi-context builds, such as building against several opam roots/switches simultaneously. This helps maintaining packages across several versions of OCaml and gives cross-compilation for free.

Published: 19 Dec 2019

README

Dune - A composable build system

Dune is a build system designed for OCaml/Reason projects only. It focuses on providing the user with a consistent experience and takes care of most of the low-level details of OCaml compilation. All you have to do is provide a description of your project and dune will do the rest.

The scheme it implements is inspired from the one used inside Jane Street and adapted to the open source world. It has matured over a long time and is used daily by hundreds of developers, which means that it is highly tested and productive.

Dune comes with a manual. If you want to get started without reading too much, you can look at the quick start guide or watch this introduction video.

The example directory contains examples of projects using dune.

Overview

Dune reads project metadata from dune files, which are either static files in a simple S-expression syntax or OCaml scripts. It uses this information to setup build rules, generate configuration files for development tools such as merlin, handle installation, etc...

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

Especially, one can install OCaml on Windows with a binary installer and then use only the Windows Console to build dune and packages using dune.

Strengths

Composable

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

This make simultaneous development on multiple packages trivial.

Gracefully handles multi-package repositories

Dune knows how to handle repositories containing several packages. When building via opam, it is able to correctly use libraries that were previously installed even if they are already present in the source tree.

The magic invocation is:

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

Building against several configurations at once

Dune is able to build a given source code repository against several configurations simultaneously. This helps maintaining packages across several versions of OCaml as you can test them all at once without hassle.

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

This feature requires opam.

Requirements

Dune requires OCaml version 4.02.3 or greater.

Installation

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

$ opam install dune

You can also build it manually with:

$ make
$ make install

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

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

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

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

Support

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

Migration from jbuilder

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

Status

Dune is now fairly stable and is used by the majority of packages on opam. Note that dune retains backward compatibility with Jbuilder, and in particular existing Jbuilder projects will continue to be buildable with dune.

Dependencies (5)

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

Dev Dependencies

None

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

Conflicts (3)

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

Innovation. Community. Security.