package alcotest

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

Install

Dune Dependency

Authors

Maintainers

Sources

alcotest-mirage-1.4.0.tbz
sha256=b1aaccfb2d651c902592c04953e2619169c91f797cf4f04a7dda2cab09b93ec1
sha512=8a13d5d4c8c77f115903e6b8e58160c6e6ec27870440bd38a674e9406f57f1eff299e65f006fd77728015d1a8f0ae30a714fe47e035824950a71ebfdff2cf3c9

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: 16 Apr 2021

README

Alcotest is a lightweight and colourful test framework.

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. See the manpage for details.

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. uutf >= "1.0.0"
  2. stdlib-shims
  3. re >= "1.7.2"
  4. uuidm
  5. cmdliner >= "1.0.3"
  6. astring
  7. fmt >= "0.8.7"
  8. ocaml >= "4.03.0"
  9. dune >= "2.2"

Dev Dependencies (1)

  1. cmdliner with-test & < "1.1.0"

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

Conflicts

None

OCaml

Innovation. Community. Security.