package alcotest

  1. Overview
  2. Docs
Alcotest is a lightweight and colourful test framework

Install

dune-project
 Dependency

Authors

Maintainers

Sources

alcotest-js-1.5.0.tbz
sha256=54281907e02d78995df246dc2e10ed182828294ad2059347a1e3a13354848f6c
sha512=1aea91de40795ec4f6603d510107e4b663c1a94bd223f162ad231316d8595e9e098cabbe28a46bdcb588942f3d103d8377373d533bcc7413ba3868a577469b45

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.

Added to opam-repository:

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][docs]. For information on contributing to Alcotest, see CONTRIBUTING.md.

OCaml-CI Build Status docs


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.

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 folder 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 prefered 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 qcheck does random generation and property testing (e.g. Quick Check)
  • crowbar and bun are similar to qcheck, but use compiler-directed randomness, e.g. it takes 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.0.0" & < "2.0.0"
  6. astring
  7. fmt >= "0.8.7"
  8. ocaml >= "4.03.0"
  9. dune >= "2.8"

Dev Dependencies (2)

  1. odoc with-doc
  2. cmdliner with-test & < "1.1.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 < "0.3.0"
  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. awskit < "0.2.0"
  29. awskit-eio < "0.2.0"
  30. awskit-lwt < "0.2.0"
  31. awskit-lwt-unix < "0.2.0"
  32. awskit-s3 < "0.2.0"
  33. awskit-s3-eio < "0.2.0"
  34. awskit-s3-lwt < "0.2.0"
  35. awskit-s3-lwt-unix < "0.2.0"
  36. awskit-s3-sim < "0.2.0"
  37. azure-cosmos-db-eio
  38. base32
  39. base64 >= "2.1.2" & < "3.2.0" | >= "3.4.0"
  40. bastet
  41. bastet_async
  42. bastet_lwt
  43. bech32
  44. bechamel >= "0.5.0"
  45. bigarray-overlap
  46. bigstringaf
  47. biotk >= "0.4"
  48. bitlib
  49. bizowie-api
  50. blake2
  51. bloomf
  52. bls12-381 < "0.4.1" | >= "3.0.0" & < "18.0"
  53. bls12-381-hash
  54. bls12-381-js >= "0.4.2"
  55. bls12-381-js-gen >= "0.4.2"
  56. bls12-381-legacy
  57. bls12-381-signature
  58. bls12-381-unix
  59. blurhash
  60. bm25
  61. brisk-reconciler
  62. builder-web
  63. bytebuffer
  64. bytream >= "0.2"
  65. ca-certs
  66. ca-certs-nss
  67. cabal
  68. cactus
  69. caldav
  70. calendar >= "3.0.0"
  71. calendars >= "2.0.0"
  72. callipyge
  73. camlix
  74. camlkit
  75. camlkit-base
  76. capnp-rpc < "1.2.3"
  77. capnp-rpc-unix < "1.2.3"
  78. caqti >= "1.7.0"
  79. caqti-async >= "1.7.0"
  80. caqti-driver-mariadb >= "1.7.0"
  81. caqti-driver-postgresql >= "1.7.0"
  82. caqti-driver-sqlite3 >= "1.7.0"
  83. caqti-dynload = "2.0.1"
  84. caqti-eio
  85. caqti-lwt >= "1.7.0"
  86. caqti-miou
  87. carray
  88. carton < "1.0.0"
  89. carton-git
  90. carton-lwt >= "0.4.3" & < "1.0.0"
  91. catala >= "0.6.0"
  92. cborl
  93. cf-lwt
  94. chacha
  95. chamelon
  96. chamelon-unix
  97. charrua-client
  98. charrua-server
  99. checkseum >= "0.0.3"
  100. cid
  101. clarity-lang
  102. class_group_vdf
  103. cohttp < "6.0.0"
  104. cohttp-curl-async < "6.1.0"
  105. cohttp-eio = "6.0.0~beta2"
  106. colombe >= "0.2.0"
  107. color
  108. commons
  109. conan
  110. conan-cli
  111. conan-database
  112. conan-lwt
  113. conan-unix
  114. conex < "0.10.0"
  115. conex-mirage-crypto
  116. conformist
  117. cookie
  118. cow >= "2.2.0"
  119. crockford
  120. css
  121. css-parser
  122. cstruct
  123. cstruct-sexp
  124. ctypes-zarith
  125. cuid
  126. curly
  127. current
  128. current-albatross-deployer
  129. current_git >= "0.7.1"
  130. current_incr
  131. current_rpc >= "0.7.4"
  132. data-encoding
  133. dates_calc
  134. dbase4
  135. decimal >= "0.3.0"
  136. decompress < "1.5.3"
  137. depyt
  138. digestif >= "0.9.0"
  139. dispatch >= "0.4.1"
  140. dkim
  141. dkim-bin
  142. dkim-mirage
  143. dkml-dune-dsl-show
  144. dkml-install
  145. dkml-install-installer
  146. dkml-install-runner
  147. dmarc
  148. dns >= "4.4.1"
  149. dns-cli
  150. dns-client >= "4.6.3"
  151. dns-forward-lwt-unix
  152. dns-resolver
  153. dns-server
  154. dns-tsig
  155. dnssd
  156. dnssec < "10.2.4"
  157. docfd >= "13.0.0"
  158. domain-name
  159. dream
  160. dream-pure
  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 < "0.12"
  169. eio_windows < "0.12"
  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. forcamla
  194. forester >= "5.0"
  195. fsevents-lwt
  196. functoria
  197. fungi
  198. geojson
  199. geoml >= "0.1.1"
  200. git
  201. git-cohttp
  202. git-cohttp-unix
  203. git-kv >= "0.2.0"
  204. git-mirage
  205. git-net
  206. git-split
  207. git-unix
  208. gitlab-unix
  209. glicko2
  210. gmap
  211. gmocoin
  212. gobba
  213. gpt
  214. graphql
  215. graphql-async
  216. graphql-cohttp >= "0.13.0"
  217. graphql-lwt
  218. graphql_parser != "0.11.0"
  219. graphql_ppx
  220. h1
  221. h1_parser
  222. h2
  223. hacl
  224. hacl-star >= "0.6.0" & < "0.7.2"
  225. hacl_func
  226. hacl_x25519
  227. handlebars-ml >= "0.2.1"
  228. hedgehog-alcotest
  229. highlexer
  230. hkdf
  231. hockmd
  232. html_of_jsx
  233. http < "6.0.0"
  234. http-multipart-formdata < "2.0.0"
  235. httpaf >= "0.2.0"
  236. httpun
  237. httpun-ws
  238. hugin < "1.0.0~alpha3"
  239. huml
  240. hvsock
  241. icalendar
  242. idna
  243. imagelib
  244. index
  245. inferno >= "20220603"
  246. influxdb-async
  247. influxdb-lwt
  248. inquire < "0.2.0"
  249. intel_hex >= "0.3"
  250. interval-map
  251. iomux
  252. irmin
  253. irmin-bench
  254. irmin-chunk
  255. irmin-cli
  256. irmin-containers
  257. irmin-fs
  258. irmin-git
  259. irmin-graphql
  260. irmin-pack
  261. irmin-pack-tools
  262. irmin-test < "3.6.1"
  263. irmin-tezos
  264. irmin-unix
  265. irmin-watcher
  266. jekyll-format
  267. jose
  268. json-data-encoding >= "0.9" & < "1.1.1"
  269. json_decoder
  270. jsonfeed
  271. jsonschema-core
  272. jsonschema-validation
  273. jsonxt
  274. junit_alcotest < "2.1.0"
  275. jwto
  276. kaun < "1.0.0~alpha3"
  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. logical
  290. logtk
  291. lp
  292. lp-glpk
  293. lp-glpk-js < "0.5.0"
  294. lp-gurobi < "0.5.0"
  295. lru
  296. lt-code
  297. luv
  298. mbr-format
  299. mdx
  300. mec
  301. mechaml >= "1.2.1"
  302. melange >= "7.0.0-51"
  303. melange-edn >= "0.5.0"
  304. menhir-lsp >= "0.3.3"
  305. menhirformat
  306. merlin = "4.17.1-501"
  307. merlin-lib >= "4.17.1-501"
  308. metrics
  309. mfat
  310. miaou-core
  311. middleware
  312. mimic
  313. minicaml = "0.3.1" | >= "0.4"
  314. mirage >= "4.0.0"
  315. mirage-block-partition
  316. mirage-block-ramdisk
  317. mirage-channel >= "4.0.1"
  318. mirage-crypto-ec
  319. mirage-flow-unix
  320. mirage-kv >= "2.0.0"
  321. mirage-kv-mem
  322. mirage-kv-unix >= "3.0.0"
  323. mirage-logs
  324. mirage-nat
  325. mirage-net-unix
  326. mirage-runtime < "4.7.0"
  327. mirage-tc
  328. mjson
  329. mlgpx
  330. mmdb < "0.3.0"
  331. mnd
  332. mqtt
  333. mrmime >= "0.2.0"
  334. msgpck >= "1.6"
  335. mssql
  336. multibase
  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. neodriver
  350. neodriver_core
  351. neodriver_eio
  352. neodriver_packstream
  353. nloge
  354. nocoiner
  355. noise
  356. non_empty_list
  357. nx < "1.0.0~alpha3"
  358. nx-datasets
  359. nx-text
  360. OCADml >= "0.6.0"
  361. obatcher
  362. object
  363. ocaml-ai-sdk
  364. ocaml-index < "5.4.1-503"
  365. ocaml-r >= "0.4.0"
  366. ocaml-version >= "3.5.0"
  367. ocamlformat < "0.25.1"
  368. ocamlformat-lib
  369. ocamlformat-mlx-lib
  370. ocamlformat-rpc < "removed"
  371. ocamline
  372. ocgtk
  373. ochre
  374. ochre-cli
  375. ocluster < "0.3.0"
  376. ocue
  377. odoc < "2.1.1"
  378. oenv >= "0.1.0"
  379. ohex
  380. oidc
  381. opam-0install
  382. opam-0install-cudf >= "0.5.0"
  383. opam-compiler
  384. opam-file-format >= "2.1.1"
  385. opam-repomin
  386. opencage
  387. opentelemetry >= "0.6"
  388. opentelemetry-client
  389. opentelemetry-client-cohttp-eio
  390. opentelemetry-client-cohttp-lwt >= "0.6"
  391. opentelemetry-client-ocurl >= "0.6"
  392. opentelemetry-client-ocurl-lwt
  393. opentelemetry-cohttp-lwt >= "0.6"
  394. opentelemetry-logs
  395. opentelemetry-lwt >= "0.6"
  396. opium
  397. opium-graphql
  398. opium-testing
  399. opium_kernel
  400. orewa
  401. orgeat
  402. ortac-core
  403. ortac-wrapper
  404. osnap < "0.3.0"
  405. osx-acl
  406. osx-attr
  407. osx-cf
  408. osx-fsevents
  409. osx-keychain
  410. osx-membership
  411. osx-mount
  412. osx-xattr
  413. otoggl
  414. owl >= "0.7.0" & != "0.9.0" & != "1.0.0"
  415. owl-base < "0.5.0"
  416. owl-ode >= "0.1.0" & != "0.2.0"
  417. owl-symbolic
  418. parseff
  419. passe
  420. passmaker
  421. patch < "3.0.0~alpha2"
  422. pbkdf
  423. pecu >= "0.2"
  424. pf-qubes
  425. pg_query >= "0.9.6"
  426. pgx
  427. pgx_unix
  428. pgx_value_core
  429. pgx_value_ptime
  430. phylogenetics
  431. piaf
  432. plebeia >= "2.0.0"
  433. polyglot
  434. polynomial
  435. ppx_blob >= "0.3.0"
  436. ppx_deriving_cmdliner
  437. ppx_deriving_ezjsonm
  438. ppx_deriving_qcheck
  439. ppx_deriving_rpc
  440. ppx_deriving_yaml
  441. ppx_ezlua
  442. ppx_inline_alcotest
  443. ppx_marshal
  444. ppx_parser
  445. ppx_protocol_conv
  446. ppx_protocol_conv_json
  447. ppx_protocol_conv_jsonm
  448. ppx_protocol_conv_msgpack
  449. ppx_protocol_conv_xml_light
  450. ppx_protocol_conv_xmlm
  451. ppx_protocol_conv_yaml
  452. ppx_repr
  453. ppx_subliner
  454. ppx_units
  455. ppx_yojson >= "1.1.0"
  456. pratter
  457. prbnmcn-ucb1 >= "0.0.2"
  458. prc
  459. preface
  460. pretty_expressive
  461. prettym
  462. proc-smaps
  463. producer < "0.2.0"
  464. progress
  465. prom
  466. prometheus < "1.2"
  467. prometheus-app
  468. prometheus-lwt
  469. protocell
  470. protocol-9p < "0.11.0" | >= "0.11.2"
  471. protocol-9p-unix
  472. proton
  473. psq
  474. public-suffix
  475. pyast
  476. qcaml
  477. qcheck >= "0.25"
  478. qcheck-alcotest
  479. qcheck-core >= "0.25"
  480. qcow-stream >= "0.13.0"
  481. qcow-tool = "0.13.0"
  482. qcow-types = "0.13.0"
  483. query-json
  484. quickjs
  485. quill < "1.0.0~alpha3"
  486. randii
  487. reason-standard
  488. red-black-tree
  489. reparse >= "2.0.0" & < "3.0.0"
  490. reparse-unix < "2.1.0"
  491. resp
  492. resp-unix >= "0.10.0"
  493. resto >= "0.8"
  494. rfc1951 < "1.0.0"
  495. routes < "2.0.0"
  496. rpc
  497. rpclib
  498. rpclib-async
  499. rpclib-lwt
  500. rpmfile < "0.3.0"
  501. rpmfile-eio
  502. rpmfile-unix
  503. rune < "1.0.0~alpha3"
  504. SZXX >= "4.0.0"
  505. saga
  506. salsa20
  507. salsa20-core
  508. sanddb >= "0.2"
  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. smtml >= "0.30.0"
  535. sodium-fmt
  536. solidity-alcotest
  537. soteria
  538. sowilo < "1.0.0~alpha3"
  539. spdx_licenses
  540. spectrum >= "0.2.0"
  541. spectrum_capabilities
  542. spectrum_palette_ppx
  543. spectrum_palettes
  544. spectrum_tools
  545. spin >= "0.7.0"
  546. spurs < "0.1.1"
  547. squirrel
  548. ssh-agent
  549. ssl >= "0.6.0"
  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. talon < "1.0.0~alpha3"
  560. tar-eio >= "3.5.0"
  561. tcpip
  562. tdigest < "2.1.0"
  563. term-indexing
  564. term-tools
  565. termaid
  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. timedesc
  577. timere
  578. timmy
  579. timmy-jsoo
  580. timmy-lwt
  581. timmy-unix
  582. tls >= "0.12.8"
  583. toc
  584. topojson
  585. topojsone
  586. traits
  587. transept
  588. tsort >= "2.2.0"
  589. tw
  590. twostep
  591. type_eq
  592. type_id
  593. typeid >= "1.0.1"
  594. tyre >= "0.4"
  595. tyxml >= "4.2.0"
  596. tyxml-jsx
  597. tyxml-ppx >= "4.3.0"
  598. tyxml-syntax
  599. uecc
  600. ulid
  601. universal-portal
  602. unix-dirent
  603. unix-errno
  604. unix-sys-resource
  605. unix-sys-stat
  606. unix-time
  607. unstrctrd
  608. uring < "0.4"
  609. user-agent-parser
  610. uspf
  611. uspf-lwt
  612. uspf-mirage
  613. uspf-unix
  614. utcp
  615. utop >= "2.13.0"
  616. validate
  617. validator
  618. vercel
  619. vhd-format-lwt >= "0.13.0"
  620. wayland >= "2.0"
  621. wcwidth
  622. websocketaf
  623. wire
  624. x509 >= "0.7.0"
  625. xapi-rrd
  626. xapi-stdext-date
  627. xapi-stdext-encodings
  628. xapi-stdext-std >= "4.16.0"
  629. yaml
  630. yaml-sexp
  631. yocaml
  632. yocaml_syndication >= "2.0.0"
  633. yocaml_yaml < "2.0.0"
  634. yojson >= "1.6.0"
  635. yojson-five
  636. yuscii >= "0.3.0"
  637. yuujinchou >= "1.0.0"
  638. zar
  639. zed >= "3.2.2"
  640. zlist < "0.4.0"

Conflicts (1)

  1. result < "1.5"