package alcotest

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

Install

Dune 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.

Published: 12 Oct 2021

README

README.md

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.


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"
  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.0"
  3. alcotest-async < "1.0.0" | = "1.5.0"
  4. alcotest-js < "1.6.0"
  5. alcotest-lwt < "1.0.0" | = "1.5.0"
  6. alcotest-mirage = "1.5.0"
  7. alg_structs_qcheck
  8. algaeff
  9. ambient-context
  10. ambient-context-eio
  11. ambient-context-lwt
  12. angstrom >= "0.7.0"
  13. ansi >= "0.6.0"
  14. anycache >= "0.7.4"
  15. anycache-async
  16. anycache-lwt
  17. archetype >= "1.4.2"
  18. archi
  19. arp != "2.3.1"
  20. arp-mirage < "2.0.0"
  21. arrakis
  22. art
  23. asai
  24. asak >= "0.2"
  25. asli >= "0.2.0"
  26. asn1-combinators >= "0.2.2"
  27. atd >= "2.3.3"
  28. atdgen >= "2.10.0"
  29. atdpy
  30. atdts
  31. base32
  32. base64 >= "2.1.2" & < "3.2.0" | >= "3.4.0"
  33. bastet
  34. bastet_async
  35. bastet_lwt
  36. bech32
  37. bechamel >= "0.5.0"
  38. bigarray-overlap
  39. bigstringaf
  40. bitlib
  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. builder-web
  52. bulletml
  53. bytebuffer
  54. ca-certs
  55. ca-certs-nss
  56. cactus
  57. caldav
  58. calendar >= "3.0.0"
  59. callipyge
  60. camlix
  61. capnp-rpc < "1.2.3"
  62. capnp-rpc-lwt < "0.3"
  63. capnp-rpc-mirage >= "0.9.0"
  64. capnp-rpc-unix >= "0.9.0" & < "1.2.3"
  65. caqti >= "1.7.0"
  66. caqti-async >= "1.7.0"
  67. caqti-driver-mariadb >= "1.7.0"
  68. caqti-driver-postgresql >= "1.7.0"
  69. caqti-driver-sqlite3 >= "1.7.0"
  70. caqti-dynload >= "2.0.1"
  71. caqti-eio
  72. caqti-lwt >= "1.7.0"
  73. carray
  74. carton
  75. carton-git
  76. carton-lwt >= "0.4.1"
  77. catala >= "0.6.0"
  78. cborl
  79. ccss >= "1.6"
  80. cf-lwt
  81. chacha
  82. chamelon
  83. chamelon-unix
  84. channel
  85. charrua-client
  86. charrua-client-lwt
  87. charrua-client-mirage < "0.11.0"
  88. charrua-server >= "1.4.1"
  89. checkseum >= "0.0.3"
  90. cid
  91. clarity-lang
  92. class_group_vdf
  93. cohttp >= "0.17.0"
  94. cohttp-curl-async
  95. cohttp-curl-lwt
  96. cohttp-eio >= "6.0.0~beta2"
  97. colombe >= "0.2.0"
  98. color
  99. commons
  100. conan
  101. conan-cli
  102. conan-database
  103. conan-lwt
  104. conan-unix
  105. conduit = "3.0.0"
  106. conex < "0.10.0"
  107. conex-mirage-crypto
  108. conex-nocrypto
  109. conformist
  110. cookie
  111. cow >= "2.2.0"
  112. css
  113. css-parser
  114. cstruct >= "3.3.0"
  115. cstruct-sexp
  116. ctypes-zarith
  117. cuid
  118. curly
  119. current >= "0.4"
  120. current-albatross-deployer
  121. current_git >= "0.6.4"
  122. current_incr
  123. cwe_checker
  124. data-encoding
  125. datakit >= "0.12.0"
  126. datakit-bridge-github >= "0.12.0"
  127. datakit-ci
  128. datakit-client-git >= "0.12.0"
  129. dates_calc
  130. decimal >= "0.3.0"
  131. decompress >= "0.8" & < "1.5.3"
  132. depyt
  133. digestif >= "0.8.1"
  134. dirsp-exchange-kbb2017
  135. dirsp-proscript-mirage
  136. dirsp-ps2ocaml
  137. dispatch >= "0.4.1"
  138. dkim
  139. dkim-bin
  140. dkim-mirage
  141. dkml-dune-dsl-show
  142. dkml-install
  143. dkml-install-installer
  144. dkml-install-runner
  145. dkml-package-console
  146. dns >= "4.0.0"
  147. dns-cli
  148. dns-client >= "4.6.0"
  149. dns-forward < "0.9.0"
  150. dns-forward-lwt-unix
  151. dns-resolver
  152. dns-server
  153. dns-tsig
  154. dnssd
  155. dnssec
  156. docfd >= "2.2.0"
  157. dog < "0.2.1"
  158. domain-name
  159. dream
  160. dream-pure
  161. duff
  162. dune-release >= "1.0.0"
  163. duration >= "0.1.1"
  164. eio < "0.12"
  165. eio_linux < "0.12"
  166. eio_windows < "0.12"
  167. emile
  168. encore
  169. eqaf >= "0.5"
  170. equinoxe
  171. equinoxe-cohttp
  172. equinoxe-hlc
  173. eris
  174. eris-lwt
  175. ezgzip
  176. ezjsonm >= "0.4.2"
  177. ezjsonm-lwt
  178. FPauth
  179. FPauth-core
  180. FPauth-responses
  181. FPauth-strategies
  182. faraday != "0.2.0"
  183. farfadet
  184. fat-filesystem >= "0.12.0"
  185. ff
  186. ff-pbt
  187. flex-array
  188. fsevents-lwt
  189. functoria >= "2.2.0"
  190. functoria-runtime >= "2.2.0" & < "3.0.1" | = "3.1.2"
  191. geojson
  192. geoml >= "0.1.1"
  193. git = "1.4.10" | = "1.5.0" | >= "1.5.2" & != "1.10.0"
  194. git-cohttp
  195. git-cohttp-mirage
  196. git-cohttp-unix
  197. git-mirage
  198. git-unix >= "1.10.0" & != "2.1.0"
  199. gitlab-unix
  200. glicko2
  201. gmap >= "0.3.0"
  202. gobba
  203. gpt
  204. graphql
  205. graphql-async
  206. graphql-cohttp >= "0.13.0"
  207. graphql-lwt
  208. graphql_parser != "0.11.0"
  209. graphql_ppx >= "0.7.1"
  210. h1_parser
  211. h2
  212. hacl
  213. hacl-star >= "0.6.0"
  214. hacl_func
  215. hacl_x25519 >= "0.2.0"
  216. highlexer
  217. hkdf
  218. hockmd
  219. html_of_jsx
  220. http
  221. http-multipart-formdata < "2.0.0"
  222. httpaf >= "0.2.0"
  223. hvsock
  224. icalendar >= "0.1.4"
  225. imagelib >= "20200929"
  226. index
  227. inferno >= "20220603"
  228. influxdb-async
  229. influxdb-lwt
  230. inquire < "0.2.0"
  231. interval-map
  232. iomux
  233. irmin < "0.8.0" | >= "0.9.6" & != "0.11.1" & < "1.0.0" | >= "2.0.0" & != "2.3.0"
  234. irmin-bench >= "2.7.0"
  235. irmin-chunk < "1.3.0" | >= "2.3.0"
  236. irmin-cli
  237. irmin-containers
  238. irmin-fs < "1.3.0" | >= "2.3.0"
  239. irmin-git < "2.0.0" | >= "2.3.0"
  240. irmin-graphql >= "2.3.0"
  241. irmin-http < "2.0.0"
  242. irmin-mem < "1.3.0" | >= "2.3.0"
  243. irmin-pack >= "2.4.0" & != "2.6.1"
  244. irmin-pack-tools
  245. irmin-test >= "2.2.0" & < "3.4.0"
  246. irmin-tezos
  247. irmin-tezos-utils
  248. irmin-unix >= "1.0.0" & < "1.3.3" | >= "2.4.0" & != "2.6.1"
  249. irmin-watcher != "0.3.0"
  250. jekyll-format
  251. jerboa
  252. jitsu
  253. jose
  254. json-data-encoding >= "0.9"
  255. json_decoder
  256. jsonxt
  257. junit_alcotest
  258. jwto
  259. ke >= "0.2"
  260. kkmarkdown
  261. kmt
  262. lambda-runtime
  263. lambda_streams
  264. lambda_streams_async
  265. lambdapi >= "2.0.0"
  266. lambdoc >= "1.0-beta4"
  267. ledgerwallet-tezos >= "0.2.1" & < "0.4.0"
  268. letters
  269. lmdb >= "1.0"
  270. logical
  271. logtk >= "1.6"
  272. lp
  273. lp-glpk
  274. lp-glpk-js
  275. lp-gurobi
  276. lru
  277. lt-code
  278. luv
  279. mbr-format >= "1.0.0"
  280. mdx >= "1.6.0"
  281. mec
  282. mechaml = "1.0.0" | >= "1.2.1"
  283. merge-queues >= "0.2.0"
  284. merge-ropes >= "0.2.0"
  285. metrics
  286. middleware
  287. mimic
  288. minicaml = "0.3.1" | >= "0.4"
  289. mirage >= "4.0.0~beta1"
  290. mirage-block-partition
  291. mirage-block-ramdisk = "0.3"
  292. mirage-channel >= "4.0.0"
  293. mirage-channel-lwt < "3.1.0"
  294. mirage-crypto-ec != "0.9.2"
  295. mirage-flow >= "1.0.2" & < "1.2.0"
  296. mirage-flow-unix != "1.3.0" & < "1.5.0" | = "2.0.0" | >= "3.0.0"
  297. mirage-fs-mem
  298. mirage-fs-unix >= "1.2.0" & < "1.4.1"
  299. mirage-kv >= "2.0.0"
  300. mirage-kv-mem
  301. mirage-kv-unix >= "3.0.0"
  302. mirage-logs >= "0.3.0"
  303. mirage-nat
  304. mirage-net-unix >= "2.3.0"
  305. mirage-runtime >= "4.0.0~beta1" & < "4.5.0"
  306. mirage-tc
  307. mirage-vnetif-stack
  308. mjson
  309. mmdb < "0.3.0"
  310. mnd
  311. monocypher
  312. mqtt >= "0.2.2"
  313. mrmime >= "0.2.0"
  314. mrt-format
  315. msgpck >= "1.6"
  316. mssql >= "2.0.3"
  317. multibase
  318. multihash
  319. multihash-digestif
  320. multipart-form-data
  321. multipart_form
  322. multipart_form-eio
  323. multipart_form-lwt
  324. named-pipe
  325. nanoid
  326. nbd >= "4.0.3"
  327. nbd-tool
  328. nloge
  329. nocoiner
  330. non_empty_list
  331. OCADml >= "0.6.0"
  332. ocaml-r >= "0.4.0"
  333. ocaml-version >= "3.1.0"
  334. ocamlformat >= "0.13.0" & != "0.19.0~4.13preview" & < "0.25.1"
  335. ocamlformat-lib
  336. ocamlformat-rpc < "removed"
  337. ocamline
  338. ocluster < "0.3.0"
  339. octez-bls12-381-hash
  340. octez-bls12-381-signature
  341. octez-libs
  342. octez-mec
  343. odoc >= "1.4.0" & < "2.1.0"
  344. ohex
  345. oidc
  346. opam-0install
  347. opam-compiler
  348. opam-file-format >= "2.1.1"
  349. opentelemetry >= "0.6"
  350. opentelemetry-client-cohttp-lwt >= "0.6"
  351. opentelemetry-client-ocurl >= "0.6"
  352. opentelemetry-cohttp-lwt >= "0.6"
  353. opentelemetry-lwt >= "0.6"
  354. opium >= "0.15.0"
  355. opium-graphql
  356. opium-testing
  357. opium_kernel
  358. orewa
  359. orgeat
  360. ortac-core
  361. osnap < "0.3.0"
  362. osx-acl
  363. osx-attr
  364. osx-cf
  365. osx-fsevents
  366. osx-membership
  367. osx-mount
  368. osx-xattr
  369. otoggl
  370. owl >= "0.6.0" & != "0.9.0" & != "1.0.0"
  371. owl-base < "0.5.0"
  372. owl-ode >= "0.1.0" & != "0.2.0"
  373. owl-symbolic
  374. passmaker
  375. patch
  376. pbkdf
  377. pecu >= "0.2"
  378. pf-qubes
  379. pg_query >= "0.9.6"
  380. pgx >= "1.0"
  381. pgx_unix >= "1.0"
  382. pgx_value_core
  383. pgx_value_ptime
  384. phylogenetics
  385. piaf
  386. plebeia >= "2.0.0"
  387. polyglot
  388. polynomial
  389. ppx_blob >= "0.3.0"
  390. ppx_deriving_cmdliner
  391. ppx_deriving_qcheck
  392. ppx_deriving_rpc
  393. ppx_deriving_yaml
  394. ppx_graphql >= "0.2.0"
  395. ppx_inline_alcotest
  396. ppx_parser
  397. ppx_protocol_conv >= "5.0.0"
  398. ppx_protocol_conv_json >= "5.0.0"
  399. ppx_protocol_conv_jsonm >= "5.0.0"
  400. ppx_protocol_conv_msgpack >= "5.0.0"
  401. ppx_protocol_conv_xml_light >= "5.0.0"
  402. ppx_protocol_conv_xmlm
  403. ppx_protocol_conv_yaml >= "5.0.0"
  404. ppx_repr
  405. ppx_subliner
  406. ppx_units
  407. ppx_yojson >= "1.1.0"
  408. pratter
  409. prbnmcn-ucb1 >= "0.0.2"
  410. prc
  411. preface
  412. pretty_expressive
  413. prettym
  414. proc-smaps
  415. producer < "0.2.0"
  416. progress
  417. prom
  418. prometheus < "1.2"
  419. prometheus-app
  420. protocell
  421. protocol-9p >= "0.3" & < "0.11.0" | >= "0.11.2"
  422. protocol-9p-unix
  423. psq
  424. pyast
  425. qcheck >= "0.18"
  426. qcheck-alcotest
  427. qcheck-core >= "0.18"
  428. quickjs
  429. radis
  430. randii
  431. reason-standard
  432. reparse >= "2.0.0" & < "3.0.0"
  433. reparse-unix < "2.1.0"
  434. resp
  435. resp-unix >= "0.10.0"
  436. resto >= "0.8"
  437. rfc1951 < "1.0.0"
  438. routes < "2.0.0"
  439. rpc >= "7.1.0"
  440. rpclib >= "7.1.0"
  441. rpclib-async
  442. rpclib-lwt >= "7.1.0"
  443. rubytt
  444. SZXX >= "4.0.0"
  445. salsa20
  446. salsa20-core
  447. sanddb >= "0.2"
  448. scaml >= "1.5.0"
  449. scrypt-kdf
  450. secp256k1 >= "0.4.1"
  451. secp256k1-internal
  452. semver >= "0.2.1"
  453. sendmail
  454. sendmail-lwt
  455. sendmsg
  456. seqes
  457. server-reason-react
  458. session-cookie
  459. session-cookie-async
  460. session-cookie-lwt
  461. sherlodoc
  462. sihl < "0.2.0"
  463. sihl-type
  464. slug
  465. smol
  466. smol-helpers
  467. sodium-fmt
  468. solidity-alcotest
  469. spdx_licenses
  470. spectrum >= "0.2.0"
  471. spin >= "0.7.0"
  472. squirrel
  473. ssh-agent
  474. ssl >= "0.6.0"
  475. stramon-lib
  476. syslog-rfc5424
  477. tcpip >= "2.4.2" & < "3.4.2" | >= "6.2.0"
  478. tdigest < "2.1.0"
  479. terminal
  480. terminal_size >= "0.1.1"
  481. terminus
  482. terminus-cohttp
  483. terminus-hlc
  484. terml
  485. textmate-language >= "0.3.0"
  486. textrazor
  487. tezos-base-test-helpers < "17.1"
  488. tezos-bls12-381-polynomial
  489. tezos-client-base < "17.1"
  490. tezos-client-base-unix >= "13.0" & < "17.1"
  491. tezos-crypto >= "8.0" & < "9.0" | >= "11.0" & < "12.0" | >= "13.0" & < "17.1"
  492. tezos-crypto-dal < "17.1"
  493. tezos-error-monad >= "12.0" & < "17.1"
  494. tezos-event-logging-test-helpers < "17.1"
  495. tezos-lmdb
  496. tezos-micheline = "13.0"
  497. tezos-plompiler = "0.1.3"
  498. tezos-plonk = "0.1.3"
  499. tezos-shell-services >= "13.0" & < "17.1"
  500. tezos-signer-backends >= "8.0" & < "13.0"
  501. tezos-stdlib >= "8.0" & < "12.0" | >= "13.0" & < "17.1"
  502. tezos-test-helpers < "17.1"
  503. tezos-version >= "13.0" & < "17.1"
  504. tezos-webassembly-interpreter < "17.1"
  505. tftp
  506. timedesc
  507. timere
  508. timmy
  509. timmy-jsoo
  510. timmy-unix
  511. tls >= "0.12.0"
  512. toc
  513. topojson
  514. topojsone
  515. traits
  516. transept
  517. twostep
  518. type_eq
  519. type_id
  520. typebeat
  521. typeid >= "1.0.1"
  522. tyre >= "0.4"
  523. tyxml >= "4.0.0"
  524. tyxml-jsx
  525. tyxml-ppx >= "4.3.0"
  526. tyxml-syntax
  527. uecc
  528. ulid
  529. universal-portal
  530. unix-dirent
  531. unix-errno >= "0.3.0"
  532. unix-fcntl >= "0.3.0"
  533. unix-sys-resource
  534. unix-sys-stat
  535. unix-time
  536. unstrctrd
  537. uring < "0.4"
  538. user-agent-parser
  539. uspf
  540. uspf-lwt
  541. uspf-unix
  542. utop >= "2.13.0"
  543. validate
  544. validator
  545. vercel
  546. vpnkit
  547. wayland >= "2.0"
  548. wcwidth
  549. websocketaf
  550. x509 >= "0.7.0"
  551. xapi-rrd >= "1.8.2"
  552. xapi-stdext-date
  553. xapi-stdext-encodings
  554. xapi-stdext-std >= "4.16.0"
  555. yaml
  556. yaml-sexp
  557. yocaml
  558. yocaml_yaml
  559. yojson >= "1.6.0"
  560. yuscii >= "0.3.0"
  561. yuujinchou >= "1.0.0"
  562. zar
  563. zed >= "3.2.2"
  564. zlist < "0.4.0"

Conflicts (1)

  1. result < "1.5"