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

Conflicts (2)

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