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

Conflicts (2)

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