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

Conflicts (1)

  1. result < "1.5"