package alcotest

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

Install

Dune 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

README.md

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.


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"
  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.0"
  3. alcotest-async < "1.0.0" | = "1.5.0"
  4. alcotest-js < "1.6.0"
  5. alcotest-lwt < "1.0.0" | = "1.5.0"
  6. alcotest-mirage = "1.5.0"
  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 != "2.3.1"
  20. arp-mirage < "2.0.0"
  21. arrakis
  22. art
  23. asai
  24. asak >= "0.2"
  25. asli >= "0.2.0"
  26. asn1-combinators >= "0.2.2"
  27. atd >= "2.3.3"
  28. atdgen >= "2.10.0"
  29. atdpy
  30. atdts
  31. base32
  32. base64 >= "2.1.2" & < "3.2.0" | >= "3.4.0"
  33. bastet
  34. bastet_async
  35. bastet_lwt
  36. bech32
  37. bechamel >= "0.5.0"
  38. bigarray-overlap
  39. bigstringaf
  40. bitlib
  41. blake2
  42. bloomf
  43. bls12-381 < "0.4.1" | >= "3.0.0" & < "18.0"
  44. bls12-381-hash
  45. bls12-381-js >= "0.4.2"
  46. bls12-381-js-gen >= "0.4.2"
  47. bls12-381-legacy
  48. bls12-381-signature
  49. bls12-381-unix
  50. blurhash
  51. brisk-reconciler
  52. builder-web
  53. bytebuffer
  54. ca-certs
  55. ca-certs-nss
  56. cactus
  57. caldav
  58. calendar >= "3.0.0"
  59. callipyge
  60. camlix
  61. camlkit
  62. camlkit-base
  63. capnp-rpc < "1.2.3"
  64. capnp-rpc-lwt < "0.3.1"
  65. capnp-rpc-mirage >= "0.9.0"
  66. capnp-rpc-unix >= "0.9.0" & < "1.2.3"
  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.1" & < "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-client-lwt
  88. charrua-client-mirage < "0.11.0"
  89. charrua-server >= "1.4.1"
  90. checkseum >= "0.0.3"
  91. cid
  92. clarity-lang
  93. class_group_vdf
  94. cohttp < "6.0.0"
  95. cohttp-curl-async < "6.0.0"
  96. cohttp-curl-lwt < "6.0.0"
  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. conex-nocrypto
  109. conformist
  110. cookie
  111. cow >= "2.2.0"
  112. css
  113. css-parser
  114. cstruct >= "3.3.0"
  115. cstruct-sexp
  116. ctypes-zarith
  117. cuid
  118. curly
  119. current >= "0.4"
  120. current-albatross-deployer
  121. current_git >= "0.6.4"
  122. current_incr
  123. data-encoding
  124. dates_calc
  125. dbase4
  126. decimal >= "0.3.0"
  127. decompress < "1.5.3"
  128. depyt
  129. digestif >= "0.8.1"
  130. dirsp-exchange-kbb2017
  131. dirsp-proscript-mirage
  132. dirsp-ps2ocaml
  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. dkml-package-console
  142. dns >= "4.0.0"
  143. dns-cli
  144. dns-client >= "4.6.0"
  145. dns-forward-lwt-unix
  146. dns-resolver
  147. dns-server
  148. dns-tsig
  149. dnssd
  150. dnssec
  151. docfd >= "2.2.0"
  152. domain-name
  153. dot-merlin-reader = "5.3~5.3preview"
  154. dream
  155. dream-pure
  156. duff
  157. dune-deps >= "1.4.0"
  158. dune-release >= "1.0.0"
  159. duration >= "0.1.1"
  160. echo
  161. eio < "0.12"
  162. eio_linux < "0.12"
  163. eio_windows < "0.12"
  164. emile
  165. encore
  166. eqaf >= "0.5"
  167. equinoxe
  168. equinoxe-cohttp
  169. equinoxe-hlc
  170. ezgzip
  171. ezjsonm
  172. ezjsonm-lwt
  173. FPauth
  174. FPauth-core
  175. FPauth-responses
  176. FPauth-strategies
  177. faraday != "0.2.0"
  178. farfadet
  179. fat-filesystem
  180. ff
  181. ff-pbt
  182. flex-array
  183. fsevents-lwt
  184. functoria
  185. functoria-runtime >= "2.2.0" & < "3.0.1" | = "3.1.2"
  186. fungi
  187. geojson
  188. geoml >= "0.1.1"
  189. git
  190. git-cohttp
  191. git-cohttp-mirage
  192. git-cohttp-unix
  193. git-mirage
  194. git-split
  195. git-unix = "2.0.0" | >= "2.1.1"
  196. gitlab-unix
  197. glicko2
  198. gmap >= "0.3.0"
  199. gobba
  200. gpt
  201. graphql
  202. graphql-async
  203. graphql-cohttp >= "0.13.0"
  204. graphql-lwt
  205. graphql_parser != "0.11.0"
  206. graphql_ppx
  207. h1
  208. h1_parser
  209. h2
  210. hacl
  211. hacl-star >= "0.6.0" & < "0.7.2"
  212. hacl_func
  213. hacl_x25519 >= "0.2.0"
  214. highlexer
  215. hkdf
  216. hockmd
  217. html_of_jsx
  218. http < "6.0.0"
  219. http-multipart-formdata < "2.0.0"
  220. httpaf >= "0.2.0"
  221. httpun
  222. httpun-ws
  223. hvsock
  224. icalendar >= "0.1.4"
  225. imagelib
  226. index
  227. inferno >= "20220603"
  228. influxdb-async
  229. influxdb-lwt
  230. inquire < "0.2.0"
  231. interval-map
  232. iomux
  233. irmin != "2.3.0"
  234. irmin-bench >= "2.7.0"
  235. irmin-chunk >= "2.3.0"
  236. irmin-cli
  237. irmin-containers
  238. irmin-fs >= "2.3.0"
  239. irmin-git >= "2.3.0"
  240. irmin-graphql >= "2.3.0"
  241. irmin-mem >= "2.3.0"
  242. irmin-pack >= "2.4.0" & != "2.6.1"
  243. irmin-pack-tools
  244. irmin-test < "3.4.0"
  245. irmin-tezos
  246. irmin-tezos-utils
  247. irmin-unix >= "2.4.0" & != "2.6.1"
  248. irmin-watcher >= "0.4.0"
  249. jekyll-format
  250. jose
  251. json-data-encoding >= "0.9"
  252. json_decoder
  253. jsonxt
  254. junit_alcotest < "2.1.0"
  255. jwto
  256. kdf
  257. ke >= "0.2"
  258. kkmarkdown
  259. kmt
  260. lambda-runtime
  261. lambda_streams
  262. lambda_streams_async
  263. lambdapi
  264. ledgerwallet-tezos >= "0.2.1" & < "0.4.0"
  265. letters
  266. lmdb >= "1.0"
  267. logical
  268. logtk >= "1.6"
  269. lp
  270. lp-glpk
  271. lp-glpk-js
  272. lp-gurobi
  273. lru
  274. lt-code
  275. luv
  276. mbr-format
  277. mdx >= "1.6.0"
  278. mec
  279. mechaml >= "1.2.1"
  280. merlin >= "4.17.1-414" & < "4.18-414" | >= "5.2.1-502" & < "5.3-502"
  281. merlin-lib >= "4.17.1-414" & < "5.0-502" | >= "5.2.1-502"
  282. metrics
  283. middleware
  284. mimic
  285. minicaml = "0.3.1" | >= "0.4"
  286. mirage >= "4.0.0~beta1"
  287. mirage-block-partition
  288. mirage-block-ramdisk >= "0.6"
  289. mirage-channel >= "4.0.1"
  290. mirage-channel-lwt < "3.1.0"
  291. mirage-crypto-ec >= "0.10.0"
  292. mirage-flow-unix < "1.3.0" | >= "3.0.0"
  293. mirage-fs-mem
  294. mirage-kv >= "2.0.0"
  295. mirage-kv-mem
  296. mirage-kv-unix >= "3.0.0"
  297. mirage-logs >= "0.3.0"
  298. mirage-nat
  299. mirage-net-unix
  300. mirage-runtime >= "4.0.0~beta1" & < "4.5.0"
  301. mirage-tc
  302. mirage-vnetif-stack
  303. mjson
  304. mmdb < "0.3.0"
  305. mnd
  306. mqtt
  307. mrmime >= "0.2.0"
  308. msgpck >= "1.6"
  309. mssql >= "2.0.3"
  310. multibase
  311. multihash
  312. multihash-digestif
  313. multipart-form-data
  314. multipart_form
  315. multipart_form-eio
  316. multipart_form-lwt
  317. named-pipe
  318. nanoid
  319. nbd >= "4.0.3"
  320. nbd-tool
  321. nloge
  322. nocoiner
  323. non_empty_list
  324. OCADml >= "0.6.0"
  325. obatcher
  326. ocaml-index = "1.1"
  327. ocaml-r >= "0.4.0"
  328. ocaml-version >= "3.1.0"
  329. ocamlformat >= "0.13.0" & < "0.25.1"
  330. ocamlformat-lib
  331. ocamlformat-mlx-lib
  332. ocamlformat-rpc < "removed"
  333. ocamline
  334. ocluster < "0.3.0"
  335. octez-bls12-381-hash
  336. octez-bls12-381-signature
  337. octez-libs
  338. octez-mec
  339. odoc < "2.1.0"
  340. ohex
  341. oidc
  342. opam-0install
  343. opam-0install-cudf >= "0.5.0"
  344. opam-compiler
  345. opam-file-format >= "2.1.1"
  346. opentelemetry >= "0.6"
  347. opentelemetry-client-cohttp-lwt >= "0.6"
  348. opentelemetry-client-ocurl >= "0.6"
  349. opentelemetry-cohttp-lwt >= "0.6"
  350. opentelemetry-lwt >= "0.6"
  351. opium
  352. opium-graphql
  353. opium-testing
  354. opium_kernel
  355. orewa
  356. orgeat
  357. ortac-core
  358. osnap < "0.3.0"
  359. osx-acl
  360. osx-attr
  361. osx-cf
  362. osx-fsevents
  363. osx-membership
  364. osx-mount
  365. osx-xattr
  366. otoggl
  367. owl >= "0.7.0" & != "0.9.0" & != "1.0.0"
  368. owl-base < "0.5.0"
  369. owl-ode >= "0.1.0" & != "0.2.0"
  370. owl-symbolic
  371. passmaker
  372. patch < "3.0.0~alpha2"
  373. pbkdf
  374. pecu >= "0.2"
  375. pf-qubes
  376. pg_query >= "0.9.6"
  377. pgx >= "1.0"
  378. pgx_unix >= "1.0"
  379. pgx_value_core
  380. pgx_value_ptime
  381. phylogenetics
  382. piaf
  383. plebeia >= "2.0.0"
  384. polyglot
  385. polynomial
  386. ppx_blob >= "0.3.0"
  387. ppx_deriving_cmdliner
  388. ppx_deriving_ezjsonm
  389. ppx_deriving_qcheck
  390. ppx_deriving_rpc
  391. ppx_deriving_yaml
  392. ppx_inline_alcotest
  393. ppx_marshal
  394. ppx_parser
  395. ppx_protocol_conv >= "5.0.0"
  396. ppx_protocol_conv_json >= "5.0.0"
  397. ppx_protocol_conv_jsonm >= "5.0.0"
  398. ppx_protocol_conv_msgpack >= "5.0.0"
  399. ppx_protocol_conv_xml_light >= "5.0.0"
  400. ppx_protocol_conv_xmlm
  401. ppx_protocol_conv_yaml >= "5.0.0"
  402. ppx_repr
  403. ppx_subliner
  404. ppx_units
  405. ppx_yojson >= "1.1.0"
  406. pratter
  407. prbnmcn-ucb1 >= "0.0.2"
  408. prc
  409. preface
  410. pretty_expressive
  411. prettym
  412. proc-smaps
  413. producer < "0.2.0"
  414. progress
  415. prom
  416. prometheus < "1.2"
  417. prometheus-app
  418. protocell
  419. protocol-9p < "0.11.0" | >= "0.11.2"
  420. protocol-9p-unix
  421. psq
  422. pyast
  423. qcheck >= "0.18"
  424. qcheck-alcotest
  425. qcheck-core >= "0.18"
  426. quickjs
  427. randii
  428. reason-standard
  429. red-black-tree
  430. reparse >= "2.0.0" & < "3.0.0"
  431. reparse-unix < "2.1.0"
  432. resp
  433. resp-unix >= "0.10.0"
  434. resto >= "0.8"
  435. rfc1951 < "1.0.0"
  436. routes < "2.0.0"
  437. rpc >= "7.1.0"
  438. rpclib >= "7.1.0"
  439. rpclib-async
  440. rpclib-lwt >= "7.1.0"
  441. rpmfile < "0.3.0"
  442. rpmfile-eio
  443. rpmfile-unix
  444. SZXX >= "4.0.0"
  445. salsa20
  446. salsa20-core
  447. sanddb >= "0.2"
  448. scrypt-kdf
  449. secp256k1 >= "0.4.1"
  450. secp256k1-internal
  451. semver >= "0.2.1"
  452. sendmail
  453. sendmail-lwt
  454. sendmail-miou-unix
  455. sendmail-mirage
  456. sendmsg
  457. seqes
  458. server-reason-react
  459. session-cookie
  460. session-cookie-async
  461. session-cookie-lwt
  462. sherlodoc
  463. sihl < "0.2.0"
  464. sihl-type
  465. slug
  466. smaws-clients
  467. smaws-lib
  468. smol
  469. smol-helpers
  470. sodium-fmt
  471. solidity-alcotest
  472. spdx_licenses
  473. spectrum >= "0.2.0"
  474. spin >= "0.7.0"
  475. spurs
  476. squirrel
  477. ssh-agent
  478. ssl >= "0.6.0"
  479. stramon-lib
  480. styled-ppx
  481. swapfs
  482. syslog-rfc5424
  483. tcpip < "3.4.2" | >= "6.2.0"
  484. tdigest < "2.1.0"
  485. term-indexing
  486. term-tools
  487. terminal
  488. terminal_size >= "0.1.1"
  489. terminus
  490. terminus-cohttp
  491. terminus-hlc
  492. terml
  493. testo
  494. testo-lwt
  495. textmate-language >= "0.3.0"
  496. textrazor
  497. tezos-base-test-helpers < "17.3"
  498. tezos-bls12-381-polynomial
  499. tezos-client-base < "17.3"
  500. tezos-client-base-unix < "17.3"
  501. tezos-crypto >= "16.0" & < "17.3"
  502. tezos-crypto-dal < "17.3"
  503. tezos-error-monad >= "12.3" & < "17.3"
  504. tezos-event-logging-test-helpers < "17.3"
  505. tezos-plompiler = "0.1.3"
  506. tezos-plonk = "0.1.3"
  507. tezos-shell-services >= "16.0" & < "17.3"
  508. tezos-stdlib != "12.3" & < "17.3"
  509. tezos-test-helpers < "17.3"
  510. tezos-version >= "16.0" & < "17.3"
  511. tezos-webassembly-interpreter < "17.3"
  512. timedesc
  513. timere
  514. timmy
  515. timmy-jsoo
  516. timmy-lwt
  517. timmy-unix
  518. tls >= "0.12.0"
  519. toc
  520. topojson
  521. topojsone
  522. traits
  523. transept
  524. tsort >= "2.2.0"
  525. twostep
  526. type_eq
  527. type_id
  528. typebeat
  529. typeid >= "1.0.1"
  530. tyre >= "0.4"
  531. tyxml >= "4.2.0"
  532. tyxml-jsx
  533. tyxml-ppx >= "4.3.0"
  534. tyxml-syntax
  535. uecc
  536. ulid
  537. universal-portal
  538. unix-dirent
  539. unix-errno
  540. unix-sys-resource
  541. unix-sys-stat
  542. unix-time
  543. unstrctrd
  544. uring < "0.4"
  545. user-agent-parser
  546. uspf
  547. uspf-lwt
  548. uspf-mirage
  549. uspf-unix
  550. utop >= "2.13.0"
  551. validate
  552. validator
  553. vercel
  554. vhd-format-lwt >= "0.13.0"
  555. vpnkit
  556. wayland >= "2.0"
  557. wcwidth
  558. websocketaf
  559. x509 >= "0.7.0"
  560. xapi-rrd
  561. xapi-stdext-date
  562. xapi-stdext-encodings
  563. xapi-stdext-std >= "4.16.0"
  564. yaml
  565. yaml-sexp
  566. yocaml
  567. yocaml_syndication >= "2.0.0"
  568. yocaml_yaml < "2.0.0"
  569. yojson >= "1.6.0"
  570. yojson-five
  571. yuscii >= "0.3.0"
  572. yuujinchou >= "1.0.0"
  573. zar
  574. zed >= "3.2.2"
  575. zlist < "0.4.0"

Conflicts (1)

  1. result < "1.5"
OCaml

Innovation. Community. Security.