package alcotest

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

Install

dune-project
 Dependency

Authors

Maintainers

Sources

alcotest-1.7.0.tbz
sha256=812bacdb34b45e88995e07d7306bdab2f72479ef1996637f1d5d1f41667902df
sha512=4ae1ba318949ec9db8b87bc8072632a02f0e4003a95ab21e474f5c34c3b5bde867b0194a2d0ea7d9fc4580c70a30ca39287d33a8c134acc7611902f79c7b7ce8

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: 27 Feb 2023

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

OCaml-CI Build Status Alcotest Documentation


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.

Using Alcotest with opam and Dune

Add (alcotest :with-test) to the depends stanza of your dune-project file, or "alcotest" {with-test} to your opam file. Use the with-test package variable to declare your tests opam dependencies. Call opam to install them:

$ opam install --deps-only --with-test .

You can then declare your test and link with Alcotest: (test (libraries alcotest …) …), and run your tests:

$ dune runtest

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 directory 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 preferred 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 does random generation and property testing (e.g. Quick Check);
  • crowbar and bun are similar to qcheck, but use compiler-directed randomness, i.e. they take 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 >= "3.0"

Dev Dependencies (2)

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

Conflicts (1)

  1. result < "1.5"