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

Conflicts (1)

  1. result < "1.5"