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-lwt
  13. arc
  14. archetype >= "1.4.2"
  15. archi
  16. arp
  17. arrakis < "1.1.0"
  18. art
  19. asai
  20. asak
  21. asli >= "0.2.0"
  22. asn1-combinators >= "0.2.5"
  23. atd >= "2.3.3"
  24. atdgen >= "2.10.0"
  25. atdpy
  26. atdts
  27. avro-simple
  28. azure-cosmos-db-eio
  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. bm25
  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
  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
  300. mec
  301. mechaml >= "1.2.1"
  302. merlin = "4.17.1-501"
  303. merlin-lib >= "4.17.1-501"
  304. metrics
  305. mfat
  306. miaou-core
  307. middleware
  308. mimic
  309. minicaml = "0.3.1" | >= "0.4"
  310. mirage >= "4.0.0"
  311. mirage-block-partition
  312. mirage-block-ramdisk
  313. mirage-channel >= "4.0.1"
  314. mirage-crypto-ec
  315. mirage-flow-unix
  316. mirage-kv >= "2.0.0"
  317. mirage-kv-mem
  318. mirage-kv-unix >= "3.0.0"
  319. mirage-logs
  320. mirage-nat
  321. mirage-net-unix
  322. mirage-runtime < "4.7.0"
  323. mirage-tc
  324. mjson
  325. mlgpx
  326. mmdb < "0.3.0"
  327. mnd
  328. mqtt
  329. mrmime >= "0.2.0"
  330. msgpck >= "1.6"
  331. mssql
  332. multibase
  333. multicore-magic
  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. ocaml-ai-sdk
  355. ocaml-index < "5.4.1-503"
  356. ocaml-r >= "0.4.0"
  357. ocaml-version >= "3.5.0"
  358. ocamlformat < "0.25.1"
  359. ocamlformat-lib
  360. ocamlformat-mlx-lib
  361. ocamlformat-rpc < "removed"
  362. ocamline
  363. ocgtk
  364. ochre
  365. ochre-cli
  366. ocluster
  367. ocue
  368. odoc < "2.1.1"
  369. oenv >= "0.1.0"
  370. ohex
  371. oidc
  372. oktree >= "0.2.4"
  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. par_incr
  410. parseff
  411. passe
  412. passmaker
  413. patch
  414. pbkdf
  415. pecu >= "0.2"
  416. pf-qubes
  417. pg_query >= "0.9.6"
  418. pgx
  419. pgx_unix
  420. pgx_value_core
  421. pgx_value_ptime
  422. phylogenetics
  423. piaf
  424. picos < "0.5.0"
  425. picos_meta
  426. piece_rope
  427. plebeia >= "2.0.0"
  428. polyglot
  429. polymarket
  430. polynomial
  431. ppx_blob >= "0.3.0"
  432. ppx_catch
  433. ppx_deriving_cmdliner
  434. ppx_deriving_ezjsonm
  435. ppx_deriving_qcheck
  436. ppx_deriving_rpc
  437. ppx_deriving_yaml
  438. ppx_ezlua
  439. ppx_inline_alcotest
  440. ppx_map
  441. ppx_marshal
  442. ppx_mica
  443. ppx_parser
  444. ppx_protocol_conv
  445. ppx_protocol_conv_json
  446. ppx_protocol_conv_jsonm
  447. ppx_protocol_conv_msgpack
  448. ppx_protocol_conv_xml_light
  449. ppx_protocol_conv_xmlm
  450. ppx_protocol_conv_yaml
  451. ppx_repr
  452. ppx_subliner
  453. ppx_units
  454. ppx_yojson >= "1.1.0"
  455. pratter
  456. prbnmcn-ucb1 >= "0.0.2"
  457. prc
  458. preface
  459. pretty_expressive
  460. prettym
  461. proc-smaps
  462. producer
  463. progress
  464. prom
  465. prometheus < "1.2"
  466. prometheus-app
  467. protocell
  468. protocol-9p < "0.11.0" | >= "0.11.2"
  469. protocol-9p-unix
  470. proton
  471. psq
  472. public-suffix
  473. pxshot
  474. pyast
  475. qcaml
  476. qcheck >= "0.25"
  477. qcheck-alcotest
  478. qcheck-core >= "0.25"
  479. qcow-stream >= "0.13.0"
  480. qcow-tool = "0.13.0"
  481. qcow-types = "0.13.0"
  482. qdrant
  483. query-json
  484. quickjs
  485. quill < "1.0.0~alpha3"
  486. randii
  487. reason-standard
  488. red-black-tree
  489. reparse >= "2.0.0" & < "3.0.0"
  490. reparse-unix < "2.1.0"
  491. resp
  492. resp-unix >= "0.10.0"
  493. resto >= "0.9"
  494. rfc1951 < "1.0.0"
  495. routes < "2.0.0"
  496. rpc
  497. rpclib
  498. rpclib-async
  499. rpclib-lwt
  500. rpmfile < "0.3.0"
  501. rpmfile-eio
  502. rpmfile-unix
  503. rune < "1.0.0~alpha3"
  504. SZXX >= "4.0.0"
  505. saga
  506. salsa20
  507. salsa20-core
  508. sanddb >= "0.2"
  509. saturn != "0.4.1"
  510. saturn_lockfree != "0.4.1"
  511. scrypt-kdf
  512. secp256k1 >= "0.4.1"
  513. secp256k1-internal
  514. semver >= "0.2.1"
  515. sendmail
  516. sendmail-lwt
  517. sendmail-miou-unix
  518. sendmail-mirage
  519. sendmsg
  520. seqes
  521. server-reason-react
  522. session-cookie
  523. session-cookie-async
  524. session-cookie-lwt
  525. shakuhachi
  526. sherlodoc
  527. sihl < "0.2.0"
  528. sihl-type
  529. slug
  530. smaws-clients
  531. smaws-lib
  532. smol
  533. smol-helpers
  534. sodium-fmt
  535. solidity-alcotest
  536. sowilo < "1.0.0~alpha3"
  537. spdx_licenses
  538. spectrum >= "0.2.0"
  539. spectrum_capabilities
  540. spectrum_palette_ppx
  541. spectrum_palettes
  542. spectrum_tools
  543. spin >= "0.7.0"
  544. spurs < "0.1.1"
  545. squirrel
  546. ssh-agent
  547. ssl >= "0.6.0"
  548. starred_ml < "0.0.8"
  549. stem
  550. stramon-lib
  551. stringx
  552. styled-ppx
  553. swapfs
  554. symex >= "0.2"
  555. synchronizer >= "0.2"
  556. syslog-rfc5424 < "0.2"
  557. tabr
  558. talon < "1.0.0~alpha3"
  559. tar-mirage
  560. tcpip
  561. tdigest < "2.1.0"
  562. term-indexing
  563. term-tools
  564. terminal
  565. terminal_size >= "0.1.1"
  566. terminus
  567. terminus-cohttp
  568. terminus-hlc
  569. terml
  570. testo
  571. testo-lwt
  572. textmate-language >= "0.3.0"
  573. textrazor
  574. thread-table
  575. timedesc
  576. timere
  577. timmy
  578. timmy-jsoo
  579. timmy-lwt
  580. timmy-unix
  581. tls >= "0.12.8"
  582. toc
  583. topojson
  584. topojsone
  585. trail
  586. traits
  587. transept
  588. tsort >= "2.2.0"
  589. twostep
  590. type_eq
  591. type_id
  592. typeid >= "1.0.1"
  593. tyre >= "0.4"
  594. tyxml >= "4.2.0"
  595. tyxml-jsx
  596. tyxml-ppx >= "4.3.0"
  597. tyxml-syntax
  598. uecc
  599. ulid
  600. universal-portal
  601. unix-dirent
  602. unix-errno
  603. unix-sys-resource
  604. unix-sys-stat
  605. unix-time
  606. unstrctrd
  607. uring < "0.4"
  608. user-agent-parser
  609. uspf
  610. uspf-lwt
  611. uspf-mirage
  612. uspf-unix
  613. utcp
  614. utop >= "2.13.0"
  615. validate
  616. validator
  617. valkey
  618. vercel
  619. vhd-format-lwt >= "0.13.0"
  620. wayland >= "2.0"
  621. wcwidth
  622. websocketaf
  623. wire
  624. x509 >= "0.7.0"
  625. xapi-rrd
  626. xapi-stdext-date
  627. xapi-stdext-encodings
  628. xapi-stdext-std >= "4.16.0"
  629. xdge
  630. xkbcommon
  631. yaml
  632. yaml-sexp
  633. yocaml
  634. yocaml_syndication >= "2.0.0"
  635. yocaml_yaml < "2.0.0"
  636. yojson >= "1.6.0"
  637. yojson-five
  638. yuscii >= "0.3.0"
  639. yuujinchou >= "1.0.0"
  640. zar
  641. zed >= "3.2.2"
  642. zlist < "0.4.0"

Conflicts (2)

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