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

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

Conflicts (2)

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

Innovation. Community. Security.