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

Conflicts (2)

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