package alcotest

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

Install

dune-project
 Dependency

Authors

Maintainers

Sources

alcotest-1.8.0.tbz
sha256=cba1bd01707c8c55b4764bb0df8c9c732be321e1f1c1a96a406e56d8dbca1d0e
sha512=eebb034c990abd253f526e848a99881686d7bd3c7d1b1d373953d568d062e3d5aaa79b6b4807455aaa9a98710eca4ada30e816a0134717a380619a597575564d

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: 25 Jul 2024

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 (2)

  1. odoc with-doc
  2. cmdliner with-test & < "2.0.0"

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

Conflicts (2)

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