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

Conflicts (2)

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