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. ecma-regex
  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.2.0"
  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" & < "0.7.2"
  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. httpun
  232. httpun-ws
  233. hugin < "1.0.0~alpha3"
  234. huml
  235. hvsock
  236. icalendar
  237. idna
  238. imagelib
  239. index
  240. inferno >= "20220603"
  241. influxdb-async
  242. influxdb-lwt
  243. inquire < "0.2.0"
  244. intel_hex >= "0.3"
  245. interval-map
  246. iomux
  247. irmin
  248. irmin-bench
  249. irmin-chunk
  250. irmin-cli
  251. irmin-containers
  252. irmin-fs
  253. irmin-git
  254. irmin-graphql
  255. irmin-pack
  256. irmin-pack-tools
  257. irmin-test != "3.6.1"
  258. irmin-tezos
  259. irmin-unix
  260. irmin-watcher
  261. jekyll-format
  262. jose
  263. json-data-encoding >= "0.9" & < "1.1.1"
  264. json_decoder
  265. jsonfeed
  266. jsonschema-core
  267. jsonschema-validation
  268. jsonxt
  269. junit_alcotest < "2.2.0"
  270. jwto
  271. kaun < "1.0.0~alpha3"
  272. kcas >= "0.6.0"
  273. kcas_data >= "0.6.0"
  274. kdf
  275. ke >= "0.2"
  276. kkmarkdown
  277. kmt
  278. lambda-runtime
  279. lambda_streams
  280. lambda_streams_async
  281. lambdapi
  282. layoutz
  283. letters
  284. liquid_ml >= "0.1.3"
  285. lmdb >= "1.0"
  286. lockfree >= "0.3.1"
  287. logical
  288. logtk
  289. lp
  290. lp-glpk
  291. lp-glpk-js < "0.5.0"
  292. lp-gurobi < "0.5.0"
  293. lru
  294. lt-code
  295. luv
  296. mazeppa
  297. mbr-format
  298. mdx
  299. mec
  300. mechaml >= "1.2.1"
  301. merlin = "4.17.1-501"
  302. merlin-lib >= "4.17.1-501"
  303. metrics
  304. mfat
  305. miaou-core
  306. middleware
  307. mimic
  308. minicaml = "0.3.1" | >= "0.4"
  309. mirage >= "4.0.0"
  310. mirage-block-partition
  311. mirage-block-ramdisk
  312. mirage-channel >= "4.0.1"
  313. mirage-crypto-ec
  314. mirage-flow-unix
  315. mirage-kv >= "2.0.0"
  316. mirage-kv-mem
  317. mirage-kv-unix >= "3.0.0"
  318. mirage-logs
  319. mirage-nat
  320. mirage-net-unix
  321. mirage-runtime < "4.7.0"
  322. mirage-tc
  323. mjson
  324. mlgpx
  325. mmdb < "0.3.0"
  326. mnd
  327. mqtt
  328. mrmime >= "0.2.0"
  329. msgpck >= "1.6"
  330. mssql
  331. multibase
  332. multicore-magic
  333. multihash
  334. multihash-digestif
  335. multipart-form-data
  336. multipart_form
  337. multipart_form-eio
  338. multipart_form-lwt
  339. multipart_form-miou
  340. named-pipe
  341. nanoid
  342. nbd >= "4.0.3"
  343. nbd-tool
  344. neo4j_bolt
  345. nloge
  346. nocoiner
  347. non_empty_list
  348. nx < "1.0.0~alpha3"
  349. nx-datasets
  350. nx-text
  351. OCADml >= "0.6.0"
  352. obatcher
  353. ocaml-ai-sdk
  354. ocaml-index < "5.4.1-503"
  355. ocaml-r >= "0.4.0"
  356. ocaml-version >= "3.5.0"
  357. ocamlformat < "0.25.1"
  358. ocamlformat-lib
  359. ocamlformat-mlx-lib
  360. ocamlformat-rpc < "removed"
  361. ocamline
  362. ocgtk
  363. ochre
  364. ochre-cli
  365. ocluster
  366. ocue
  367. odoc < "2.1.1"
  368. oenv >= "0.1.0"
  369. ohex
  370. oidc
  371. oktree >= "0.2.4"
  372. opam-0install
  373. opam-0install-cudf >= "0.5.0"
  374. opam-compiler
  375. opam-file-format >= "2.1.1"
  376. opam-repomin
  377. opencage
  378. opentelemetry >= "0.6"
  379. opentelemetry-client
  380. opentelemetry-client-cohttp-eio
  381. opentelemetry-client-cohttp-lwt >= "0.6"
  382. opentelemetry-client-ocurl >= "0.6"
  383. opentelemetry-client-ocurl-lwt
  384. opentelemetry-cohttp-lwt >= "0.6"
  385. opentelemetry-logs
  386. opentelemetry-lwt >= "0.6"
  387. opium
  388. opium-graphql
  389. opium-testing
  390. opium_kernel
  391. orewa
  392. orgeat
  393. ortac-core
  394. ortac-wrapper
  395. osnap < "0.3.0"
  396. osx-acl
  397. osx-attr
  398. osx-cf
  399. osx-fsevents
  400. osx-membership
  401. osx-mount
  402. osx-xattr
  403. otoggl
  404. owl >= "0.7.0" & != "0.9.0" & != "1.0.0"
  405. owl-base < "0.5.0"
  406. owl-ode >= "0.1.0" & != "0.2.0"
  407. owl-symbolic
  408. par_incr
  409. parseff
  410. passe
  411. passmaker
  412. patch
  413. pbkdf
  414. pecu >= "0.2"
  415. pf-qubes
  416. pg_query >= "0.9.6"
  417. pgx
  418. pgx_unix
  419. pgx_value_core
  420. pgx_value_ptime
  421. phylogenetics
  422. piaf
  423. picos < "0.5.0"
  424. picos_meta
  425. piece_rope
  426. plebeia >= "2.0.0"
  427. polyglot
  428. polymarket
  429. polynomial
  430. ppx_blob >= "0.3.0"
  431. ppx_catch
  432. ppx_deriving_cmdliner
  433. ppx_deriving_ezjsonm
  434. ppx_deriving_qcheck
  435. ppx_deriving_rpc
  436. ppx_deriving_yaml
  437. ppx_ezlua
  438. ppx_inline_alcotest
  439. ppx_map
  440. ppx_marshal
  441. ppx_parser
  442. ppx_protocol_conv
  443. ppx_protocol_conv_json
  444. ppx_protocol_conv_jsonm
  445. ppx_protocol_conv_msgpack
  446. ppx_protocol_conv_xml_light
  447. ppx_protocol_conv_xmlm
  448. ppx_protocol_conv_yaml
  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. sha256-cng
  524. shakuhachi
  525. sherlodoc
  526. sihl < "0.2.0"
  527. sihl-type
  528. slug
  529. sm
  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. symphony-orchestrator-tui
  556. synchronizer >= "0.2"
  557. syslog-rfc5424 < "0.2"
  558. tabr
  559. talon < "1.0.0~alpha3"
  560. tar-eio >= "3.5.0"
  561. tar-mirage
  562. tcpip
  563. tdigest < "2.1.0"
  564. term-indexing
  565. term-tools
  566. terminal
  567. terminal_size >= "0.1.1"
  568. terminus
  569. terminus-cohttp
  570. terminus-hlc
  571. terml
  572. testo
  573. testo-lwt
  574. textmate-language >= "0.3.0"
  575. textrazor
  576. thread-table
  577. timedesc
  578. timere
  579. timmy
  580. timmy-jsoo
  581. timmy-lwt
  582. timmy-unix
  583. tls >= "0.12.8"
  584. toc
  585. topojson
  586. topojsone
  587. trail
  588. traits
  589. transept
  590. tsort >= "2.2.0"
  591. twostep
  592. type_eq
  593. type_id
  594. typeid >= "1.0.1"
  595. tyre >= "0.4"
  596. tyxml >= "4.2.0"
  597. tyxml-jsx
  598. tyxml-ppx >= "4.3.0"
  599. tyxml-syntax
  600. uecc
  601. ulid
  602. universal-portal
  603. unix-dirent
  604. unix-errno
  605. unix-sys-resource
  606. unix-sys-stat
  607. unix-time
  608. unstrctrd
  609. uring < "0.4"
  610. user-agent-parser
  611. uspf
  612. uspf-lwt
  613. uspf-mirage
  614. uspf-unix
  615. utcp
  616. utop >= "2.13.0"
  617. validate
  618. validator
  619. valkey
  620. vercel
  621. vhd-format-lwt >= "0.13.0"
  622. wayland >= "2.0"
  623. wcwidth
  624. websocketaf
  625. wire
  626. x509 >= "0.7.0"
  627. xapi-rrd
  628. xapi-stdext-date
  629. xapi-stdext-encodings
  630. xapi-stdext-std >= "4.16.0"
  631. xdge
  632. yaml
  633. yaml-sexp
  634. yocaml
  635. yocaml_syndication >= "2.0.0"
  636. yocaml_yaml < "2.0.0"
  637. yojson >= "1.6.0"
  638. yojson-five
  639. yuscii >= "0.3.0"
  640. yuujinchou >= "1.0.0"
  641. zar
  642. zed >= "3.2.2"
  643. zlist < "0.4.0"

Conflicts (1)

  1. result < "1.5"