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

Conflicts (2)

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