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. object
  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_parser
  443. ppx_protocol_conv
  444. ppx_protocol_conv_json
  445. ppx_protocol_conv_jsonm
  446. ppx_protocol_conv_msgpack
  447. ppx_protocol_conv_xml_light
  448. ppx_protocol_conv_xmlm
  449. ppx_protocol_conv_yaml
  450. ppx_repr
  451. ppx_subliner
  452. ppx_units
  453. ppx_yojson >= "1.1.0"
  454. pratter
  455. prbnmcn-ucb1 >= "0.0.2"
  456. prc
  457. preface
  458. pretty_expressive
  459. prettym
  460. proc-smaps
  461. producer
  462. progress
  463. prom
  464. prometheus < "1.2"
  465. prometheus-app
  466. protocell
  467. protocol-9p < "0.11.0" | >= "0.11.2"
  468. protocol-9p-unix
  469. proton
  470. psq
  471. public-suffix
  472. pxshot
  473. pyast
  474. qcaml
  475. qcheck >= "0.25"
  476. qcheck-alcotest
  477. qcheck-core >= "0.25"
  478. qcow-stream >= "0.13.0"
  479. qcow-tool = "0.13.0"
  480. qcow-types = "0.13.0"
  481. qdrant
  482. query-json
  483. quickjs
  484. quill < "1.0.0~alpha3"
  485. randii
  486. reason-standard
  487. red-black-tree
  488. reparse >= "2.0.0" & < "3.0.0"
  489. reparse-unix < "2.1.0"
  490. resp
  491. resp-unix >= "0.10.0"
  492. resto >= "0.9"
  493. rfc1951 < "1.0.0"
  494. routes < "2.0.0"
  495. rpc
  496. rpclib
  497. rpclib-async
  498. rpclib-lwt
  499. rpmfile < "0.3.0"
  500. rpmfile-eio
  501. rpmfile-unix
  502. rune < "1.0.0~alpha3"
  503. SZXX >= "4.0.0"
  504. saga
  505. salsa20
  506. salsa20-core
  507. sanddb >= "0.2"
  508. saturn != "0.4.1"
  509. saturn_lockfree != "0.4.1"
  510. scrypt-kdf
  511. secp256k1 >= "0.4.1"
  512. secp256k1-internal
  513. semver >= "0.2.1"
  514. sendmail
  515. sendmail-lwt
  516. sendmail-miou-unix
  517. sendmail-mirage
  518. sendmsg
  519. seqes
  520. server-reason-react
  521. session-cookie
  522. session-cookie-async
  523. session-cookie-lwt
  524. sha256-cng
  525. shakuhachi
  526. sherlodoc
  527. sihl < "0.2.0"
  528. sihl-type
  529. slug
  530. sm
  531. smaws-clients
  532. smaws-lib
  533. smol
  534. smol-helpers
  535. sodium-fmt
  536. solidity-alcotest
  537. sowilo < "1.0.0~alpha3"
  538. spdx_licenses
  539. spectrum >= "0.2.0"
  540. spectrum_capabilities
  541. spectrum_palette_ppx
  542. spectrum_palettes
  543. spectrum_tools
  544. spin >= "0.7.0"
  545. spurs < "0.1.1"
  546. squirrel
  547. ssh-agent
  548. ssl >= "0.6.0"
  549. starred_ml < "0.0.8"
  550. stem
  551. stramon-lib
  552. stringx
  553. styled-ppx
  554. swapfs
  555. symex >= "0.2"
  556. symphony-orchestrator-tui
  557. synchronizer >= "0.2"
  558. syslog-rfc5424 < "0.2"
  559. tabr
  560. talon < "1.0.0~alpha3"
  561. tar-eio >= "3.5.0"
  562. tar-mirage
  563. tcpip
  564. tdigest < "2.1.0"
  565. term-indexing
  566. term-tools
  567. terminal
  568. terminal_size >= "0.1.1"
  569. terminus
  570. terminus-cohttp
  571. terminus-hlc
  572. terml
  573. testo
  574. testo-lwt
  575. textmate-language >= "0.3.0"
  576. textrazor
  577. thread-table
  578. timedesc
  579. timere
  580. timmy
  581. timmy-jsoo
  582. timmy-lwt
  583. timmy-unix
  584. tls >= "0.12.8"
  585. toc
  586. topojson
  587. topojsone
  588. trail
  589. traits
  590. transept
  591. tsort >= "2.2.0"
  592. twostep
  593. type_eq
  594. type_id
  595. typeid >= "1.0.1"
  596. tyre >= "0.4"
  597. tyxml >= "4.2.0"
  598. tyxml-jsx
  599. tyxml-ppx >= "4.3.0"
  600. tyxml-syntax
  601. uecc
  602. ulid
  603. universal-portal
  604. unix-dirent
  605. unix-errno
  606. unix-sys-resource
  607. unix-sys-stat
  608. unix-time
  609. unstrctrd
  610. uring < "0.4"
  611. user-agent-parser
  612. uspf
  613. uspf-lwt
  614. uspf-mirage
  615. uspf-unix
  616. utcp
  617. utop >= "2.13.0"
  618. validate
  619. validator
  620. valkey
  621. vercel
  622. vhd-format-lwt >= "0.13.0"
  623. wayland >= "2.0"
  624. wcwidth
  625. websocketaf
  626. wire
  627. x509 >= "0.7.0"
  628. xapi-rrd
  629. xapi-stdext-date
  630. xapi-stdext-encodings
  631. xapi-stdext-std >= "4.16.0"
  632. xdge
  633. yaml
  634. yaml-sexp
  635. yocaml
  636. yocaml_syndication >= "2.0.0"
  637. yocaml_yaml < "2.0.0"
  638. yojson >= "1.6.0"
  639. yojson-five
  640. yuscii >= "0.3.0"
  641. yuujinchou >= "1.0.0"
  642. zar
  643. zed >= "3.2.2"
  644. zlist < "0.4.0"

Conflicts (1)

  1. result < "1.5"