package alcotest

  1. Overview
  2. Docs
Alcotest is a lightweight and colourful test framework

Install

Dune Dependency

Authors

Maintainers

Sources

alcotest-1.9.0.tbz
sha256=e2387136ca854df2b4152139dd4d4b3953a646e804948073dedfe0a232f08a15
sha512=ba38fe4a9061b001d274e5d41fb06c10c84120570fc00dc57dc5a06ba05176c2413295680d839f465ba91469ea99d7e172a324e26f005d6e8c4d98fca7657241

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: 18 Mar 2025

README

README.md

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.


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.0"
  3. alcotest-async < "1.0.0" | >= "1.9.0"
  4. alcotest-js >= "1.9.0"
  5. alcotest-lwt < "1.0.0" | >= "1.9.0"
  6. alcotest-mirage >= "1.9.0"
  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. archetype >= "1.4.2"
  18. archi
  19. arp != "2.3.1"
  20. arp-mirage < "2.0.0"
  21. arrakis
  22. art
  23. asai
  24. asak >= "0.2"
  25. asli >= "0.2.0"
  26. asn1-combinators >= "0.2.2"
  27. atd >= "2.3.3"
  28. atdgen >= "2.10.0"
  29. atdpy
  30. atdts
  31. backoff
  32. base32
  33. base64 >= "2.1.2" & < "3.2.0" | >= "3.4.0"
  34. bastet
  35. bastet_lwt
  36. bech32
  37. bechamel >= "0.5.0"
  38. bigarray-overlap
  39. bigstringaf
  40. bitlib
  41. blake2
  42. bloomf
  43. bls12-381 < "0.4.1" | >= "3.0.0" & < "18.0"
  44. bls12-381-hash
  45. bls12-381-js >= "0.4.2"
  46. bls12-381-js-gen >= "0.4.2"
  47. bls12-381-legacy
  48. bls12-381-signature
  49. bls12-381-unix
  50. blurhash
  51. builder-web
  52. bytebuffer
  53. ca-certs
  54. ca-certs-nss
  55. cachet
  56. cachet-lwt
  57. cachet-solo5
  58. cactus
  59. caldav
  60. calendar >= "3.0.0"
  61. callipyge
  62. camlix
  63. camlkit
  64. camlkit-base
  65. capnp-rpc
  66. capnp-rpc-lwt < "0.3.1"
  67. capnp-rpc-mirage >= "0.9.0"
  68. capnp-rpc-unix >= "0.9.0"
  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. carray
  78. carton < "1.0.0"
  79. carton-git
  80. carton-lwt >= "0.4.1" & < "1.0.0"
  81. catala >= "0.6.0"
  82. cborl
  83. cf-lwt
  84. chacha
  85. chamelon
  86. chamelon-unix
  87. charrua-client
  88. charrua-client-lwt
  89. charrua-client-mirage < "0.11.0"
  90. charrua-server >= "1.4.1"
  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. conex-nocrypto
  111. conformist
  112. cookie
  113. corosync
  114. cow >= "2.2.0"
  115. css
  116. css-parser
  117. cstruct >= "3.3.0"
  118. cstruct-sexp
  119. ctypes-zarith
  120. cuid
  121. curly
  122. current >= "0.4"
  123. current-albatross-deployer
  124. current_git >= "0.6.4"
  125. current_incr
  126. data-encoding
  127. dates_calc
  128. dbase4
  129. decimal >= "0.3.0"
  130. decompress
  131. depyt
  132. digestif >= "0.8.1"
  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. dns >= "4.0.0"
  146. dns-cli
  147. dns-client >= "4.6.0"
  148. dns-forward-lwt-unix
  149. dns-resolver
  150. dns-server
  151. dns-tsig
  152. dnssd
  153. dnssec
  154. docfd >= "2.2.0"
  155. dockerfile >= "8.2.2"
  156. domain-local-await >= "0.2.1"
  157. domain-local-timeout
  158. domain-name
  159. dot-merlin-reader = "5.3~5.3preview"
  160. dream
  161. dream-htmx
  162. dream-pure
  163. dscheck >= "0.1.1"
  164. duff
  165. dune-deps >= "1.4.0"
  166. dune-release >= "1.0.0"
  167. duration >= "0.1.1"
  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. ff
  188. ff-pbt
  189. flex-array
  190. fsevents-lwt
  191. functoria
  192. functoria-runtime >= "2.2.0" & < "3.0.1" | = "3.1.2"
  193. geojson
  194. geoml >= "0.1.1"
  195. git
  196. git-cohttp
  197. git-cohttp-mirage
  198. git-cohttp-unix
  199. git-kv >= "0.1.0" & < "0.1.3"
  200. git-mirage
  201. git-split
  202. git-unix = "2.0.0" | >= "2.1.1"
  203. gitlab-unix
  204. glicko2
  205. gmap >= "0.3.0"
  206. gobba
  207. gpt
  208. graphql
  209. graphql-async
  210. graphql-cohttp >= "0.13.0"
  211. graphql-lwt
  212. graphql_parser != "0.11.0"
  213. graphql_ppx
  214. h1
  215. h1_parser
  216. h2
  217. hacl
  218. hacl-star >= "0.6.0"
  219. hacl_func
  220. hacl_x25519 >= "0.2.0"
  221. highlexer
  222. hkdf
  223. hockmd
  224. html_of_jsx
  225. http
  226. http-multipart-formdata < "2.0.0"
  227. httpaf >= "0.2.0"
  228. httpcats
  229. httpun
  230. httpun-ws
  231. hvsock
  232. icalendar >= "0.1.4"
  233. imagelib
  234. index
  235. inferno >= "20220603"
  236. influxdb-async
  237. influxdb-lwt
  238. inquire < "0.2.0"
  239. interval-map
  240. iomux
  241. irmin != "2.3.0"
  242. irmin-bench >= "2.7.0"
  243. irmin-chunk >= "2.3.0"
  244. irmin-cli
  245. irmin-containers
  246. irmin-fs >= "2.3.0"
  247. irmin-git >= "2.3.0"
  248. irmin-graphql >= "2.3.0"
  249. irmin-mem >= "2.3.0"
  250. irmin-pack >= "2.4.0" & != "2.6.1"
  251. irmin-pack-tools
  252. irmin-test < "3.4.0" | >= "3.9.0"
  253. irmin-tezos
  254. irmin-tezos-utils
  255. irmin-unix >= "2.4.0" & != "2.6.1"
  256. irmin-watcher >= "0.4.0"
  257. jekyll-format
  258. jose
  259. json-data-encoding >= "0.9"
  260. json_decoder
  261. jsonxt
  262. jwto
  263. kcas >= "0.6.0"
  264. kcas_data >= "0.6.0"
  265. kdf
  266. ke >= "0.2"
  267. kkmarkdown
  268. kmt
  269. lambda-runtime
  270. lambda_streams
  271. lambda_streams_async
  272. lambdapi
  273. ledgerwallet-tezos >= "0.2.1" & < "0.4.0"
  274. letters
  275. lmdb >= "1.0"
  276. lockfree >= "0.3.1"
  277. logical
  278. logtk >= "1.6"
  279. lp
  280. lp-glpk
  281. lp-glpk-js
  282. lp-gurobi
  283. lru
  284. lt-code
  285. luv
  286. mazeppa
  287. mbr-format
  288. mdx >= "1.6.0"
  289. mec
  290. mechaml >= "1.2.1"
  291. merlin >= "4.17.1-414" & < "4.18-414" | >= "5.2.1-502" & < "5.3-502"
  292. merlin-lib >= "4.17.1-414" & < "5.0-502" | >= "5.2.1-502"
  293. metrics
  294. middleware
  295. mimic
  296. minicaml = "0.3.1" | >= "0.4"
  297. mirage >= "4.0.0~beta1"
  298. mirage-block-partition
  299. mirage-channel >= "4.0.1"
  300. mirage-channel-lwt < "3.1.0"
  301. mirage-crypto-ec >= "0.10.0"
  302. mirage-flow-unix < "1.3.0" | >= "3.0.0"
  303. mirage-fs-mem
  304. mirage-kv >= "2.0.0"
  305. mirage-kv-unix >= "3.0.0"
  306. mirage-logs >= "0.3.0"
  307. mirage-nat
  308. mirage-net-unix
  309. mirage-runtime >= "4.0.0~beta1" & < "4.5.0"
  310. mirage-tc
  311. mirage-vnetif-stack
  312. mjson
  313. mmdb < "0.3.0"
  314. mnd
  315. mqtt
  316. mrmime >= "0.2.0"
  317. msgpck >= "1.6"
  318. mssql >= "2.0.3"
  319. multibase
  320. multicore-magic >= "1.0.1"
  321. multihash
  322. multihash-digestif
  323. multipart-form-data
  324. multipart_form
  325. multipart_form-eio
  326. multipart_form-lwt
  327. named-pipe
  328. nanoid
  329. nbd >= "4.0.3"
  330. nbd-tool
  331. nloge
  332. nocoiner
  333. non_empty_list
  334. OCADml >= "0.6.0"
  335. obatcher
  336. ocaml-index = "1.1"
  337. ocaml-r >= "0.4.0"
  338. ocaml-version >= "3.1.0"
  339. ocamlformat >= "0.13.0" & < "0.25.1"
  340. ocamlformat-lib
  341. ocamlformat-mlx-lib
  342. ocamlformat-rpc < "removed"
  343. ocamline
  344. ocluster
  345. octez-bls12-381-hash
  346. octez-bls12-381-signature
  347. octez-libs
  348. octez-mec
  349. odoc < "2.1.0"
  350. ohex
  351. oidc
  352. opam-0install
  353. opam-0install-cudf >= "0.5.0"
  354. opam-compiler
  355. opam-file-format >= "2.1.1"
  356. opentelemetry >= "0.6"
  357. opentelemetry-client-cohttp-lwt >= "0.6"
  358. opentelemetry-client-ocurl >= "0.6"
  359. opentelemetry-cohttp-lwt >= "0.6"
  360. opentelemetry-lwt >= "0.6"
  361. opium
  362. opium-graphql
  363. opium-testing
  364. opium_kernel
  365. orewa
  366. orgeat
  367. ortac-core
  368. osnap < "0.3.0"
  369. osx-acl
  370. osx-attr
  371. osx-cf
  372. osx-fsevents
  373. osx-membership
  374. osx-mount
  375. osx-xattr
  376. otoggl
  377. owl >= "0.7.0" & != "0.9.0" & != "1.0.0"
  378. owl-base < "0.5.0"
  379. owl-ode >= "0.1.0" & != "0.2.0"
  380. owl-symbolic
  381. par_incr
  382. passmaker
  383. patch
  384. pbkdf
  385. pecu >= "0.2"
  386. pf-qubes
  387. pg_query >= "0.9.6"
  388. pgx >= "1.0"
  389. pgx_unix >= "1.0"
  390. pgx_value_core
  391. pgx_value_ptime
  392. phylogenetics
  393. piaf
  394. picos < "0.5.0"
  395. picos_meta
  396. piece_rope
  397. plebeia >= "2.0.0"
  398. polyglot
  399. polynomial
  400. ppx_blob >= "0.3.0"
  401. ppx_catch
  402. ppx_deriving_cmdliner
  403. ppx_deriving_ezjsonm
  404. ppx_deriving_qcheck
  405. ppx_deriving_rpc
  406. ppx_deriving_yaml
  407. ppx_inline_alcotest
  408. ppx_map
  409. ppx_mica
  410. ppx_parser
  411. ppx_protocol_conv >= "5.0.0"
  412. ppx_protocol_conv_json >= "5.0.0"
  413. ppx_protocol_conv_jsonm >= "5.0.0"
  414. ppx_protocol_conv_msgpack >= "5.0.0"
  415. ppx_protocol_conv_xml_light >= "5.0.0"
  416. ppx_protocol_conv_xmlm
  417. ppx_protocol_conv_yaml >= "5.0.0"
  418. ppx_repr
  419. ppx_subliner
  420. ppx_units
  421. ppx_yojson >= "1.1.0"
  422. pratter
  423. prbnmcn-ucb1 >= "0.0.2"
  424. prc
  425. preface
  426. pretty_expressive
  427. prettym
  428. proc-smaps
  429. producer
  430. progress
  431. prom
  432. prometheus < "1.2"
  433. prometheus-app
  434. protocell
  435. protocol-9p < "0.11.0" | >= "0.11.2"
  436. protocol-9p-unix
  437. psq
  438. pyast
  439. qcheck >= "0.18"
  440. qcheck-alcotest
  441. qcheck-core >= "0.18"
  442. quickjs
  443. randii
  444. reason-standard
  445. red-black-tree
  446. reparse >= "2.0.0" & < "3.0.0"
  447. reparse-unix < "2.1.0"
  448. resp
  449. resp-unix >= "0.10.0"
  450. resto >= "0.9"
  451. rfc1951 < "1.0.0"
  452. routes < "2.0.0"
  453. rpc >= "7.1.0"
  454. rpclib >= "7.1.0"
  455. rpclib-async
  456. rpclib-lwt >= "7.1.0"
  457. rpmfile < "0.3.0"
  458. rpmfile-eio
  459. rpmfile-unix
  460. SZXX >= "4.0.0"
  461. salsa20
  462. salsa20-core
  463. sanddb >= "0.2"
  464. saturn != "0.4.1"
  465. saturn_lockfree != "0.4.1"
  466. scrypt-kdf
  467. secp256k1 >= "0.4.1"
  468. secp256k1-internal
  469. semver >= "0.2.1"
  470. sendmail
  471. sendmail-lwt
  472. sendmail-miou-unix
  473. sendmail-mirage
  474. sendmsg
  475. seqes
  476. server-reason-react
  477. session-cookie
  478. session-cookie-async
  479. session-cookie-lwt
  480. sherlodoc
  481. sihl < "0.2.0"
  482. sihl-type
  483. slug
  484. smaws-clients
  485. smaws-lib
  486. smol
  487. smol-helpers
  488. sodium-fmt
  489. solidity-alcotest
  490. spdx_licenses
  491. spectrum >= "0.2.0"
  492. spin >= "0.7.0"
  493. squirrel
  494. ssh-agent
  495. ssl >= "0.6.0"
  496. starred_ml
  497. stramon-lib
  498. styled-ppx
  499. swapfs
  500. syslog-rfc5424
  501. tabr
  502. tar-mirage >= "2.4.0"
  503. tcpip < "3.4.2" | >= "6.2.0"
  504. tdigest < "2.1.0"
  505. term-indexing
  506. term-tools
  507. terminal
  508. terminal_size >= "0.1.1"
  509. terminus
  510. terminus-cohttp
  511. terminus-hlc
  512. terml
  513. testo
  514. testo-lwt
  515. textmate-language >= "0.3.0"
  516. textrazor
  517. tezos-base-test-helpers < "17.3"
  518. tezos-bls12-381-polynomial
  519. tezos-client-base < "17.3"
  520. tezos-client-base-unix < "17.3"
  521. tezos-crypto >= "16.0" & < "17.3"
  522. tezos-crypto-dal < "17.3"
  523. tezos-error-monad >= "12.3" & < "17.3"
  524. tezos-event-logging-test-helpers < "17.3"
  525. tezos-plompiler = "0.1.3"
  526. tezos-plonk = "0.1.3"
  527. tezos-shell-services >= "16.0" & < "17.3"
  528. tezos-stdlib != "12.3" & < "17.3"
  529. tezos-test-helpers < "17.3"
  530. tezos-version >= "16.0" & < "17.3"
  531. tezos-webassembly-interpreter < "17.3"
  532. thread-table
  533. timedesc
  534. timere
  535. timmy
  536. timmy-jsoo
  537. timmy-lwt
  538. timmy-unix
  539. tls >= "0.12.0"
  540. toc
  541. topojson
  542. topojsone
  543. trail
  544. traits
  545. transept
  546. twostep
  547. type_eq
  548. type_id
  549. typebeat
  550. typeid >= "1.0.1"
  551. tyre >= "0.4"
  552. tyxml >= "4.2.0"
  553. tyxml-jsx
  554. tyxml-ppx >= "4.3.0"
  555. tyxml-syntax
  556. uecc
  557. ulid
  558. universal-portal
  559. unix-dirent
  560. unix-errno
  561. unix-sys-resource
  562. unix-sys-stat
  563. unix-time
  564. unstrctrd
  565. uring < "0.4"
  566. user-agent-parser
  567. uspf
  568. uspf-lwt
  569. uspf-mirage
  570. uspf-unix
  571. utop >= "2.13.0"
  572. validate
  573. validator
  574. vercel
  575. vhd-format-lwt >= "0.13.0"
  576. vpnkit
  577. wayland >= "2.0"
  578. wcwidth
  579. websocketaf
  580. x509 >= "0.7.0"
  581. xapi-rrd
  582. xapi-stdext-date
  583. xapi-stdext-encodings
  584. xapi-stdext-std >= "4.16.0"
  585. xkbcommon
  586. yaml
  587. yaml-sexp
  588. yocaml
  589. yocaml_syndication >= "2.0.0"
  590. yocaml_yaml < "2.0.0"
  591. yojson >= "1.6.0"
  592. yojson-five
  593. yuscii >= "0.3.0"
  594. yuujinchou >= "1.0.0"
  595. zar
  596. zed >= "3.2.2"
  597. zlist < "0.4.0"

Conflicts (2)

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

Innovation. Community. Security.