package alcotest

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

Install

Dune Dependency

Authors

Maintainers

Sources

alcotest-1.6.0.tbz
sha256=fd00f9668395874ff3b1d7ef566d14efc02fa7dd34123eb25d59355be94b2329
sha512=69a7ef300ba10a9ccb1e25b1cfdb0a0abf9ca976864a52a22f0e1fae1e5d1cbeb99498c086230b839ee9da4d0fd71e63686e126ca42221537f3fdb6f6c5aae95

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: 24 Jun 2022

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. 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.1.0"
  6. astring
  7. fmt >= "0.8.7"
  8. ocaml >= "4.05.0"
  9. dune >= "2.8"

Dev Dependencies (1)

  1. odoc with-doc

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

Conflicts (1)

  1. result < "1.5"