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. azure-cosmos-db-eio
  30. backoff
  31. base32
  32. base64 >= "2.1.2" & < "3.2.0" | >= "3.4.0"
  33. bastet
  34. bastet_lwt
  35. bech32
  36. bechamel >= "0.5.0"
  37. bigarray-overlap
  38. bigstringaf
  39. biotk >= "0.4"
  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. cachet
  57. cachet-lwt
  58. cachet-solo5
  59. cactus
  60. caldav
  61. calendar >= "3.0.0"
  62. calendars >= "2.0.0"
  63. callipyge
  64. camlix
  65. camlkit
  66. camlkit-base
  67. capnp-rpc
  68. capnp-rpc-unix
  69. caqti >= "1.7.0"
  70. caqti-async >= "1.7.0"
  71. caqti-driver-mariadb >= "1.7.0"
  72. caqti-driver-postgresql >= "1.7.0"
  73. caqti-driver-sqlite3 >= "1.7.0"
  74. caqti-dynload = "2.0.1"
  75. caqti-eio
  76. caqti-lwt >= "1.7.0"
  77. caqti-miou
  78. carray
  79. carton < "1.0.0"
  80. carton-git
  81. carton-lwt >= "0.4.3" & < "1.0.0"
  82. catala >= "0.6.0"
  83. cborl
  84. cf-lwt
  85. chacha
  86. chamelon
  87. chamelon-unix
  88. charrua-client
  89. charrua-server
  90. checked_oint
  91. checkseum >= "0.0.3"
  92. cid
  93. clarity-lang
  94. class_group_vdf
  95. cohttp
  96. cohttp-curl-async
  97. cohttp-curl-lwt
  98. cohttp-eio >= "6.0.0~beta2"
  99. colombe >= "0.2.0"
  100. color
  101. commons
  102. conan
  103. conan-cli
  104. conan-database
  105. conan-lwt
  106. conan-unix
  107. conex < "0.10.0"
  108. conex-mirage-crypto
  109. conformist
  110. cookie
  111. corosync
  112. cow >= "2.2.0"
  113. crockford
  114. css
  115. css-parser
  116. cstruct
  117. cstruct-sexp
  118. ctypes-zarith
  119. cuid
  120. cure2
  121. curly
  122. current
  123. current-albatross-deployer
  124. current_git >= "0.7.1"
  125. current_incr
  126. current_rpc >= "0.7.4"
  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 < "10.2.4"
  152. dockerfile >= "8.2.7" & < "8.3.4"
  153. domain-local-await >= "0.2.1"
  154. domain-local-timeout
  155. domain-name
  156. dream
  157. dream-htmx
  158. dream-pure
  159. dscheck >= "0.1.1"
  160. duff
  161. dune-deps >= "1.4.0"
  162. dune-release >= "1.0.0"
  163. duration
  164. echo
  165. eio < "0.12"
  166. eio_linux
  167. eio_windows
  168. emile
  169. encore
  170. eqaf >= "0.5"
  171. equinoxe
  172. equinoxe-cohttp
  173. equinoxe-hlc
  174. ezgzip
  175. ezjsonm
  176. ezjsonm-lwt
  177. ezlua
  178. FPauth
  179. FPauth-core
  180. FPauth-responses
  181. FPauth-strategies
  182. faraday != "0.2.0"
  183. farfadet
  184. fat-filesystem
  185. fehu < "1.0.0~alpha3"
  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 < "1.0.0~alpha3"
  235. huml
  236. hvsock
  237. icalendar
  238. idna
  239. imagelib
  240. index
  241. inferno >= "20220603"
  242. influxdb-async
  243. influxdb-lwt
  244. inquire < "0.2.0"
  245. intel_hex >= "0.3"
  246. interval-map
  247. iomux
  248. irmin
  249. irmin-bench
  250. irmin-chunk
  251. irmin-cli
  252. irmin-containers
  253. irmin-fs
  254. irmin-git
  255. irmin-graphql
  256. irmin-pack
  257. irmin-pack-tools
  258. irmin-test != "3.6.1"
  259. irmin-tezos
  260. irmin-unix
  261. irmin-watcher
  262. jekyll-format
  263. jose
  264. json-data-encoding >= "0.9" & < "1.1.1"
  265. json_decoder
  266. jsonfeed
  267. jsonschema-core
  268. jsonschema-validation
  269. jsonxt
  270. junit_alcotest < "2.3.0"
  271. jwto
  272. kaun < "1.0.0~alpha3"
  273. kcas >= "0.6.0"
  274. kcas_data >= "0.6.0"
  275. kdf
  276. ke >= "0.2"
  277. kkmarkdown
  278. kmt
  279. lambda-runtime
  280. lambda_streams
  281. lambda_streams_async
  282. lambdapi
  283. layoutz
  284. letters
  285. liquid_ml >= "0.1.3"
  286. lmdb >= "1.0"
  287. lockfree >= "0.3.1"
  288. logical
  289. logtk >= "1.6"
  290. lp
  291. lp-glpk
  292. lp-glpk-js < "0.5.0"
  293. lp-gurobi < "0.5.0"
  294. lru
  295. lt-code
  296. luv
  297. mazeppa
  298. mbr-format
  299. mdx >= "1.6.0"
  300. mec
  301. mechaml >= "1.2.1"
  302. merlin = "4.17.1-501"
  303. merlin-lib >= "4.17.1-501"
  304. metrics
  305. middleware
  306. mimic
  307. minicaml = "0.3.1" | >= "0.4"
  308. mirage >= "4.0.0"
  309. mirage-block-partition
  310. mirage-block-ramdisk
  311. mirage-channel >= "4.0.1"
  312. mirage-crypto-ec
  313. mirage-flow-unix
  314. mirage-kv >= "2.0.0"
  315. mirage-kv-mem
  316. mirage-kv-unix >= "3.0.0"
  317. mirage-logs
  318. mirage-nat
  319. mirage-net-unix
  320. mirage-runtime < "4.7.0"
  321. mirage-tc
  322. mjson
  323. mlgpx
  324. mmdb < "0.3.0"
  325. mnd
  326. mqtt
  327. mrmime >= "0.2.0"
  328. msgpck >= "1.6"
  329. mssql >= "2.0.3"
  330. multibase
  331. multicore-magic
  332. multihash
  333. multihash-digestif
  334. multipart-form-data
  335. multipart_form
  336. multipart_form-eio
  337. multipart_form-lwt
  338. multipart_form-miou
  339. named-pipe
  340. nanoid
  341. nbd >= "4.0.3"
  342. nbd-tool
  343. neo4j_bolt
  344. nloge
  345. nocoiner
  346. non_empty_list
  347. nx < "1.0.0~alpha3"
  348. nx-datasets
  349. nx-text
  350. OCADml >= "0.6.0"
  351. obatcher
  352. ocaml-ai-sdk
  353. ocaml-index < "5.4.1-503"
  354. ocaml-r >= "0.4.0"
  355. ocaml-version >= "3.5.0"
  356. ocamlformat >= "0.13.0" & < "0.25.1"
  357. ocamlformat-lib
  358. ocamlformat-mlx-lib
  359. ocamlformat-rpc < "removed"
  360. ocamline
  361. ocgtk
  362. ochre
  363. ochre-cli
  364. ocluster
  365. ocue
  366. odoc < "2.1.1"
  367. oenv >= "0.1.0"
  368. ohex
  369. oidc
  370. oktree >= "0.2.4"
  371. opam-0install
  372. opam-0install-cudf >= "0.5.0"
  373. opam-compiler
  374. opam-file-format >= "2.1.1"
  375. opam-repomin
  376. opencage
  377. opentelemetry >= "0.6"
  378. opentelemetry-client
  379. opentelemetry-client-cohttp-eio
  380. opentelemetry-client-cohttp-lwt >= "0.6"
  381. opentelemetry-client-ocurl >= "0.6"
  382. opentelemetry-client-ocurl-lwt
  383. opentelemetry-cohttp-lwt >= "0.6"
  384. opentelemetry-logs
  385. opentelemetry-lwt >= "0.6"
  386. opium
  387. opium-graphql
  388. opium-testing
  389. opium_kernel
  390. orewa
  391. orgeat
  392. ortac-core
  393. ortac-wrapper
  394. osnap < "0.3.0"
  395. osx-acl
  396. osx-attr
  397. osx-cf
  398. osx-fsevents
  399. osx-membership
  400. osx-mount
  401. osx-xattr
  402. otoggl
  403. owl >= "0.7.0" & != "0.9.0" & != "1.0.0"
  404. owl-base < "0.5.0"
  405. owl-ode >= "0.1.0" & != "0.2.0"
  406. owl-symbolic
  407. par_incr
  408. parseff
  409. passe
  410. passmaker
  411. patch
  412. pbkdf
  413. pecu >= "0.2"
  414. pf-qubes
  415. pg_query >= "0.9.6"
  416. pgx >= "1.0"
  417. pgx_unix >= "1.0"
  418. pgx_value_core
  419. pgx_value_ptime
  420. phylogenetics
  421. piaf
  422. picos < "0.5.0"
  423. picos_meta
  424. piece_rope
  425. plebeia >= "2.0.0"
  426. polyglot
  427. polymarket
  428. polynomial
  429. ppx_blob >= "0.3.0"
  430. ppx_catch
  431. ppx_deriving_cmdliner
  432. ppx_deriving_ezjsonm
  433. ppx_deriving_qcheck
  434. ppx_deriving_rpc
  435. ppx_deriving_yaml
  436. ppx_ezlua
  437. ppx_inline_alcotest
  438. ppx_map
  439. ppx_marshal
  440. ppx_mica
  441. ppx_parser
  442. ppx_protocol_conv >= "5.0.0"
  443. ppx_protocol_conv_json >= "5.0.0"
  444. ppx_protocol_conv_jsonm >= "5.0.0"
  445. ppx_protocol_conv_msgpack >= "5.0.0"
  446. ppx_protocol_conv_xml_light >= "5.0.0"
  447. ppx_protocol_conv_xmlm
  448. ppx_protocol_conv_yaml >= "5.0.0"
  449. ppx_repr
  450. ppx_subliner
  451. ppx_units
  452. ppx_yojson >= "1.1.0"
  453. pratter
  454. prbnmcn-ucb1 >= "0.0.2"
  455. prc
  456. preface
  457. pretty_expressive
  458. prettym
  459. proc-smaps
  460. producer
  461. progress
  462. prom
  463. prometheus < "1.2"
  464. prometheus-app
  465. protocell
  466. protocol-9p < "0.11.0" | >= "0.11.2"
  467. protocol-9p-unix
  468. proton
  469. psq
  470. public-suffix
  471. pxshot
  472. pyast
  473. qcaml
  474. qcheck >= "0.25"
  475. qcheck-alcotest
  476. qcheck-core >= "0.25"
  477. qcow-stream >= "0.13.0"
  478. qcow-tool = "0.13.0"
  479. qcow-types = "0.13.0"
  480. qdrant
  481. query-json
  482. quickjs
  483. quill < "1.0.0~alpha3"
  484. randii
  485. reason-standard
  486. red-black-tree
  487. reparse >= "2.0.0" & < "3.0.0"
  488. reparse-unix < "2.1.0"
  489. resp
  490. resp-unix >= "0.10.0"
  491. resto >= "0.9"
  492. rfc1951 < "1.0.0"
  493. routes < "2.0.0"
  494. rpc
  495. rpclib
  496. rpclib-async
  497. rpclib-lwt
  498. rpmfile < "0.3.0"
  499. rpmfile-eio
  500. rpmfile-unix
  501. rune < "1.0.0~alpha3"
  502. SZXX >= "4.0.0"
  503. saga
  504. salsa20
  505. salsa20-core
  506. sanddb >= "0.2"
  507. saturn != "0.4.1"
  508. saturn_lockfree != "0.4.1"
  509. scrypt-kdf
  510. secp256k1 >= "0.4.1"
  511. secp256k1-internal
  512. semver >= "0.2.1"
  513. sendmail
  514. sendmail-lwt
  515. sendmail-miou-unix
  516. sendmail-mirage
  517. sendmsg
  518. seqes
  519. server-reason-react
  520. session-cookie
  521. session-cookie-async
  522. session-cookie-lwt
  523. shakuhachi
  524. sherlodoc
  525. sihl < "0.2.0"
  526. sihl-type
  527. slug
  528. smaws-clients
  529. smaws-lib
  530. smol
  531. smol-helpers
  532. sodium-fmt
  533. solidity-alcotest
  534. sowilo < "1.0.0~alpha3"
  535. spdx_licenses
  536. spectrum >= "0.2.0"
  537. spectrum_capabilities
  538. spectrum_palette_ppx
  539. spectrum_palettes
  540. spectrum_tools
  541. spin >= "0.7.0"
  542. spurs < "0.1.1"
  543. squirrel
  544. ssh-agent
  545. ssl >= "0.6.0"
  546. starred_ml < "0.0.8"
  547. stramon-lib
  548. stringx
  549. styled-ppx
  550. swapfs
  551. symex >= "0.2"
  552. synchronizer >= "0.2"
  553. syslog-rfc5424 < "0.2"
  554. tabr
  555. talon < "1.0.0~alpha3"
  556. tar-mirage
  557. tcpip
  558. tdigest < "2.1.0"
  559. term-indexing
  560. term-tools
  561. terminal
  562. terminal_size >= "0.1.1"
  563. terminus
  564. terminus-cohttp
  565. terminus-hlc
  566. terml
  567. testo
  568. testo-lwt
  569. textmate-language >= "0.3.0"
  570. textrazor
  571. thread-table
  572. timedesc
  573. timere
  574. timmy
  575. timmy-jsoo
  576. timmy-lwt
  577. timmy-unix
  578. tls >= "0.12.8"
  579. toc
  580. topojson
  581. topojsone
  582. trail
  583. traits
  584. transept
  585. tsort >= "2.2.0"
  586. twostep
  587. type_eq
  588. type_id
  589. typeid >= "1.0.1"
  590. tyre >= "0.4"
  591. tyxml >= "4.2.0"
  592. tyxml-jsx
  593. tyxml-ppx >= "4.3.0"
  594. tyxml-syntax
  595. uecc
  596. ulid
  597. universal-portal
  598. unix-dirent
  599. unix-errno
  600. unix-sys-resource
  601. unix-sys-stat
  602. unix-time
  603. unstrctrd
  604. uring < "0.4"
  605. user-agent-parser
  606. uspf
  607. uspf-lwt
  608. uspf-mirage
  609. uspf-unix
  610. utcp
  611. utop >= "2.13.0"
  612. validate
  613. validator
  614. vercel
  615. vhd-format-lwt >= "0.13.0"
  616. wayland >= "2.0"
  617. wcwidth
  618. websocketaf
  619. wire
  620. x509 >= "0.7.0"
  621. xapi-rrd
  622. xapi-stdext-date
  623. xapi-stdext-encodings
  624. xapi-stdext-std >= "4.16.0"
  625. xdge
  626. xkbcommon
  627. yaml
  628. yaml-sexp
  629. yocaml
  630. yocaml_syndication >= "2.0.0"
  631. yocaml_yaml < "2.0.0"
  632. yojson >= "1.6.0"
  633. yojson-five
  634. yuscii >= "0.3.0"
  635. yuujinchou >= "1.0.0"
  636. zar
  637. zed >= "3.2.2"
  638. zlist < "0.4.0"

Conflicts (2)

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