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

Conflicts (2)

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