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. alg_structs_qcheck
  4. algaeff
  5. ambient-context
  6. ambient-context-eio
  7. ambient-context-lwt
  8. angstrom >= "0.7.0"
  9. ansi >= "0.6.0"
  10. anycache >= "0.7.4"
  11. anycache-async
  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 >= "0.2"
  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. backoff
  29. base32
  30. base64 >= "2.1.2" & < "3.2.0" | >= "3.4.0"
  31. bastet
  32. bastet_lwt
  33. bech32
  34. bechamel >= "0.5.0"
  35. bigarray-overlap
  36. bigstringaf
  37. bitlib
  38. blake2
  39. bloomf
  40. bls12-381 < "0.4.1" | >= "3.0.0" & < "18.0"
  41. bls12-381-hash
  42. bls12-381-js >= "0.4.2"
  43. bls12-381-js-gen >= "0.4.2"
  44. bls12-381-legacy
  45. bls12-381-signature
  46. bls12-381-unix
  47. blurhash
  48. brisk-reconciler
  49. builder-web
  50. bytebuffer
  51. ca-certs
  52. ca-certs-nss
  53. cachet
  54. cachet-lwt
  55. cachet-solo5
  56. cactus
  57. caldav
  58. calendar >= "3.0.0"
  59. calendars >= "2.0.0"
  60. callipyge
  61. camlix
  62. camlkit
  63. camlkit-base
  64. capnp-rpc
  65. capnp-rpc-unix
  66. caqti >= "1.7.0"
  67. caqti-async >= "1.7.0"
  68. caqti-driver-mariadb >= "1.7.0"
  69. caqti-driver-postgresql >= "1.7.0"
  70. caqti-driver-sqlite3 >= "1.7.0"
  71. caqti-dynload >= "2.0.1"
  72. caqti-eio
  73. caqti-lwt >= "1.7.0"
  74. caqti-miou
  75. carray
  76. carton < "1.0.0"
  77. carton-git
  78. carton-lwt >= "0.4.3" & < "1.0.0"
  79. catala >= "0.6.0"
  80. cborl
  81. cf-lwt
  82. chacha
  83. chamelon
  84. chamelon-unix
  85. charrua-client
  86. charrua-server
  87. checked_oint
  88. checkseum >= "0.0.3"
  89. cid
  90. clarity-lang
  91. class_group_vdf
  92. cohttp
  93. cohttp-curl-async
  94. cohttp-curl-lwt
  95. cohttp-eio >= "6.0.0~beta2"
  96. colombe >= "0.2.0"
  97. color
  98. commons
  99. conan
  100. conan-cli
  101. conan-database
  102. conan-lwt
  103. conan-unix
  104. conex < "0.10.0"
  105. conex-mirage-crypto
  106. conformist
  107. cookie
  108. corosync
  109. cow >= "2.2.0"
  110. crockford
  111. css
  112. css-parser
  113. cstruct
  114. cstruct-sexp
  115. ctypes-zarith
  116. cuid
  117. cure2
  118. curly
  119. current
  120. current-albatross-deployer
  121. current_git >= "0.7.1"
  122. current_incr
  123. data-encoding
  124. dates_calc
  125. dbase4
  126. decimal >= "0.3.0"
  127. decompress
  128. depyt
  129. digestif >= "0.9.0"
  130. dirsp-exchange-kbb2017
  131. dirsp-proscript-mirage
  132. dirsp-ps2ocaml
  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. dkml-package-console
  142. dmarc
  143. dns >= "4.4.1"
  144. dns-cli
  145. dns-client >= "4.6.3"
  146. dns-forward-lwt-unix
  147. dns-resolver
  148. dns-server
  149. dns-tsig
  150. dnssd
  151. dnssec
  152. docfd >= "2.2.0"
  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. eio < "0.12"
  167. eio_linux
  168. eio_windows
  169. emile
  170. encore
  171. eqaf >= "0.5"
  172. equinoxe
  173. equinoxe-cohttp
  174. equinoxe-hlc
  175. ezgzip
  176. ezjsonm
  177. ezjsonm-lwt
  178. FPauth
  179. FPauth-core
  180. FPauth-responses
  181. FPauth-strategies
  182. faraday != "0.2.0"
  183. farfadet
  184. fat-filesystem
  185. fehu
  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.1.3"
  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"
  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. httpcats
  232. httpun
  233. httpun-ws
  234. hugin
  235. huml
  236. hvsock
  237. icalendar
  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. jsonxt
  267. junit_alcotest < "2.3.0"
  268. jwto
  269. kaun
  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. ledgerwallet-tezos >= "0.2.1" & < "0.4.0"
  282. letters
  283. liquid_ml >= "0.1.3"
  284. lmdb >= "1.0"
  285. lockfree >= "0.3.1"
  286. logical
  287. logtk >= "1.6"
  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 >= "1.6.0"
  298. mec
  299. mechaml >= "1.2.1"
  300. merlin = "4.17.1-501"
  301. merlin-lib >= "4.17.1-501"
  302. metrics
  303. middleware
  304. mimic
  305. minicaml = "0.3.1" | >= "0.4"
  306. mirage >= "4.0.0"
  307. mirage-block-partition
  308. mirage-block-ramdisk
  309. mirage-channel >= "4.0.1"
  310. mirage-crypto-ec
  311. mirage-flow-unix
  312. mirage-kv >= "2.0.0"
  313. mirage-kv-mem
  314. mirage-kv-unix >= "3.0.0"
  315. mirage-logs
  316. mirage-nat
  317. mirage-net-unix
  318. mirage-runtime < "4.7.0"
  319. mirage-tc
  320. mjson
  321. mlgpx
  322. mmdb < "0.3.0"
  323. mnd
  324. mqtt
  325. mrmime >= "0.2.0"
  326. msgpck >= "1.6"
  327. mssql >= "2.0.3"
  328. multibase
  329. multicore-magic
  330. multihash
  331. multihash-digestif
  332. multipart-form-data
  333. multipart_form
  334. multipart_form-eio
  335. multipart_form-lwt
  336. multipart_form-miou
  337. named-pipe
  338. nanoid
  339. nbd >= "4.0.3"
  340. nbd-tool
  341. neo4j_bolt
  342. nloge
  343. nocoiner
  344. non_empty_list
  345. nx
  346. nx-datasets
  347. nx-text
  348. OCADml >= "0.6.0"
  349. obatcher
  350. ocaml-index < "5.4.1-503"
  351. ocaml-r >= "0.4.0"
  352. ocaml-version >= "3.5.0"
  353. ocamlformat >= "0.13.0" & < "0.25.1"
  354. ocamlformat-lib
  355. ocamlformat-mlx-lib
  356. ocamlformat-rpc < "removed"
  357. ocamline
  358. ocluster
  359. octez-bls12-381-hash
  360. octez-bls12-381-signature
  361. octez-libs
  362. octez-mec
  363. ocue
  364. odoc < "2.1.1"
  365. oenv >= "0.1.0"
  366. ohex
  367. oidc
  368. opam-0install
  369. opam-0install-cudf >= "0.5.0"
  370. opam-compiler
  371. opam-file-format >= "2.1.1"
  372. opam-repomin
  373. opencage
  374. opentelemetry >= "0.6"
  375. opentelemetry-client-cohttp-eio
  376. opentelemetry-client-cohttp-lwt >= "0.6"
  377. opentelemetry-client-ocurl >= "0.6"
  378. opentelemetry-cohttp-lwt >= "0.6"
  379. opentelemetry-logs
  380. opentelemetry-lwt >= "0.6"
  381. opium
  382. opium-graphql
  383. opium-testing
  384. opium_kernel
  385. orewa
  386. orgeat
  387. ortac-core
  388. ortac-wrapper
  389. osnap < "0.3.0"
  390. osx-acl
  391. osx-attr
  392. osx-cf
  393. osx-fsevents
  394. osx-membership
  395. osx-mount
  396. osx-xattr
  397. otoggl
  398. owl >= "0.7.0" & != "0.9.0" & != "1.0.0"
  399. owl-base < "0.5.0"
  400. owl-ode >= "0.1.0" & != "0.2.0"
  401. owl-symbolic
  402. par_incr
  403. passe
  404. passmaker
  405. patch
  406. pbkdf
  407. pecu >= "0.2"
  408. pf-qubes
  409. pg_query >= "0.9.6"
  410. pgx >= "1.0"
  411. pgx_unix >= "1.0"
  412. pgx_value_core
  413. pgx_value_ptime
  414. phylogenetics
  415. piaf
  416. picos < "0.5.0"
  417. picos_meta
  418. piece_rope
  419. plebeia >= "2.0.0"
  420. polyglot
  421. polymarket
  422. polynomial
  423. ppx_blob >= "0.3.0"
  424. ppx_catch
  425. ppx_deriving_cmdliner
  426. ppx_deriving_ezjsonm
  427. ppx_deriving_qcheck
  428. ppx_deriving_rpc
  429. ppx_deriving_yaml
  430. ppx_inline_alcotest
  431. ppx_map
  432. ppx_marshal
  433. ppx_mica
  434. ppx_parser
  435. ppx_protocol_conv >= "5.0.0"
  436. ppx_protocol_conv_json >= "5.0.0"
  437. ppx_protocol_conv_jsonm >= "5.0.0"
  438. ppx_protocol_conv_msgpack >= "5.0.0"
  439. ppx_protocol_conv_xml_light >= "5.0.0"
  440. ppx_protocol_conv_xmlm
  441. ppx_protocol_conv_yaml >= "5.0.0"
  442. ppx_repr
  443. ppx_subliner
  444. ppx_units
  445. ppx_yojson >= "1.1.0"
  446. pratter
  447. prbnmcn-ucb1 >= "0.0.2"
  448. prc
  449. preface
  450. pretty_expressive
  451. prettym
  452. proc-smaps
  453. producer
  454. progress
  455. prom
  456. prometheus < "1.2"
  457. prometheus-app
  458. protocell
  459. protocol-9p < "0.11.0" | >= "0.11.2"
  460. protocol-9p-unix
  461. proton
  462. psq
  463. public-suffix
  464. pxshot
  465. pyast
  466. qcaml
  467. qcheck >= "0.25"
  468. qcheck-alcotest
  469. qcheck-core >= "0.25"
  470. qdrant
  471. query-json
  472. quickjs
  473. quill
  474. randii
  475. reason-standard
  476. red-black-tree
  477. reparse >= "2.0.0" & < "3.0.0"
  478. reparse-unix < "2.1.0"
  479. resp
  480. resp-unix >= "0.10.0"
  481. resto >= "0.9"
  482. rfc1951 < "1.0.0"
  483. routes < "2.0.0"
  484. rpc
  485. rpclib
  486. rpclib-async
  487. rpclib-lwt
  488. rpmfile < "0.3.0"
  489. rpmfile-eio
  490. rpmfile-unix
  491. rune
  492. SZXX >= "4.0.0"
  493. saga
  494. salsa20
  495. salsa20-core
  496. sanddb >= "0.2"
  497. saturn != "0.4.1"
  498. saturn_lockfree != "0.4.1"
  499. scrypt-kdf
  500. secp256k1 >= "0.4.1"
  501. secp256k1-internal
  502. semver >= "0.2.1"
  503. sendmail
  504. sendmail-lwt
  505. sendmail-miou-unix
  506. sendmail-mirage
  507. sendmsg
  508. seqes
  509. server-reason-react
  510. session-cookie
  511. session-cookie-async
  512. session-cookie-lwt
  513. shakuhachi
  514. sherlodoc
  515. sihl < "0.2.0"
  516. sihl-type
  517. slug
  518. smaws-clients
  519. smaws-lib
  520. smol
  521. smol-helpers
  522. sodium-fmt
  523. solidity-alcotest
  524. sowilo
  525. spdx_licenses
  526. spectrum >= "0.2.0"
  527. spin >= "0.7.0"
  528. spurs < "0.1.1"
  529. squirrel
  530. ssh-agent
  531. ssl >= "0.6.0"
  532. starred_ml
  533. stramon-lib
  534. stringx
  535. styled-ppx
  536. swapfs
  537. synchronizer >= "0.2"
  538. syslog-rfc5424 < "0.2"
  539. tabr
  540. talon
  541. tar-mirage
  542. tcpip
  543. tdigest < "2.1.0"
  544. term-indexing
  545. term-tools
  546. terminal
  547. terminal_size >= "0.1.1"
  548. terminus
  549. terminus-cohttp
  550. terminus-hlc
  551. terml
  552. testo
  553. testo-lwt
  554. textmate-language >= "0.3.0"
  555. textrazor
  556. tezos-base-test-helpers < "17.3"
  557. tezos-bls12-381-polynomial
  558. tezos-client-base < "17.3"
  559. tezos-client-base-unix < "17.3"
  560. tezos-crypto >= "16.0" & < "17.3"
  561. tezos-crypto-dal < "17.3"
  562. tezos-error-monad >= "12.3" & < "17.3"
  563. tezos-event-logging-test-helpers < "17.3"
  564. tezos-plompiler = "0.1.3"
  565. tezos-plonk = "0.1.3"
  566. tezos-shell-services >= "16.0" & < "17.3"
  567. tezos-stdlib != "12.3" & < "17.3"
  568. tezos-test-helpers < "17.3"
  569. tezos-version >= "16.0" & < "17.3"
  570. tezos-webassembly-interpreter < "17.3"
  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. utop >= "2.13.0"
  611. validate
  612. validator
  613. vercel
  614. vhd-format-lwt >= "0.13.0"
  615. vpnkit
  616. wayland >= "2.0"
  617. wcwidth
  618. websocketaf
  619. x509 >= "0.7.0"
  620. xapi-rrd
  621. xapi-stdext-date
  622. xapi-stdext-encodings
  623. xapi-stdext-std >= "4.16.0"
  624. xdge
  625. xkbcommon
  626. yaml
  627. yaml-sexp
  628. yocaml
  629. yocaml_syndication >= "2.0.0"
  630. yocaml_yaml < "2.0.0"
  631. yojson >= "1.6.0"
  632. yojson-five
  633. yuscii >= "0.3.0"
  634. yuujinchou >= "1.0.0"
  635. zar
  636. zed >= "3.2.2"
  637. zlist < "0.4.0"

Conflicts (2)

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