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. migra
  320. mimic
  321. minicaml = "0.3.1" | >= "0.4"
  322. mirage >= "4.0.0"
  323. mirage-block-partition
  324. mirage-block-ramdisk
  325. mirage-channel >= "4.0.1"
  326. mirage-crypto-ec
  327. mirage-flow-unix
  328. mirage-kv >= "2.0.0"
  329. mirage-kv-mem >= "4.0.1"
  330. mirage-kv-unix >= "3.0.0"
  331. mirage-logs
  332. mirage-nat
  333. mirage-net-unix
  334. mirage-runtime < "4.7.0"
  335. mirage-tc
  336. mjson
  337. mlgpx
  338. mmdb < "0.3.0"
  339. mnd
  340. mqtt
  341. mrmime >= "0.2.0"
  342. msgpck >= "1.6"
  343. mssql
  344. multibase
  345. multicore-magic
  346. multihash
  347. multihash-digestif
  348. multipart-form-data
  349. multipart_form
  350. multipart_form-eio
  351. multipart_form-lwt
  352. multipart_form-miou
  353. named-pipe
  354. nanoid
  355. nbd >= "4.0.3"
  356. nbd-tool
  357. neo4j_bolt
  358. nloge
  359. nocoiner
  360. non_empty_list
  361. nx < "1.0.0~alpha3"
  362. nx-datasets
  363. nx-text
  364. OCADml >= "0.6.0"
  365. obatcher
  366. object
  367. ocaml-ai-sdk
  368. ocaml-index < "5.4.1-503"
  369. ocaml-r >= "0.4.0"
  370. ocaml-version >= "3.5.0"
  371. ocamlformat < "0.25.1"
  372. ocamlformat-lib
  373. ocamlformat-mlx-lib
  374. ocamlformat-rpc < "removed"
  375. ocamline
  376. ocgtk
  377. ochre
  378. ochre-cli
  379. ocluster
  380. ocue
  381. odoc < "2.1.1"
  382. oenv >= "0.1.0"
  383. ohex
  384. oidc
  385. oktree >= "0.2.4"
  386. opam-0install
  387. opam-0install-cudf >= "0.5.0"
  388. opam-compiler
  389. opam-file-format >= "2.1.1"
  390. opam-repomin
  391. opencage
  392. opentelemetry >= "0.6"
  393. opentelemetry-client
  394. opentelemetry-client-cohttp-eio
  395. opentelemetry-client-cohttp-lwt >= "0.6"
  396. opentelemetry-client-ocurl >= "0.6"
  397. opentelemetry-client-ocurl-lwt
  398. opentelemetry-cohttp-lwt >= "0.6"
  399. opentelemetry-logs
  400. opentelemetry-lwt >= "0.6"
  401. opium
  402. opium-graphql
  403. opium-testing
  404. opium_kernel
  405. orewa
  406. orgeat
  407. ortac-core
  408. ortac-wrapper
  409. osnap < "0.3.0"
  410. osx-acl
  411. osx-attr
  412. osx-cf
  413. osx-fsevents
  414. osx-membership
  415. osx-mount
  416. osx-xattr
  417. otoggl
  418. owl >= "0.7.0" & != "0.9.0" & != "1.0.0"
  419. owl-base < "0.5.0"
  420. owl-ode >= "0.1.0" & != "0.2.0"
  421. owl-symbolic
  422. par_incr
  423. parseff
  424. passe
  425. passmaker
  426. patch
  427. pbkdf
  428. pecu >= "0.2"
  429. pf-qubes
  430. pg_query >= "0.9.6"
  431. pgx
  432. pgx_unix
  433. pgx_value_core
  434. pgx_value_ptime
  435. phylogenetics
  436. piaf
  437. picos < "0.5.0"
  438. picos_meta
  439. piece_rope
  440. plebeia >= "2.0.0"
  441. polyglot
  442. polymarket
  443. polynomial
  444. ppx_blob >= "0.3.0"
  445. ppx_catch
  446. ppx_deriving_cmdliner
  447. ppx_deriving_ezjsonm
  448. ppx_deriving_qcheck
  449. ppx_deriving_rpc
  450. ppx_deriving_yaml
  451. ppx_ezlua
  452. ppx_inline_alcotest
  453. ppx_map
  454. ppx_marshal
  455. ppx_mica
  456. ppx_parser
  457. ppx_protocol_conv
  458. ppx_protocol_conv_json
  459. ppx_protocol_conv_jsonm
  460. ppx_protocol_conv_msgpack
  461. ppx_protocol_conv_xml_light
  462. ppx_protocol_conv_xmlm
  463. ppx_protocol_conv_yaml
  464. ppx_repr
  465. ppx_subliner
  466. ppx_units
  467. ppx_yojson >= "1.1.0"
  468. pratter
  469. prbnmcn-ucb1 >= "0.0.2"
  470. prc
  471. preface
  472. pretty_expressive
  473. prettym
  474. proc-smaps
  475. producer
  476. progress
  477. prom
  478. prometheus < "1.2"
  479. prometheus-app
  480. protocell
  481. protocol-9p < "0.11.0" | >= "0.11.2"
  482. protocol-9p-unix
  483. proton
  484. psq
  485. public-suffix
  486. purl
  487. pxshot
  488. pyast
  489. qcaml
  490. qcheck >= "0.25"
  491. qcheck-alcotest
  492. qcheck-core >= "0.25"
  493. qcow-stream >= "0.13.0"
  494. qcow-tool = "0.13.0"
  495. qcow-types = "0.13.0"
  496. qdrant
  497. query-json
  498. quickjs
  499. quill < "1.0.0~alpha3"
  500. randii
  501. reason-standard
  502. red-black-tree
  503. reparse >= "2.0.0" & < "3.0.0"
  504. reparse-unix < "2.1.0"
  505. resp
  506. resp-unix >= "0.10.0"
  507. resto >= "0.9"
  508. rfc1951 < "1.0.0"
  509. routes < "2.0.0"
  510. rpc
  511. rpclib
  512. rpclib-async
  513. rpclib-lwt
  514. rpmfile < "0.3.0"
  515. rpmfile-eio
  516. rpmfile-unix
  517. rune < "1.0.0~alpha3"
  518. runtime_events_tools >= "0.5.2"
  519. SZXX >= "4.0.0"
  520. saga
  521. salsa20
  522. salsa20-core
  523. sanddb >= "0.2"
  524. saturn != "0.4.1"
  525. saturn_lockfree != "0.4.1"
  526. scrypt-kdf
  527. secp256k1 >= "0.4.1"
  528. secp256k1-internal
  529. semver >= "0.2.1"
  530. sendmail
  531. sendmail-lwt
  532. sendmail-miou-unix
  533. sendmail-mirage
  534. sendmsg
  535. seqes
  536. server-reason-react
  537. session-cookie
  538. session-cookie-async
  539. session-cookie-lwt
  540. sha256-cng
  541. shakuhachi
  542. sherlodoc
  543. sihl < "0.2.0"
  544. sihl-type
  545. slug
  546. smaws-clients
  547. smaws-lib
  548. smol
  549. smol-helpers
  550. sodium-fmt
  551. solidity-alcotest
  552. sowilo < "1.0.0~alpha3"
  553. spdx_licenses
  554. spectrum >= "0.2.0"
  555. spectrum_capabilities
  556. spectrum_palette_ppx
  557. spectrum_palettes
  558. spectrum_tools
  559. spin >= "0.7.0"
  560. spurs < "0.1.1"
  561. squirrel
  562. ssh-agent
  563. ssl >= "0.6.0"
  564. starred_ml
  565. stem
  566. stramon-lib
  567. stringx
  568. styled-ppx
  569. swapfs
  570. symex >= "0.2"
  571. symphony-orchestrator-tui
  572. synchronizer >= "0.2"
  573. syslog-rfc5424
  574. tabr
  575. talon < "1.0.0~alpha3"
  576. tar-eio >= "3.5.0"
  577. tar-mirage
  578. tcpip
  579. tdigest < "2.1.0"
  580. term-indexing
  581. term-tools
  582. terminal
  583. terminal_size >= "0.1.1"
  584. terminus
  585. terminus-cohttp
  586. terminus-hlc
  587. terml
  588. testo
  589. testo-lwt
  590. textmate-language >= "0.3.0"
  591. textrazor
  592. thread-table
  593. timedesc
  594. timere
  595. timmy
  596. timmy-jsoo
  597. timmy-lwt
  598. timmy-unix
  599. tls >= "0.12.8"
  600. toc
  601. topojson
  602. topojsone
  603. trail
  604. traits
  605. transept
  606. tsort >= "2.2.0"
  607. twostep
  608. type_eq
  609. type_id
  610. typeid >= "1.0.1"
  611. tyre >= "0.4"
  612. tyxml >= "4.2.0"
  613. tyxml-jsx
  614. tyxml-ppx >= "4.3.0"
  615. tyxml-syntax
  616. uecc
  617. ulid
  618. universal-portal
  619. unix-dirent
  620. unix-errno
  621. unix-sys-resource
  622. unix-sys-stat
  623. unix-time
  624. unstrctrd
  625. uring < "0.4"
  626. user-agent-parser
  627. uspf
  628. uspf-lwt
  629. uspf-mirage
  630. uspf-unix
  631. utcp
  632. utop >= "2.13.0"
  633. validate
  634. validator
  635. valkey
  636. vercel
  637. vhd-format-lwt >= "0.13.0"
  638. wayland >= "2.0"
  639. wcwidth
  640. websocketaf
  641. wire
  642. x509 >= "0.7.0"
  643. xapi-rrd
  644. xapi-stdext-date
  645. xapi-stdext-encodings
  646. xapi-stdext-std >= "4.16.0"
  647. xdge
  648. xkbcommon
  649. yaml
  650. yaml-sexp
  651. yocaml
  652. yocaml_syndication >= "2.0.0"
  653. yocaml_yaml < "2.0.0"
  654. yojson >= "1.6.0"
  655. yojson-five
  656. yuscii >= "0.3.0"
  657. yuujinchou >= "1.0.0"
  658. zar
  659. zed >= "3.2.2"
  660. zlist < "0.4.0"

Conflicts (2)

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