package alcotest

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

Install

dune-project
 Dependency

Authors

Maintainers

Sources

alcotest-js-1.5.0.tbz
sha256=54281907e02d78995df246dc2e10ed182828294ad2059347a1e3a13354848f6c
sha512=1aea91de40795ec4f6603d510107e4b663c1a94bd223f162ad231316d8595e9e098cabbe28a46bdcb588942f3d103d8377373d533bcc7413ba3868a577469b45

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: 12 Oct 2021

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][docs]. For information on contributing to Alcotest, see CONTRIBUTING.md.

OCaml-CI Build Status docs


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.

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 folder 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 prefered 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 qcheck does random generation and property testing (e.g. Quick Check)
  • crowbar and bun are similar to qcheck, but use compiler-directed randomness, e.g. it takes 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.0.0" & < "2.0.0"
  6. astring
  7. fmt >= "0.8.7"
  8. ocaml >= "4.03.0"
  9. dune >= "2.8"

Dev Dependencies (2)

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

  1. ahrocksdb
  2. albatross >= "1.5.4"
  3. alcobar
  4. alcotest-async < "1.7.0"
  5. alg_structs_qcheck
  6. algaeff
  7. ambient-context
  8. ambient-context-eio
  9. ambient-context-lwt
  10. angstrom >= "0.7.0"
  11. ansi >= "0.6.0"
  12. anycache >= "0.7.4"
  13. anycache-lwt
  14. arc
  15. archetype >= "1.4.2"
  16. archi
  17. arp
  18. arrakis < "1.1.0"
  19. art < "0.3.0"
  20. asai
  21. asak
  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. awskit < "0.2.0"
  29. awskit-eio < "0.2.0"
  30. awskit-lwt < "0.2.0"
  31. awskit-lwt-unix < "0.2.0"
  32. awskit-s3 < "0.2.0"
  33. awskit-s3-eio < "0.2.0"
  34. awskit-s3-lwt < "0.2.0"
  35. awskit-s3-lwt-unix < "0.2.0"
  36. awskit-s3-sim < "0.2.0"
  37. azure-cosmos-db-eio
  38. base32
  39. base64 >= "2.1.2" & < "3.2.0" | >= "3.4.0"
  40. bastet
  41. bastet_async
  42. bastet_lwt
  43. bech32
  44. bechamel >= "0.5.0"
  45. bigarray-overlap
  46. bigstringaf
  47. biotk >= "0.4"
  48. bitlib
  49. bizowie-api
  50. blake2
  51. bloomf
  52. bls12-381 < "0.4.1" | >= "3.0.0" & < "18.0"
  53. bls12-381-hash
  54. bls12-381-js >= "0.4.2"
  55. bls12-381-js-gen >= "0.4.2"
  56. bls12-381-legacy
  57. bls12-381-signature
  58. bls12-381-unix
  59. blurhash
  60. bm25
  61. brisk-reconciler
  62. builder-web
  63. bytebuffer
  64. ca-certs
  65. ca-certs-nss
  66. cabal
  67. cactus
  68. caldav
  69. calendar >= "3.0.0"
  70. calendars >= "2.0.0"
  71. callipyge
  72. camlix
  73. camlkit
  74. camlkit-base
  75. capnp-rpc < "1.2.3"
  76. capnp-rpc-unix < "1.2.3"
  77. caqti >= "1.7.0"
  78. caqti-async >= "1.7.0"
  79. caqti-driver-mariadb >= "1.7.0"
  80. caqti-driver-postgresql >= "1.7.0"
  81. caqti-driver-sqlite3 >= "1.7.0"
  82. caqti-dynload = "2.0.1"
  83. caqti-eio
  84. caqti-lwt >= "1.7.0"
  85. caqti-miou
  86. carray
  87. carton < "1.0.0"
  88. carton-git
  89. carton-lwt >= "0.4.3" & < "1.0.0"
  90. catala >= "0.6.0"
  91. cborl
  92. cf-lwt
  93. chacha
  94. chamelon
  95. chamelon-unix
  96. charrua-client
  97. charrua-server
  98. checkseum >= "0.0.3"
  99. cid
  100. clarity-lang
  101. class_group_vdf
  102. cohttp < "6.0.0"
  103. cohttp-curl-async < "6.1.0"
  104. cohttp-eio = "6.0.0~beta2"
  105. colombe >= "0.2.0"
  106. color
  107. commons
  108. conan
  109. conan-cli
  110. conan-database
  111. conan-lwt
  112. conan-unix
  113. conex < "0.10.0"
  114. conex-mirage-crypto
  115. conformist
  116. cookie
  117. cow >= "2.2.0"
  118. crockford
  119. css
  120. css-parser
  121. cstruct
  122. cstruct-sexp
  123. ctypes-zarith
  124. cuid
  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 < "1.5.3"
  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 < "10.2.4"
  156. docfd >= "13.0.0"
  157. domain-name
  158. dream
  159. dream-pure
  160. duff
  161. dune-deps >= "1.4.0"
  162. dune-release >= "1.0.0"
  163. duration
  164. echo
  165. ecma-regex
  166. eio < "0.12"
  167. eio_linux < "0.12"
  168. eio_windows < "0.12"
  169. emile
  170. encore
  171. eqaf >= "0.5"
  172. equinoxe
  173. equinoxe-cohttp
  174. equinoxe-hlc
  175. ezgzip
  176. ezjsonm
  177. ezjsonm-lwt
  178. ezlua
  179. FPauth
  180. FPauth-core
  181. FPauth-responses
  182. FPauth-strategies
  183. faraday != "0.2.0"
  184. farfadet
  185. fat-filesystem
  186. fehu < "1.0.0~alpha3"
  187. ff
  188. ff-pbt
  189. flex-array
  190. flux
  191. fluxt
  192. forcamla
  193. forester >= "5.0"
  194. fsevents-lwt
  195. functoria
  196. fungi
  197. geojson
  198. geoml >= "0.1.1"
  199. git
  200. git-cohttp
  201. git-cohttp-unix
  202. git-kv >= "0.2.0"
  203. git-mirage
  204. git-net
  205. git-split
  206. git-unix
  207. gitlab-unix
  208. glicko2
  209. gmap
  210. gobba
  211. gpt
  212. graphql
  213. graphql-async
  214. graphql-cohttp >= "0.13.0"
  215. graphql-lwt
  216. graphql_parser != "0.11.0"
  217. graphql_ppx
  218. h1
  219. h1_parser
  220. h2
  221. hacl
  222. hacl-star >= "0.6.0" & < "0.7.2"
  223. hacl_func
  224. hacl_x25519
  225. handlebars-ml >= "0.2.1"
  226. highlexer
  227. hkdf
  228. hockmd
  229. html_of_jsx
  230. http < "6.0.0"
  231. http-multipart-formdata < "2.0.0"
  232. httpaf >= "0.2.0"
  233. httpun
  234. httpun-ws
  235. hugin < "1.0.0~alpha3"
  236. huml
  237. hvsock
  238. icalendar
  239. idna
  240. imagelib
  241. index
  242. inferno >= "20220603"
  243. influxdb-async
  244. influxdb-lwt
  245. inquire < "0.2.0"
  246. intel_hex >= "0.3"
  247. interval-map
  248. iomux
  249. irmin
  250. irmin-bench
  251. irmin-chunk
  252. irmin-cli
  253. irmin-containers
  254. irmin-fs
  255. irmin-git
  256. irmin-graphql
  257. irmin-pack
  258. irmin-pack-tools
  259. irmin-test < "3.6.1"
  260. irmin-tezos
  261. irmin-unix
  262. irmin-watcher
  263. jekyll-format
  264. jose
  265. json-data-encoding >= "0.9" & < "1.1.1"
  266. json_decoder
  267. jsonfeed
  268. jsonschema-core
  269. jsonschema-validation
  270. jsonxt
  271. junit_alcotest < "2.1.0"
  272. jwto
  273. kaun < "1.0.0~alpha3"
  274. kdf
  275. ke >= "0.2"
  276. kkmarkdown
  277. kmt
  278. lambda-runtime
  279. lambda_streams
  280. lambda_streams_async
  281. lambdapi
  282. layoutz
  283. letters
  284. liquid_ml >= "0.1.3"
  285. lmdb >= "1.0"
  286. logical
  287. logtk
  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. mbr-format
  296. mdx
  297. mec
  298. mechaml >= "1.2.1"
  299. melange >= "7.0.0-51"
  300. melange-edn >= "0.5.0"
  301. menhir-lsp >= "0.3.3"
  302. menhirformat
  303. merlin = "4.17.1-501"
  304. merlin-lib >= "4.17.1-501"
  305. metrics
  306. mfat
  307. miaou-core
  308. middleware
  309. mimic
  310. minicaml = "0.3.1" | >= "0.4"
  311. mirage >= "4.0.0"
  312. mirage-block-partition
  313. mirage-block-ramdisk
  314. mirage-channel >= "4.0.1"
  315. mirage-crypto-ec
  316. mirage-flow-unix
  317. mirage-kv >= "2.0.0"
  318. mirage-kv-mem
  319. mirage-kv-unix >= "3.0.0"
  320. mirage-logs
  321. mirage-nat
  322. mirage-net-unix
  323. mirage-runtime < "4.7.0"
  324. mirage-tc
  325. mjson
  326. mlgpx
  327. mmdb < "0.3.0"
  328. mnd
  329. mqtt
  330. mrmime >= "0.2.0"
  331. msgpck >= "1.6"
  332. mssql
  333. multibase
  334. multihash
  335. multihash-digestif
  336. multipart-form-data
  337. multipart_form
  338. multipart_form-eio
  339. multipart_form-lwt
  340. multipart_form-miou
  341. named-pipe
  342. nanoid
  343. nbd >= "4.0.3"
  344. nbd-tool
  345. neo4j_bolt
  346. nloge
  347. nocoiner
  348. non_empty_list
  349. nx < "1.0.0~alpha3"
  350. nx-datasets
  351. nx-text
  352. OCADml >= "0.6.0"
  353. obatcher
  354. object
  355. ocaml-ai-sdk
  356. ocaml-index < "5.4.1-503"
  357. ocaml-r >= "0.4.0"
  358. ocaml-version >= "3.5.0"
  359. ocamlformat < "0.25.1"
  360. ocamlformat-lib
  361. ocamlformat-mlx-lib
  362. ocamlformat-rpc < "removed"
  363. ocamline
  364. ocgtk
  365. ochre
  366. ochre-cli
  367. ocluster < "0.3.0"
  368. ocue
  369. odoc < "2.1.1"
  370. oenv >= "0.1.0"
  371. ohex
  372. oidc
  373. opam-0install
  374. opam-0install-cudf >= "0.5.0"
  375. opam-compiler
  376. opam-file-format >= "2.1.1"
  377. opam-repomin
  378. opencage
  379. opentelemetry >= "0.6"
  380. opentelemetry-client
  381. opentelemetry-client-cohttp-eio
  382. opentelemetry-client-cohttp-lwt >= "0.6"
  383. opentelemetry-client-ocurl >= "0.6"
  384. opentelemetry-client-ocurl-lwt
  385. opentelemetry-cohttp-lwt >= "0.6"
  386. opentelemetry-logs
  387. opentelemetry-lwt >= "0.6"
  388. opium
  389. opium-graphql
  390. opium-testing
  391. opium_kernel
  392. orewa
  393. orgeat
  394. ortac-core
  395. ortac-wrapper
  396. osnap < "0.3.0"
  397. osx-acl
  398. osx-attr
  399. osx-cf
  400. osx-fsevents
  401. osx-membership
  402. osx-mount
  403. osx-xattr
  404. otoggl
  405. owl >= "0.7.0" & != "0.9.0" & != "1.0.0"
  406. owl-base < "0.5.0"
  407. owl-ode >= "0.1.0" & != "0.2.0"
  408. owl-symbolic
  409. parseff
  410. passe
  411. passmaker
  412. patch < "3.0.0~alpha2"
  413. pbkdf
  414. pecu >= "0.2"
  415. pf-qubes
  416. pg_query >= "0.9.6"
  417. pgx
  418. pgx_unix
  419. pgx_value_core
  420. pgx_value_ptime
  421. phylogenetics
  422. piaf
  423. plebeia >= "2.0.0"
  424. polyglot
  425. polynomial
  426. ppx_blob >= "0.3.0"
  427. ppx_deriving_cmdliner
  428. ppx_deriving_ezjsonm
  429. ppx_deriving_qcheck
  430. ppx_deriving_rpc
  431. ppx_deriving_yaml
  432. ppx_ezlua
  433. ppx_inline_alcotest
  434. ppx_marshal
  435. ppx_parser
  436. ppx_protocol_conv
  437. ppx_protocol_conv_json
  438. ppx_protocol_conv_jsonm
  439. ppx_protocol_conv_msgpack
  440. ppx_protocol_conv_xml_light
  441. ppx_protocol_conv_xmlm
  442. ppx_protocol_conv_yaml
  443. ppx_repr
  444. ppx_subliner
  445. ppx_units
  446. ppx_yojson >= "1.1.0"
  447. pratter
  448. prbnmcn-ucb1 >= "0.0.2"
  449. prc
  450. preface
  451. pretty_expressive
  452. prettym
  453. proc-smaps
  454. producer < "0.2.0"
  455. progress
  456. prom
  457. prometheus < "1.2"
  458. prometheus-app
  459. protocell
  460. protocol-9p < "0.11.0" | >= "0.11.2"
  461. protocol-9p-unix
  462. proton
  463. psq
  464. public-suffix
  465. pyast
  466. qcaml
  467. qcheck >= "0.25"
  468. qcheck-alcotest
  469. qcheck-core >= "0.25"
  470. qcow-stream >= "0.13.0"
  471. qcow-tool = "0.13.0"
  472. qcow-types = "0.13.0"
  473. query-json
  474. quickjs
  475. quill < "1.0.0~alpha3"
  476. randii
  477. reason-standard
  478. red-black-tree
  479. reparse >= "2.0.0" & < "3.0.0"
  480. reparse-unix < "2.1.0"
  481. resp
  482. resp-unix >= "0.10.0"
  483. resto >= "0.8"
  484. rfc1951 < "1.0.0"
  485. routes < "2.0.0"
  486. rpc
  487. rpclib
  488. rpclib-async
  489. rpclib-lwt
  490. rpmfile < "0.3.0"
  491. rpmfile-eio
  492. rpmfile-unix
  493. rune < "1.0.0~alpha3"
  494. SZXX >= "4.0.0"
  495. saga
  496. salsa20
  497. salsa20-core
  498. sanddb >= "0.2"
  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. sha256-cng
  514. shakuhachi
  515. sherlodoc
  516. sihl < "0.2.0"
  517. sihl-type
  518. slug
  519. sm
  520. smaws-clients
  521. smaws-lib
  522. smol
  523. smol-helpers
  524. sodium-fmt
  525. solidity-alcotest
  526. sowilo < "1.0.0~alpha3"
  527. spdx_licenses
  528. spectrum >= "0.2.0"
  529. spectrum_capabilities
  530. spectrum_palette_ppx
  531. spectrum_palettes
  532. spectrum_tools
  533. spin >= "0.7.0"
  534. spurs < "0.1.1"
  535. squirrel
  536. ssh-agent
  537. ssl >= "0.6.0"
  538. stem
  539. stramon-lib
  540. stringx
  541. styled-ppx
  542. swapfs
  543. symex >= "0.2"
  544. symphony-orchestrator-tui
  545. synchronizer >= "0.2"
  546. syslog-rfc5424 < "0.2"
  547. talon < "1.0.0~alpha3"
  548. tar-eio >= "3.5.0"
  549. tcpip
  550. tdigest < "2.1.0"
  551. term-indexing
  552. term-tools
  553. terminal
  554. terminal_size >= "0.1.1"
  555. terminus
  556. terminus-cohttp
  557. terminus-hlc
  558. terml
  559. testo
  560. testo-lwt
  561. textmate-language >= "0.3.0"
  562. textrazor
  563. timedesc
  564. timere
  565. timmy
  566. timmy-jsoo
  567. timmy-lwt
  568. timmy-unix
  569. tls >= "0.12.8"
  570. toc
  571. topojson
  572. topojsone
  573. traits
  574. transept
  575. tsort >= "2.2.0"
  576. twostep
  577. type_eq
  578. type_id
  579. typeid >= "1.0.1"
  580. tyre >= "0.4"
  581. tyxml >= "4.2.0"
  582. tyxml-jsx
  583. tyxml-ppx >= "4.3.0"
  584. tyxml-syntax
  585. uecc
  586. ulid
  587. universal-portal
  588. unix-dirent
  589. unix-errno
  590. unix-sys-resource
  591. unix-sys-stat
  592. unix-time
  593. unstrctrd
  594. uring < "0.4"
  595. user-agent-parser
  596. uspf
  597. uspf-lwt
  598. uspf-mirage
  599. uspf-unix
  600. utcp
  601. utop >= "2.13.0"
  602. validate
  603. validator
  604. vercel
  605. vhd-format-lwt >= "0.13.0"
  606. wayland >= "2.0"
  607. wcwidth
  608. websocketaf
  609. wire
  610. x509 >= "0.7.0"
  611. xapi-rrd
  612. xapi-stdext-date
  613. xapi-stdext-encodings
  614. xapi-stdext-std >= "4.16.0"
  615. yaml
  616. yaml-sexp
  617. yocaml
  618. yocaml_syndication >= "2.0.0"
  619. yocaml_yaml < "2.0.0"
  620. yojson >= "1.6.0"
  621. yojson-five
  622. yuscii >= "0.3.0"
  623. yuujinchou >= "1.0.0"
  624. zar
  625. zed >= "3.2.2"
  626. zlist < "0.4.0"

Conflicts (1)

  1. result < "1.5"