package alcotest

  1. Overview
  2. Docs
Alcotest is a lightweight and colourful test framework

Install

dune-project
 Dependency

Authors

Maintainers

Sources

alcotest-1.9.1.tbz
sha256=1e29c3b41d4329062105b723dfda3aff86b8cef5e7c7500d0e491fc5fd78e482
sha512=c49d402fa636dcf11f81917610dd1d2eca8606c8919aede4db23710d071f6046a8f93c78de9fbfee26637a53ca67f71fad500bfa2478b7f0f059608a492dd0a5

Description

Alcotest exposes simple interface to perform unit tests. It exposes a simple TESTABLE module type, a check function to assert test predicates and a run function to perform a list of unit -> unit test callbacks.

Alcotest provides a quiet and colorful output where only faulty runs are fully displayed at the end of the run (with the full logs ready to inspect), with a simple (yet expressive) query language to select the tests to run.

Published: 01 Oct 2025

README

A lightweight and colourful test framework.


Alcotest exposes a simple interface to perform unit tests. It exposes a simple TESTABLE module type, a check function to assert test predicates and a run function to perform a list of unit -> unit test callbacks.

Alcotest provides a quiet and colorful output where only faulty runs are fully displayed at the end of the run (with the full logs ready to inspect), with a simple (yet expressive) query language to select the tests to run. See the manpage for details.

The API documentation can be found here. For information on contributing to Alcotest, see CONTRIBUTING.md.

OCaml-CI Build Status Alcotest Documentation


Examples

A simple example (taken from examples/simple.ml):

Generated by the following test suite specification:

(* Build with `ocamlbuild -pkg alcotest simple.byte` *)

(* A module with functions to test *)
module To_test = struct
  let lowercase = String.lowercase_ascii
  let capitalize = String.capitalize_ascii
  let str_concat = String.concat ""
  let list_concat = List.append
end

(* The tests *)
let test_lowercase () =
  Alcotest.(check string) "same string" "hello!" (To_test.lowercase "hELLO!")

let test_capitalize () =
  Alcotest.(check string) "same string" "World." (To_test.capitalize "world.")

let test_str_concat () =
  Alcotest.(check string) "same string" "foobar" (To_test.str_concat ["foo"; "bar"])

let test_list_concat () =
  Alcotest.(check (list int)) "same lists" [1; 2; 3] (To_test.list_concat [1] [2; 3])

(* Run it *)
let () =
  let open Alcotest in
  run "Utils" [
      "string-case", [
          test_case "Lower case"     `Quick test_lowercase;
          test_case "Capitalization" `Quick test_capitalize;
        ];
      "string-concat", [ test_case "String mashing" `Quick test_str_concat  ];
      "list-concat",   [ test_case "List mashing"   `Slow  test_list_concat ];
    ]

The result is a self-contained binary which displays the test results. Use dune exec examples/simple.exe -- --help to see the runtime options.

Here's an example of a of failing test suite:

By default, only the first failing test log is printed to the console (and all test logs are captured on disk). Pass --show-errors to print all error messages.

Using Alcotest with opam and Dune

Add (alcotest :with-test) to the depends stanza of your dune-project file, or "alcotest" {with-test} to your opam file. Use the with-test package variable to declare your tests opam dependencies. Call opam to install them:

$ opam install --deps-only --with-test .

You can then declare your test and link with Alcotest: (test (libraries alcotest …) …), and run your tests:

$ dune runtest

Selecting tests to execute

You can filter which tests to run by supplying a regular expression matching the names of the tests to execute, or by passing a regular expression and a comma-separated list of test numbers (or ranges of test numbers, e.g. 2,4..9):

$ ./simple.native test '.*concat*'
Testing Utils.
[SKIP]     string-case            0   Lower case.
[SKIP]     string-case            1   Capitalization.
[OK]       string-concat          0   String mashing.
[OK]       list-concat            0   List mashing.
The full test results are available in `_build/_tests`.
Test Successful in 0.000s. 2 tests run.

$ ./simple.native test 'string-case' '1..3'
Testing Utils.
[SKIP]     string-case            0   Lower case.
[OK]       string-case            1   Capitalization.
[SKIP]     string-concat          0   String mashing.
[SKIP]     list-concat            0   List mashing.
The full test results are available in `_build/_tests`.
Test Successful in 0.000s. 1 test run.

Note that you cannot filter by test case name (i.e. Lower case or Capitalization), you must filter by test name & number instead.

See the examples directory for more examples.

Quick and Slow tests

In general you should use `Quick tests: tests that are ran on any invocations of the test suite. You should only use `Slow tests for stress tests that are ran only on occasion (typically before a release or after a major change). These slow tests can be suppressed by passing the -q flag on the command line, e.g.:

$ ./test.exe -q # run only the quick tests
$ ./test.exe    # run quick and slow tests

Passing custom options to the tests

In most cases, the base tests are unit -> unit functions. However, it is also possible to pass an extra option to all the test functions by using 'a -> unit, where 'a is the type of the extra parameter.

In order to do this, you need to specify how this extra parameter is read on the command-line, by providing a Cmdliner term for command-line arguments which explains how to parse and serialize values of type 'a (note: do not use positional arguments, only optional arguments are supported).

For instance:

let test_nice i = Alcotest.(check int) "Is it a nice integer?" i 42

let int =
  let doc = "What is your preferred number?" in
  Cmdliner.Arg.(required & opt (some int) None & info ["n"] ~doc ~docv:"NUM")

let () =
  Alcotest.run_with_args "foo" int [
    "all", ["nice", `Quick, test_nice]
  ]

Will generate test.exe such that:

$ test.exe test
test.exe: required option -n is missing

$ test.exe test -n 42
Testing foo.
[OK]                all          0   int.

Lwt

Alcotest provides an Alcotest_lwt module that you could use to wrap Lwt test cases. The basic idea is that instead of providing a test function in the form unit -> unit, you provide one with the type unit -> unit Lwt.t and alcotest-lwt calls Lwt_main.run for you.

However, there are a couple of extra features:

  • If an async exception occurs, it will cancel your test case for you and fail it (rather than exiting the process).
  • You get given a switch, which will be turned off when the test case finishes (or fails). You can use that to free up any resources.

For instance:

let free () = print_endline "freeing all resources"; Lwt.return ()

let test_lwt switch () =
  Lwt_switch.add_hook (Some switch) free;
  Lwt.async (fun () -> failwith "All is broken");
  Lwt_unix.sleep 10.

let () =
  Lwt_main.run @@ Alcotest_lwt.run "foo" [
    "all", [
      Alcotest_lwt.test_case "one" `Quick test_lwt
    ]
  ]

Will generate:

$ test.exe
Testing foo.
[ERROR]             all          0   one.
-- all.000 [one.] Failed --
in _build/_tests/all.000.output:
freeing all resources
[failure] All is broken

Comparison with other testing frameworks

The README is pretty clear about that:

Alcotest is the only testing framework using colors!

More seriously, Alcotest is similar to ounit but it fixes a few of the problems found in that library:

  • Alcotest has a nicer output, it is easier to see what failed and what succeeded and to read the log outputs of the failed tests;
  • Alcotest uses combinators to define pretty-printers and comparators between the things to test.

Other nice tools doing different kind of testing also exist:

  • qcheck does random generation and property testing (e.g. Quick Check);
  • crowbar and bun are similar to qcheck, but use compiler-directed randomness, i.e. they take advantage of the AFL support the OCaml compiler;
  • ppx_inline_tests allows to write tests in the same file as your source-code; they will be run only in a special mode of compilation.

Dependencies (9)

  1. ocaml-syntax-shims
  2. uutf >= "1.0.1"
  3. stdlib-shims
  4. re >= "1.7.2"
  5. cmdliner >= "1.2.0"
  6. astring
  7. fmt >= "0.8.7"
  8. ocaml >= "4.08"
  9. dune >= "3.0"

Dev Dependencies (1)

  1. odoc with-doc

  1. ahrocksdb
  2. albatross >= "1.5.4"
  3. alcotest-async >= "1.9.1"
  4. alcotest-js >= "1.9.1"
  5. alcotest-lwt >= "1.9.1"
  6. alcotest-mirage >= "1.9.1"
  7. alg_structs_qcheck
  8. algaeff
  9. ambient-context
  10. ambient-context-eio
  11. ambient-context-lwt
  12. angstrom >= "0.7.0"
  13. ansi >= "0.6.0"
  14. anycache >= "0.7.4"
  15. anycache-async
  16. anycache-lwt
  17. archetype >= "1.4.2"
  18. archi
  19. arp
  20. arrakis < "1.1.0"
  21. art
  22. asai
  23. asak >= "0.2"
  24. asli >= "0.2.0"
  25. asn1-combinators >= "0.2.5"
  26. atd >= "2.3.3"
  27. atdgen >= "2.10.0"
  28. atdpy
  29. atdts
  30. backoff
  31. base32
  32. base64 >= "2.1.2" & < "3.2.0" | >= "3.4.0"
  33. bastet
  34. bastet_lwt
  35. bech32
  36. bechamel >= "0.5.0"
  37. bigarray-overlap
  38. bigstringaf
  39. bitlib
  40. blake2
  41. bloomf
  42. bls12-381 < "0.4.1" | >= "3.0.0" & < "18.0"
  43. bls12-381-hash
  44. bls12-381-js >= "0.4.2"
  45. bls12-381-js-gen >= "0.4.2"
  46. bls12-381-legacy
  47. bls12-381-signature
  48. bls12-381-unix
  49. blurhash
  50. brisk-reconciler
  51. builder-web
  52. bytebuffer
  53. ca-certs
  54. ca-certs-nss
  55. cachet
  56. cachet-lwt
  57. cachet-solo5
  58. cactus
  59. caldav
  60. calendar >= "3.0.0"
  61. callipyge
  62. camlix
  63. camlkit
  64. camlkit-base
  65. capnp-rpc
  66. capnp-rpc-unix
  67. caqti >= "1.7.0"
  68. caqti-async >= "1.7.0"
  69. caqti-driver-mariadb >= "1.7.0"
  70. caqti-driver-postgresql >= "1.7.0"
  71. caqti-driver-sqlite3 >= "1.7.0"
  72. caqti-dynload >= "2.0.1"
  73. caqti-eio
  74. caqti-lwt >= "1.7.0"
  75. caqti-miou
  76. carray
  77. carton < "1.0.0"
  78. carton-git
  79. carton-lwt >= "0.4.3" & < "1.0.0"
  80. catala >= "0.6.0"
  81. cborl
  82. cf-lwt
  83. chacha
  84. chamelon
  85. chamelon-unix
  86. charrua-client
  87. charrua-server
  88. checked_oint
  89. checkseum >= "0.0.3"
  90. cid
  91. clarity-lang
  92. class_group_vdf
  93. cohttp
  94. cohttp-curl-async
  95. cohttp-curl-lwt
  96. cohttp-eio >= "6.0.0~beta2"
  97. colombe >= "0.2.0"
  98. color
  99. commons
  100. conan
  101. conan-cli
  102. conan-database
  103. conan-lwt
  104. conan-unix
  105. conex < "0.10.0"
  106. conex-mirage-crypto
  107. conformist
  108. cookie
  109. corosync
  110. cow >= "2.2.0"
  111. crockford
  112. css
  113. css-parser
  114. cstruct
  115. cstruct-sexp
  116. ctypes-zarith
  117. cuid
  118. cure2
  119. curly
  120. current
  121. current-albatross-deployer
  122. current_git >= "0.7.1"
  123. current_incr
  124. data-encoding
  125. dates_calc
  126. dbase4
  127. decimal >= "0.3.0"
  128. decompress
  129. depyt
  130. digestif >= "0.9.0"
  131. dirsp-exchange-kbb2017
  132. dirsp-proscript-mirage
  133. dirsp-ps2ocaml
  134. dispatch >= "0.4.1"
  135. dkim
  136. dkim-bin
  137. dkim-mirage
  138. dkml-dune-dsl-show
  139. dkml-install
  140. dkml-install-installer
  141. dkml-install-runner
  142. dkml-package-console
  143. dns >= "4.4.1"
  144. dns-cli
  145. dns-client >= "4.6.3"
  146. dns-forward-lwt-unix
  147. dns-resolver
  148. dns-server
  149. dns-tsig
  150. dnssd
  151. dnssec
  152. docfd >= "2.2.0"
  153. dockerfile >= "8.2.7"
  154. domain-local-await >= "0.2.1"
  155. domain-local-timeout
  156. domain-name
  157. dream
  158. dream-htmx
  159. dream-pure
  160. dscheck >= "0.1.1"
  161. duff
  162. dune-deps >= "1.4.0"
  163. dune-release >= "1.0.0"
  164. duration
  165. echo
  166. eio < "0.12"
  167. eio_linux
  168. eio_windows
  169. emile
  170. encore
  171. eqaf >= "0.5"
  172. equinoxe
  173. equinoxe-cohttp
  174. equinoxe-hlc
  175. ezgzip
  176. ezjsonm
  177. ezjsonm-lwt
  178. FPauth
  179. FPauth-core
  180. FPauth-responses
  181. FPauth-strategies
  182. faraday != "0.2.0"
  183. farfadet
  184. fat-filesystem
  185. fehu
  186. ff
  187. ff-pbt
  188. flex-array
  189. flux
  190. fluxt
  191. forester >= "5.0"
  192. fsevents-lwt
  193. functoria
  194. fungi
  195. geojson
  196. geoml >= "0.1.1"
  197. git
  198. git-cohttp
  199. git-cohttp-unix
  200. git-kv != "0.1.3"
  201. git-mirage
  202. git-net
  203. git-split
  204. git-unix
  205. gitlab-unix
  206. glicko2
  207. gmap
  208. gobba
  209. gpt
  210. graphql
  211. graphql-async
  212. graphql-cohttp >= "0.13.0"
  213. graphql-lwt
  214. graphql_parser != "0.11.0"
  215. graphql_ppx
  216. h1
  217. h1_parser
  218. h2
  219. hacl
  220. hacl-star >= "0.6.0"
  221. hacl_func
  222. hacl_x25519
  223. handlebars-ml >= "0.2.1"
  224. highlexer
  225. hkdf
  226. hockmd
  227. html_of_jsx
  228. http
  229. http-multipart-formdata < "2.0.0"
  230. httpaf >= "0.2.0"
  231. httpcats
  232. httpun
  233. httpun-ws
  234. hugin
  235. huml
  236. hvsock
  237. icalendar
  238. imagelib
  239. index
  240. inferno >= "20220603"
  241. influxdb-async
  242. influxdb-lwt
  243. inquire < "0.2.0"
  244. interval-map
  245. iomux
  246. irmin
  247. irmin-bench
  248. irmin-chunk
  249. irmin-cli
  250. irmin-containers
  251. irmin-fs
  252. irmin-git
  253. irmin-graphql
  254. irmin-pack
  255. irmin-pack-tools
  256. irmin-test != "3.6.1"
  257. irmin-tezos
  258. irmin-unix
  259. irmin-watcher
  260. jekyll-format
  261. jose
  262. json-data-encoding >= "0.9"
  263. json_decoder
  264. jsonfeed
  265. jsonxt
  266. junit_alcotest >= "2.2.0"
  267. jwto
  268. kaun
  269. kcas >= "0.6.0"
  270. kcas_data >= "0.6.0"
  271. kdf
  272. ke >= "0.2"
  273. kkmarkdown
  274. kmt
  275. lambda-runtime
  276. lambda_streams
  277. lambda_streams_async
  278. lambdapi
  279. ledgerwallet-tezos >= "0.2.1" & < "0.4.0"
  280. letters
  281. lmdb >= "1.0"
  282. lockfree >= "0.3.1"
  283. logical
  284. logtk >= "1.6"
  285. lp
  286. lp-glpk
  287. lp-glpk-js < "0.5.0"
  288. lp-gurobi < "0.5.0"
  289. lru
  290. lt-code
  291. luv
  292. mazeppa
  293. mbr-format
  294. mdx >= "1.6.0"
  295. mec
  296. mechaml >= "1.2.1"
  297. mel-bastet
  298. merlin = "4.17.1-501"
  299. merlin-lib >= "4.17.1-501"
  300. metrics
  301. middleware
  302. mimic
  303. minicaml = "0.3.1" | >= "0.4"
  304. mirage >= "4.0.0"
  305. mirage-block-partition
  306. mirage-block-ramdisk
  307. mirage-channel >= "4.0.1"
  308. mirage-crypto-ec
  309. mirage-flow-unix
  310. mirage-kv >= "2.0.0"
  311. mirage-kv-mem >= "4.0.1"
  312. mirage-kv-unix >= "3.0.0"
  313. mirage-logs
  314. mirage-nat
  315. mirage-net-unix
  316. mirage-runtime < "4.7.0"
  317. mirage-tc
  318. mjson
  319. mlgpx
  320. mmdb < "0.3.0"
  321. mnd
  322. mqtt
  323. mrmime >= "0.2.0"
  324. msgpck >= "1.6"
  325. mssql >= "2.0.3"
  326. multibase
  327. multicore-magic
  328. multihash
  329. multihash-digestif
  330. multipart-form-data
  331. multipart_form
  332. multipart_form-eio
  333. multipart_form-lwt
  334. multipart_form-miou
  335. named-pipe
  336. nanoid
  337. nbd >= "4.0.3"
  338. nbd-tool
  339. nloge
  340. nocoiner
  341. non_empty_list
  342. nx
  343. nx-datasets
  344. nx-text
  345. OCADml >= "0.6.0"
  346. obatcher
  347. ocaml-index < "5.4.1-503"
  348. ocaml-r >= "0.4.0"
  349. ocaml-version >= "3.5.0"
  350. ocamlformat >= "0.13.0" & < "0.25.1"
  351. ocamlformat-lib
  352. ocamlformat-mlx-lib
  353. ocamlformat-rpc < "removed"
  354. ocamline
  355. ocluster
  356. octez-bls12-381-hash
  357. octez-bls12-381-signature
  358. octez-libs
  359. octez-mec
  360. ocue
  361. odoc < "2.1.1"
  362. oenv >= "0.1.0"
  363. ohex
  364. oidc
  365. opam-0install
  366. opam-0install-cudf >= "0.5.0"
  367. opam-compiler
  368. opam-file-format >= "2.1.1"
  369. opencage
  370. opentelemetry >= "0.6"
  371. opentelemetry-client-cohttp-eio
  372. opentelemetry-client-cohttp-lwt >= "0.6"
  373. opentelemetry-client-ocurl >= "0.6"
  374. opentelemetry-cohttp-lwt >= "0.6"
  375. opentelemetry-logs
  376. opentelemetry-lwt >= "0.6"
  377. opium
  378. opium-graphql
  379. opium-testing
  380. opium_kernel
  381. orewa
  382. orgeat
  383. ortac-core
  384. ortac-wrapper
  385. osnap < "0.3.0"
  386. osx-acl
  387. osx-attr
  388. osx-cf
  389. osx-fsevents
  390. osx-membership
  391. osx-mount
  392. osx-xattr
  393. otoggl
  394. owl >= "0.7.0" & != "0.9.0" & != "1.0.0"
  395. owl-base < "0.5.0"
  396. owl-ode >= "0.1.0" & != "0.2.0"
  397. owl-symbolic
  398. par_incr
  399. passmaker
  400. patch
  401. pbkdf
  402. pecu >= "0.2"
  403. pf-qubes
  404. pg_query >= "0.9.6"
  405. pgx >= "1.0"
  406. pgx_unix >= "1.0"
  407. pgx_value_core
  408. pgx_value_ptime
  409. phylogenetics
  410. piaf
  411. picos < "0.5.0"
  412. picos_meta
  413. piece_rope
  414. plebeia >= "2.0.0"
  415. polyglot
  416. polynomial
  417. ppx_blob >= "0.3.0"
  418. ppx_catch
  419. ppx_deriving_cmdliner
  420. ppx_deriving_ezjsonm
  421. ppx_deriving_qcheck
  422. ppx_deriving_rpc
  423. ppx_deriving_yaml
  424. ppx_inline_alcotest
  425. ppx_map
  426. ppx_marshal
  427. ppx_mica
  428. ppx_parser
  429. ppx_protocol_conv >= "5.0.0"
  430. ppx_protocol_conv_json >= "5.0.0"
  431. ppx_protocol_conv_jsonm >= "5.0.0"
  432. ppx_protocol_conv_msgpack >= "5.0.0"
  433. ppx_protocol_conv_xml_light >= "5.0.0"
  434. ppx_protocol_conv_xmlm
  435. ppx_protocol_conv_yaml >= "5.0.0"
  436. ppx_repr
  437. ppx_subliner
  438. ppx_units
  439. ppx_yojson >= "1.1.0"
  440. pratter
  441. prbnmcn-ucb1 >= "0.0.2"
  442. prc
  443. preface
  444. pretty_expressive
  445. prettym
  446. proc-smaps
  447. producer
  448. progress
  449. prom
  450. prometheus < "1.2"
  451. prometheus-app
  452. protocell
  453. protocol-9p < "0.11.0" | >= "0.11.2"
  454. protocol-9p-unix
  455. proton
  456. psq
  457. pyast
  458. qcaml
  459. qcheck >= "0.25"
  460. qcheck-alcotest
  461. qcheck-core >= "0.25"
  462. query-json
  463. quickjs
  464. quill
  465. randii
  466. reason-standard
  467. red-black-tree
  468. reparse >= "2.0.0" & < "3.0.0"
  469. reparse-unix < "2.1.0"
  470. resp
  471. resp-unix >= "0.10.0"
  472. resto >= "0.9"
  473. rfc1951 < "1.0.0"
  474. routes < "2.0.0"
  475. rpc
  476. rpclib
  477. rpclib-async
  478. rpclib-lwt
  479. rpmfile < "0.3.0"
  480. rpmfile-eio
  481. rpmfile-unix
  482. rune
  483. runtime_events_tools >= "0.5.2"
  484. SZXX >= "4.0.0"
  485. saga
  486. salsa20
  487. salsa20-core
  488. sanddb >= "0.2"
  489. saturn != "0.4.1"
  490. saturn_lockfree != "0.4.1"
  491. scrypt-kdf
  492. secp256k1 >= "0.4.1"
  493. secp256k1-internal
  494. semver >= "0.2.1"
  495. sendmail
  496. sendmail-lwt
  497. sendmail-miou-unix
  498. sendmail-mirage
  499. sendmsg
  500. seqes
  501. server-reason-react
  502. session-cookie
  503. session-cookie-async
  504. session-cookie-lwt
  505. sherlodoc
  506. sihl < "0.2.0"
  507. sihl-type
  508. slug
  509. smaws-clients
  510. smaws-lib
  511. smol
  512. smol-helpers
  513. sodium-fmt
  514. solidity-alcotest
  515. sowilo
  516. spdx_licenses
  517. spectrum >= "0.2.0"
  518. spin >= "0.7.0"
  519. spurs
  520. squirrel
  521. ssh-agent
  522. ssl >= "0.6.0"
  523. starred_ml
  524. stramon-lib
  525. stringx
  526. styled-ppx
  527. swapfs
  528. syslog-rfc5424
  529. tabr
  530. talon
  531. tar-mirage
  532. tcpip
  533. tdigest < "2.1.0"
  534. term-indexing
  535. term-tools
  536. terminal
  537. terminal_size >= "0.1.1"
  538. terminus
  539. terminus-cohttp
  540. terminus-hlc
  541. terml
  542. testo
  543. testo-lwt
  544. textmate-language >= "0.3.0"
  545. textrazor
  546. tezos-base-test-helpers < "17.3"
  547. tezos-bls12-381-polynomial
  548. tezos-client-base < "17.3"
  549. tezos-client-base-unix < "17.3"
  550. tezos-crypto >= "16.0" & < "17.3"
  551. tezos-crypto-dal < "17.3"
  552. tezos-error-monad >= "12.3" & < "17.3"
  553. tezos-event-logging-test-helpers < "17.3"
  554. tezos-plompiler = "0.1.3"
  555. tezos-plonk = "0.1.3"
  556. tezos-shell-services >= "16.0" & < "17.3"
  557. tezos-stdlib != "12.3" & < "17.3"
  558. tezos-test-helpers < "17.3"
  559. tezos-version >= "16.0" & < "17.3"
  560. tezos-webassembly-interpreter < "17.3"
  561. thread-table
  562. timedesc
  563. timere
  564. timmy
  565. timmy-jsoo
  566. timmy-lwt
  567. timmy-unix
  568. tls >= "0.12.8"
  569. toc
  570. topojson
  571. topojsone
  572. trail
  573. traits
  574. transept
  575. tsort >= "2.2.0"
  576. twostep
  577. type_eq
  578. type_id
  579. typeid >= "1.0.1"
  580. tyre >= "0.4"
  581. tyxml >= "4.2.0"
  582. tyxml-jsx
  583. tyxml-ppx >= "4.3.0"
  584. tyxml-syntax
  585. uecc
  586. ulid
  587. universal-portal
  588. unix-dirent
  589. unix-errno
  590. unix-sys-resource
  591. unix-sys-stat
  592. unix-time
  593. unstrctrd
  594. uring < "0.4"
  595. user-agent-parser
  596. uspf
  597. uspf-lwt
  598. uspf-mirage
  599. uspf-unix
  600. utop >= "2.13.0"
  601. validate
  602. validator
  603. vercel
  604. vhd-format-lwt >= "0.13.0"
  605. vpnkit
  606. wayland >= "2.0"
  607. wcwidth
  608. websocketaf
  609. x509 >= "0.7.0"
  610. xapi-rrd
  611. xapi-stdext-date
  612. xapi-stdext-encodings
  613. xapi-stdext-std >= "4.16.0"
  614. xkbcommon
  615. yaml
  616. yaml-sexp
  617. yocaml
  618. yocaml_syndication >= "2.0.0"
  619. yocaml_yaml < "2.0.0"
  620. yojson >= "1.6.0"
  621. yojson-five
  622. yuscii >= "0.3.0"
  623. yuujinchou >= "1.0.0"
  624. zar
  625. zed >= "3.2.2"
  626. zlist < "0.4.0"

Conflicts (2)

  1. js_of_ocaml-compiler < "5.8"
  2. result < "1.5"