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. 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. bm25
  52. brisk-reconciler
  53. builder-web
  54. bytebuffer
  55. ca-certs
  56. ca-certs-nss
  57. cachet
  58. cactus
  59. caldav
  60. calendar >= "3.0.0"
  61. calendars >= "2.0.0"
  62. callipyge
  63. camlix
  64. camlkit
  65. camlkit-base
  66. capnp-rpc
  67. capnp-rpc-unix
  68. caqti >= "1.7.0"
  69. caqti-async >= "1.7.0"
  70. caqti-driver-mariadb >= "1.7.0"
  71. caqti-driver-postgresql >= "1.7.0"
  72. caqti-driver-sqlite3 >= "1.7.0"
  73. caqti-dynload = "2.0.1"
  74. caqti-eio
  75. caqti-lwt >= "1.7.0"
  76. caqti-miou
  77. carray
  78. carton < "1.0.0"
  79. carton-git
  80. carton-lwt >= "0.4.3" & < "1.0.0"
  81. catala >= "0.6.0"
  82. cborl
  83. cf-lwt
  84. chacha
  85. chamelon
  86. chamelon-unix
  87. charrua-client
  88. charrua-server
  89. checked_oint
  90. checkseum >= "0.0.3"
  91. cid
  92. clarity-lang
  93. class_group_vdf
  94. cohttp
  95. cohttp-curl-async
  96. cohttp-curl-lwt
  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. conformist
  109. cookie
  110. corosync
  111. cow >= "2.2.0"
  112. crockford
  113. css
  114. css-parser
  115. cstruct
  116. cstruct-sexp
  117. ctypes-zarith
  118. cuid
  119. curly
  120. current
  121. current-albatross-deployer
  122. current_git >= "0.7.1"
  123. current_incr
  124. current_rpc >= "0.7.4"
  125. data-encoding
  126. dates_calc
  127. dbase4
  128. decimal >= "0.3.0"
  129. decompress
  130. depyt
  131. digestif >= "0.9.0"
  132. dispatch >= "0.4.1"
  133. dkim
  134. dkim-bin
  135. dkim-mirage
  136. dkml-dune-dsl-show
  137. dkml-install
  138. dkml-install-installer
  139. dkml-install-runner
  140. dmarc
  141. dns >= "4.4.1"
  142. dns-cli
  143. dns-client >= "4.6.3"
  144. dns-forward-lwt-unix
  145. dns-resolver
  146. dns-server
  147. dns-tsig
  148. dnssd
  149. dnssec < "10.2.4"
  150. dockerfile >= "8.2.7" & < "8.3.4"
  151. domain-local-await >= "0.2.1"
  152. domain-local-timeout
  153. domain-name
  154. dream
  155. dream-htmx
  156. dream-pure
  157. dscheck >= "0.1.1"
  158. duff
  159. dune-deps >= "1.4.0"
  160. dune-release >= "1.0.0"
  161. duration
  162. echo
  163. eio < "0.12"
  164. eio_linux
  165. eio_windows
  166. emile
  167. encore
  168. eqaf >= "0.5"
  169. equinoxe
  170. equinoxe-cohttp
  171. equinoxe-hlc
  172. ezgzip
  173. ezjsonm
  174. ezjsonm-lwt
  175. ezlua
  176. FPauth
  177. FPauth-core
  178. FPauth-responses
  179. FPauth-strategies
  180. faraday != "0.2.0"
  181. farfadet
  182. fat-filesystem
  183. fehu < "1.0.0~alpha3"
  184. ff
  185. ff-pbt
  186. flex-array
  187. flux
  188. fluxt
  189. forester >= "5.0"
  190. fsevents-lwt
  191. functoria
  192. fungi
  193. geojson
  194. geoml >= "0.1.1"
  195. git
  196. git-cohttp
  197. git-cohttp-unix
  198. git-kv >= "0.2.0"
  199. git-mirage
  200. git-net
  201. git-split
  202. git-unix
  203. gitlab-unix
  204. glicko2
  205. gmap
  206. gobba
  207. gpt
  208. graphql
  209. graphql-async
  210. graphql-cohttp >= "0.13.0"
  211. graphql-lwt
  212. graphql_parser != "0.11.0"
  213. graphql_ppx
  214. h1
  215. h1_parser
  216. h2
  217. hacl
  218. hacl-star >= "0.6.0" & < "0.7.2"
  219. hacl_func
  220. hacl_x25519
  221. handlebars-ml >= "0.2.1"
  222. highlexer
  223. hkdf
  224. hockmd
  225. html_of_jsx
  226. http
  227. http-multipart-formdata < "2.0.0"
  228. httpaf >= "0.2.0"
  229. httpun
  230. httpun-ws
  231. hugin < "1.0.0~alpha3"
  232. huml
  233. hvsock
  234. icalendar
  235. idna
  236. imagelib
  237. index
  238. inferno >= "20220603"
  239. influxdb-async
  240. influxdb-lwt
  241. inquire < "0.2.0"
  242. intel_hex >= "0.3"
  243. interval-map
  244. iomux
  245. irmin
  246. irmin-bench
  247. irmin-chunk
  248. irmin-cli
  249. irmin-containers
  250. irmin-fs
  251. irmin-git
  252. irmin-graphql
  253. irmin-pack
  254. irmin-pack-tools
  255. irmin-test != "3.6.1"
  256. irmin-tezos
  257. irmin-unix
  258. irmin-watcher
  259. jekyll-format
  260. jose
  261. json-data-encoding >= "0.9" & < "1.1.1"
  262. json_decoder
  263. jsonfeed
  264. jsonschema-core
  265. jsonschema-validation
  266. jsonxt
  267. junit_alcotest < "2.2.0"
  268. jwto
  269. kaun < "1.0.0~alpha3"
  270. kcas >= "0.6.0"
  271. kcas_data >= "0.6.0"
  272. kdf
  273. ke >= "0.2"
  274. kkmarkdown
  275. kmt
  276. lambda-runtime
  277. lambda_streams
  278. lambda_streams_async
  279. lambdapi
  280. layoutz
  281. letters
  282. liquid_ml >= "0.1.3"
  283. lmdb >= "1.0"
  284. lockfree >= "0.3.1"
  285. logical
  286. logtk
  287. lp
  288. lp-glpk
  289. lp-glpk-js < "0.5.0"
  290. lp-gurobi < "0.5.0"
  291. lru
  292. lt-code
  293. luv
  294. mazeppa
  295. mbr-format
  296. mdx
  297. mec
  298. mechaml >= "1.2.1"
  299. merlin = "4.17.1-501"
  300. merlin-lib >= "4.17.1-501"
  301. metrics
  302. mfat
  303. miaou-core
  304. middleware
  305. mimic
  306. minicaml = "0.3.1" | >= "0.4"
  307. mirage >= "4.0.0"
  308. mirage-block-partition
  309. mirage-block-ramdisk
  310. mirage-channel >= "4.0.1"
  311. mirage-crypto-ec
  312. mirage-flow-unix
  313. mirage-kv >= "2.0.0"
  314. mirage-kv-mem
  315. mirage-kv-unix >= "3.0.0"
  316. mirage-logs
  317. mirage-nat
  318. mirage-net-unix
  319. mirage-runtime < "4.7.0"
  320. mirage-tc
  321. mjson
  322. mlgpx
  323. mmdb < "0.3.0"
  324. mnd
  325. mqtt
  326. mrmime >= "0.2.0"
  327. msgpck >= "1.6"
  328. mssql
  329. multibase
  330. multicore-magic
  331. multihash
  332. multihash-digestif
  333. multipart-form-data
  334. multipart_form
  335. multipart_form-eio
  336. multipart_form-lwt
  337. multipart_form-miou
  338. named-pipe
  339. nanoid
  340. nbd >= "4.0.3"
  341. nbd-tool
  342. neo4j_bolt
  343. nloge
  344. nocoiner
  345. non_empty_list
  346. nx < "1.0.0~alpha3"
  347. nx-datasets
  348. nx-text
  349. OCADml >= "0.6.0"
  350. obatcher
  351. ocaml-ai-sdk
  352. ocaml-index < "5.4.1-503"
  353. ocaml-r >= "0.4.0"
  354. ocaml-version >= "3.5.0"
  355. ocamlformat < "0.25.1"
  356. ocamlformat-lib
  357. ocamlformat-mlx-lib
  358. ocamlformat-rpc < "removed"
  359. ocamline
  360. ocgtk
  361. ochre
  362. ochre-cli
  363. ocluster
  364. ocue
  365. odoc < "2.1.1"
  366. oenv >= "0.1.0"
  367. ohex
  368. oidc
  369. oktree >= "0.2.4"
  370. opam-0install
  371. opam-0install-cudf >= "0.5.0"
  372. opam-compiler
  373. opam-file-format >= "2.1.1"
  374. opam-repomin
  375. opencage
  376. opentelemetry >= "0.6"
  377. opentelemetry-client
  378. opentelemetry-client-cohttp-eio
  379. opentelemetry-client-cohttp-lwt >= "0.6"
  380. opentelemetry-client-ocurl >= "0.6"
  381. opentelemetry-client-ocurl-lwt
  382. opentelemetry-cohttp-lwt >= "0.6"
  383. opentelemetry-logs
  384. opentelemetry-lwt >= "0.6"
  385. opium
  386. opium-graphql
  387. opium-testing
  388. opium_kernel
  389. orewa
  390. orgeat
  391. ortac-core
  392. ortac-wrapper
  393. osnap < "0.3.0"
  394. osx-acl
  395. osx-attr
  396. osx-cf
  397. osx-fsevents
  398. osx-membership
  399. osx-mount
  400. osx-xattr
  401. otoggl
  402. owl >= "0.7.0" & != "0.9.0" & != "1.0.0"
  403. owl-base < "0.5.0"
  404. owl-ode >= "0.1.0" & != "0.2.0"
  405. owl-symbolic
  406. par_incr
  407. parseff
  408. passe
  409. passmaker
  410. patch
  411. pbkdf
  412. pecu >= "0.2"
  413. pf-qubes
  414. pg_query >= "0.9.6"
  415. pgx
  416. pgx_unix
  417. pgx_value_core
  418. pgx_value_ptime
  419. phylogenetics
  420. piaf
  421. picos < "0.5.0"
  422. picos_meta
  423. piece_rope
  424. plebeia >= "2.0.0"
  425. polyglot
  426. polymarket
  427. polynomial
  428. ppx_blob >= "0.3.0"
  429. ppx_catch
  430. ppx_deriving_cmdliner
  431. ppx_deriving_ezjsonm
  432. ppx_deriving_qcheck
  433. ppx_deriving_rpc
  434. ppx_deriving_yaml
  435. ppx_ezlua
  436. ppx_inline_alcotest
  437. ppx_map
  438. ppx_marshal
  439. ppx_parser
  440. ppx_protocol_conv
  441. ppx_protocol_conv_json
  442. ppx_protocol_conv_jsonm
  443. ppx_protocol_conv_msgpack
  444. ppx_protocol_conv_xml_light
  445. ppx_protocol_conv_xmlm
  446. ppx_protocol_conv_yaml
  447. ppx_repr
  448. ppx_subliner
  449. ppx_units
  450. ppx_yojson >= "1.1.0"
  451. pratter
  452. prbnmcn-ucb1 >= "0.0.2"
  453. prc
  454. preface
  455. pretty_expressive
  456. prettym
  457. proc-smaps
  458. producer
  459. progress
  460. prom
  461. prometheus < "1.2"
  462. prometheus-app
  463. protocell
  464. protocol-9p < "0.11.0" | >= "0.11.2"
  465. protocol-9p-unix
  466. proton
  467. psq
  468. public-suffix
  469. pxshot
  470. pyast
  471. qcaml
  472. qcheck >= "0.25"
  473. qcheck-alcotest
  474. qcheck-core >= "0.25"
  475. qcow-stream >= "0.13.0"
  476. qcow-tool = "0.13.0"
  477. qcow-types = "0.13.0"
  478. qdrant
  479. query-json
  480. quickjs
  481. quill < "1.0.0~alpha3"
  482. randii
  483. reason-standard
  484. red-black-tree
  485. reparse >= "2.0.0" & < "3.0.0"
  486. reparse-unix < "2.1.0"
  487. resp
  488. resp-unix >= "0.10.0"
  489. resto >= "0.9"
  490. rfc1951 < "1.0.0"
  491. routes < "2.0.0"
  492. rpc
  493. rpclib
  494. rpclib-async
  495. rpclib-lwt
  496. rpmfile < "0.3.0"
  497. rpmfile-eio
  498. rpmfile-unix
  499. rune < "1.0.0~alpha3"
  500. SZXX >= "4.0.0"
  501. saga
  502. salsa20
  503. salsa20-core
  504. sanddb >= "0.2"
  505. saturn != "0.4.1"
  506. saturn_lockfree != "0.4.1"
  507. scrypt-kdf
  508. secp256k1 >= "0.4.1"
  509. secp256k1-internal
  510. semver >= "0.2.1"
  511. sendmail
  512. sendmail-lwt
  513. sendmail-miou-unix
  514. sendmail-mirage
  515. sendmsg
  516. seqes
  517. server-reason-react
  518. session-cookie
  519. session-cookie-async
  520. session-cookie-lwt
  521. shakuhachi
  522. sherlodoc
  523. sihl < "0.2.0"
  524. sihl-type
  525. slug
  526. sm
  527. smaws-clients
  528. smaws-lib
  529. smol
  530. smol-helpers
  531. sodium-fmt
  532. solidity-alcotest
  533. sowilo < "1.0.0~alpha3"
  534. spdx_licenses
  535. spectrum >= "0.2.0"
  536. spectrum_capabilities
  537. spectrum_palette_ppx
  538. spectrum_palettes
  539. spectrum_tools
  540. spin >= "0.7.0"
  541. spurs < "0.1.1"
  542. squirrel
  543. ssh-agent
  544. ssl >= "0.6.0"
  545. starred_ml < "0.0.8"
  546. stem
  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. valkey
  615. vercel
  616. vhd-format-lwt >= "0.13.0"
  617. wayland >= "2.0"
  618. wcwidth
  619. websocketaf
  620. wire
  621. x509 >= "0.7.0"
  622. xapi-rrd
  623. xapi-stdext-date
  624. xapi-stdext-encodings
  625. xapi-stdext-std >= "4.16.0"
  626. xdge
  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 (1)

  1. result < "1.5"