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

Conflicts (2)

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