package alcotest

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

Install

dune-project
 Dependency

Authors

Maintainers

Sources

alcotest-1.7.0.tbz
sha256=812bacdb34b45e88995e07d7306bdab2f72479ef1996637f1d5d1f41667902df
sha512=4ae1ba318949ec9db8b87bc8072632a02f0e4003a95ab21e474f5c34c3b5bde867b0194a2d0ea7d9fc4580c70a30ca39287d33a8c134acc7611902f79c7b7ce8

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: 27 Feb 2023

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.1.0"
  6. astring
  7. fmt >= "0.8.7"
  8. ocaml >= "4.05.0"
  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. 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
  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. 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. bizowie-api
  42. blake2
  43. bloomf
  44. bls12-381 < "0.4.1" | >= "3.0.0" & < "18.0"
  45. bls12-381-hash
  46. bls12-381-js >= "0.4.2"
  47. bls12-381-js-gen >= "0.4.2"
  48. bls12-381-legacy
  49. bls12-381-signature
  50. bls12-381-unix
  51. blurhash
  52. bm25
  53. brisk-reconciler
  54. builder-web
  55. bytebuffer
  56. ca-certs
  57. ca-certs-nss
  58. cachet
  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. curly
  121. current
  122. current-albatross-deployer
  123. current_git >= "0.7.1"
  124. current_incr
  125. current_rpc >= "0.7.4"
  126. data-encoding
  127. dates_calc
  128. dbase4
  129. decimal >= "0.3.0"
  130. decompress
  131. depyt
  132. digestif >= "0.9.0"
  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. dmarc
  142. dns >= "4.4.1"
  143. dns-cli
  144. dns-client >= "4.6.3"
  145. dns-forward-lwt-unix
  146. dns-resolver
  147. dns-server
  148. dns-tsig
  149. dnssd
  150. dnssec < "10.2.4"
  151. dockerfile >= "8.2.7" & < "8.3.4"
  152. domain-local-await >= "0.2.1"
  153. domain-local-timeout
  154. domain-name
  155. dream
  156. dream-htmx
  157. dream-pure
  158. dscheck >= "0.1.1"
  159. duff
  160. dune-deps >= "1.4.0"
  161. dune-release >= "1.0.0"
  162. duration
  163. echo
  164. eio < "0.12"
  165. eio_linux
  166. eio_windows
  167. emile
  168. encore
  169. eqaf >= "0.5"
  170. equinoxe
  171. equinoxe-cohttp
  172. equinoxe-hlc
  173. ezgzip
  174. ezjsonm
  175. ezjsonm-lwt
  176. ezlua
  177. FPauth
  178. FPauth-core
  179. FPauth-responses
  180. FPauth-strategies
  181. faraday != "0.2.0"
  182. farfadet
  183. fat-filesystem
  184. fehu < "1.0.0~alpha3"
  185. ff
  186. ff-pbt
  187. flex-array
  188. flux
  189. fluxt
  190. forester >= "5.0"
  191. fsevents-lwt
  192. functoria
  193. fungi
  194. geojson
  195. geoml >= "0.1.1"
  196. git
  197. git-cohttp
  198. git-cohttp-unix
  199. git-kv >= "0.2.0"
  200. git-mirage
  201. git-net
  202. git-split
  203. git-unix
  204. gitlab-unix
  205. glicko2
  206. gmap
  207. gobba
  208. gpt
  209. graphql
  210. graphql-async
  211. graphql-cohttp >= "0.13.0"
  212. graphql-lwt
  213. graphql_parser != "0.11.0"
  214. graphql_ppx
  215. h1
  216. h1_parser
  217. h2
  218. hacl
  219. hacl-star >= "0.6.0" & < "0.7.2"
  220. hacl_func
  221. hacl_x25519
  222. handlebars-ml >= "0.2.1"
  223. highlexer
  224. hkdf
  225. hockmd
  226. html_of_jsx
  227. http
  228. http-multipart-formdata < "2.0.0"
  229. httpaf >= "0.2.0"
  230. httpun
  231. httpun-ws
  232. hugin < "1.0.0~alpha3"
  233. huml
  234. hvsock
  235. icalendar
  236. idna
  237. imagelib
  238. index
  239. inferno >= "20220603"
  240. influxdb-async
  241. influxdb-lwt
  242. inquire < "0.2.0"
  243. intel_hex >= "0.3"
  244. interval-map
  245. iomux
  246. irmin
  247. irmin-bench
  248. irmin-chunk
  249. irmin-cli
  250. irmin-containers
  251. irmin-fs
  252. irmin-git
  253. irmin-graphql
  254. irmin-pack
  255. irmin-pack-tools
  256. irmin-test != "3.6.1"
  257. irmin-tezos
  258. irmin-unix
  259. irmin-watcher
  260. jekyll-format
  261. jose
  262. json-data-encoding >= "0.9" & < "1.1.1"
  263. json_decoder
  264. jsonfeed
  265. jsonschema-core
  266. jsonschema-validation
  267. jsonxt
  268. junit_alcotest < "2.2.0"
  269. jwto
  270. kaun < "1.0.0~alpha3"
  271. kcas >= "0.6.0"
  272. kcas_data >= "0.6.0"
  273. kdf
  274. ke >= "0.2"
  275. kkmarkdown
  276. kmt
  277. lambda-runtime
  278. lambda_streams
  279. lambda_streams_async
  280. lambdapi
  281. layoutz
  282. letters
  283. liquid_ml >= "0.1.3"
  284. lmdb >= "1.0"
  285. lockfree >= "0.3.1"
  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. mazeppa
  296. mbr-format
  297. mdx
  298. mec
  299. mechaml >= "1.2.1"
  300. merlin = "4.17.1-501"
  301. merlin-lib >= "4.17.1-501"
  302. metrics
  303. mfat
  304. miaou-core
  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
  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.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
  417. pgx_unix
  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_parser
  441. ppx_protocol_conv
  442. ppx_protocol_conv_json
  443. ppx_protocol_conv_jsonm
  444. ppx_protocol_conv_msgpack
  445. ppx_protocol_conv_xml_light
  446. ppx_protocol_conv_xmlm
  447. ppx_protocol_conv_yaml
  448. ppx_repr
  449. ppx_subliner
  450. ppx_units
  451. ppx_yojson >= "1.1.0"
  452. pratter
  453. prbnmcn-ucb1 >= "0.0.2"
  454. prc
  455. preface
  456. pretty_expressive
  457. prettym
  458. proc-smaps
  459. producer
  460. progress
  461. prom
  462. prometheus < "1.2"
  463. prometheus-app
  464. protocell
  465. protocol-9p < "0.11.0" | >= "0.11.2"
  466. protocol-9p-unix
  467. proton
  468. psq
  469. public-suffix
  470. pxshot
  471. pyast
  472. qcaml
  473. qcheck >= "0.25"
  474. qcheck-alcotest
  475. qcheck-core >= "0.25"
  476. qcow-stream >= "0.13.0"
  477. qcow-tool = "0.13.0"
  478. qcow-types = "0.13.0"
  479. qdrant
  480. query-json
  481. quickjs
  482. quill < "1.0.0~alpha3"
  483. randii
  484. reason-standard
  485. red-black-tree
  486. reparse >= "2.0.0" & < "3.0.0"
  487. reparse-unix < "2.1.0"
  488. resp
  489. resp-unix >= "0.10.0"
  490. resto >= "0.9"
  491. rfc1951 < "1.0.0"
  492. routes < "2.0.0"
  493. rpc
  494. rpclib
  495. rpclib-async
  496. rpclib-lwt
  497. rpmfile < "0.3.0"
  498. rpmfile-eio
  499. rpmfile-unix
  500. rune < "1.0.0~alpha3"
  501. SZXX >= "4.0.0"
  502. saga
  503. salsa20
  504. salsa20-core
  505. sanddb >= "0.2"
  506. saturn != "0.4.1"
  507. saturn_lockfree != "0.4.1"
  508. scrypt-kdf
  509. secp256k1 >= "0.4.1"
  510. secp256k1-internal
  511. semver >= "0.2.1"
  512. sendmail
  513. sendmail-lwt
  514. sendmail-miou-unix
  515. sendmail-mirage
  516. sendmsg
  517. seqes
  518. server-reason-react
  519. session-cookie
  520. session-cookie-async
  521. session-cookie-lwt
  522. sha256-cng
  523. shakuhachi
  524. sherlodoc
  525. sihl < "0.2.0"
  526. sihl-type
  527. slug
  528. sm
  529. smaws-clients
  530. smaws-lib
  531. smol
  532. smol-helpers
  533. sodium-fmt
  534. solidity-alcotest
  535. sowilo < "1.0.0~alpha3"
  536. spdx_licenses
  537. spectrum >= "0.2.0"
  538. spectrum_capabilities
  539. spectrum_palette_ppx
  540. spectrum_palettes
  541. spectrum_tools
  542. spin >= "0.7.0"
  543. spurs < "0.1.1"
  544. squirrel
  545. ssh-agent
  546. ssl >= "0.6.0"
  547. starred_ml < "0.0.8"
  548. stem
  549. stramon-lib
  550. stringx
  551. styled-ppx
  552. swapfs
  553. symex >= "0.2"
  554. synchronizer >= "0.2"
  555. syslog-rfc5424 < "0.2"
  556. tabr
  557. talon < "1.0.0~alpha3"
  558. tar-mirage
  559. tcpip
  560. tdigest < "2.1.0"
  561. term-indexing
  562. term-tools
  563. terminal
  564. terminal_size >= "0.1.1"
  565. terminus
  566. terminus-cohttp
  567. terminus-hlc
  568. terml
  569. testo
  570. testo-lwt
  571. textmate-language >= "0.3.0"
  572. textrazor
  573. thread-table
  574. timedesc
  575. timere
  576. timmy
  577. timmy-jsoo
  578. timmy-lwt
  579. timmy-unix
  580. tls >= "0.12.8"
  581. toc
  582. topojson
  583. topojsone
  584. trail
  585. traits
  586. transept
  587. tsort >= "2.2.0"
  588. twostep
  589. type_eq
  590. type_id
  591. typeid >= "1.0.1"
  592. tyre >= "0.4"
  593. tyxml >= "4.2.0"
  594. tyxml-jsx
  595. tyxml-ppx >= "4.3.0"
  596. tyxml-syntax
  597. uecc
  598. ulid
  599. universal-portal
  600. unix-dirent
  601. unix-errno
  602. unix-sys-resource
  603. unix-sys-stat
  604. unix-time
  605. unstrctrd
  606. uring < "0.4"
  607. user-agent-parser
  608. uspf
  609. uspf-lwt
  610. uspf-mirage
  611. uspf-unix
  612. utcp
  613. utop >= "2.13.0"
  614. validate
  615. validator
  616. valkey
  617. vercel
  618. vhd-format-lwt >= "0.13.0"
  619. wayland >= "2.0"
  620. wcwidth
  621. websocketaf
  622. wire
  623. x509 >= "0.7.0"
  624. xapi-rrd
  625. xapi-stdext-date
  626. xapi-stdext-encodings
  627. xapi-stdext-std >= "4.16.0"
  628. xdge
  629. yaml
  630. yaml-sexp
  631. yocaml
  632. yocaml_syndication >= "2.0.0"
  633. yocaml_yaml < "2.0.0"
  634. yojson >= "1.6.0"
  635. yojson-five
  636. yuscii >= "0.3.0"
  637. yuujinchou >= "1.0.0"
  638. zar
  639. zed >= "3.2.2"
  640. zlist < "0.4.0"

Conflicts (1)

  1. result < "1.5"