package alcotest

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

Install

Dune 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

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.

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 (1)

  1. odoc with-doc

  1. ahrocksdb
  2. albatross >= "1.5.0"
  3. alcotest-async < "1.0.0" | >= "1.7.0"
  4. alcotest-js >= "1.7.0"
  5. alcotest-lwt < "1.0.0" | >= "1.7.0"
  6. alcotest-mirage >= "1.7.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. backoff
  32. base32
  33. base64 >= "2.1.2" & < "3.2.0" | >= "3.4.0"
  34. bastet
  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
  62. capnp-rpc-lwt < "0.3"
  63. capnp-rpc-mirage >= "0.9.0"
  64. capnp-rpc-unix >= "0.9.0"
  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"
  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-local-await >= "0.2.1"
  159. domain-local-timeout
  160. domain-name
  161. dream
  162. dream-htmx
  163. dream-pure
  164. dscheck >= "0.1.1"
  165. duff
  166. dune-release >= "1.0.0"
  167. duration >= "0.1.1"
  168. eio < "0.12"
  169. eio_linux
  170. eio_windows
  171. emile
  172. encore
  173. eqaf >= "0.5"
  174. equinoxe
  175. equinoxe-cohttp
  176. equinoxe-hlc
  177. eris
  178. eris-lwt
  179. ezgzip
  180. ezjsonm >= "0.4.2"
  181. ezjsonm-lwt
  182. FPauth
  183. FPauth-core
  184. FPauth-responses
  185. FPauth-strategies
  186. faraday != "0.2.0"
  187. farfadet
  188. fat-filesystem >= "0.12.0"
  189. ff
  190. ff-pbt
  191. flex-array
  192. fsevents-lwt
  193. functoria >= "2.2.0"
  194. functoria-runtime >= "2.2.0" & < "3.0.1" | = "3.1.2"
  195. geojson
  196. geoml >= "0.1.1"
  197. git = "1.4.10" | = "1.5.0" | >= "1.5.2" & != "1.10.0"
  198. git-cohttp
  199. git-cohttp-mirage
  200. git-cohttp-unix
  201. git-mirage
  202. git-unix >= "1.10.0" & != "2.1.0"
  203. gitlab-unix
  204. glicko2
  205. gmap >= "0.3.0"
  206. gobba
  207. gpt
  208. graphql
  209. graphql-async
  210. graphql-cohttp >= "0.13.0"
  211. graphql-lwt
  212. graphql_parser != "0.11.0"
  213. graphql_ppx >= "0.7.1"
  214. h1_parser
  215. h2
  216. hacl
  217. hacl-star >= "0.6.0"
  218. hacl_func
  219. hacl_x25519 >= "0.2.0"
  220. highlexer
  221. hkdf
  222. hockmd
  223. html_of_jsx
  224. http
  225. http-multipart-formdata < "2.0.0"
  226. httpaf >= "0.2.0"
  227. hvsock
  228. icalendar >= "0.1.4"
  229. imagelib >= "20200929"
  230. index
  231. inferno >= "20220603"
  232. influxdb-async
  233. influxdb-lwt
  234. inquire < "0.2.0"
  235. interval-map
  236. iomux
  237. irmin < "0.8.0" | >= "0.9.6" & != "0.11.1" & < "1.0.0" | >= "2.0.0" & != "2.3.0"
  238. irmin-bench >= "2.7.0"
  239. irmin-chunk < "1.3.0" | >= "2.3.0"
  240. irmin-cli
  241. irmin-containers
  242. irmin-fs < "1.3.0" | >= "2.3.0"
  243. irmin-git < "2.0.0" | >= "2.3.0"
  244. irmin-graphql >= "2.3.0"
  245. irmin-http < "2.0.0"
  246. irmin-mem < "1.3.0" | >= "2.3.0"
  247. irmin-pack >= "2.4.0" & != "2.6.1"
  248. irmin-pack-tools
  249. irmin-test >= "2.2.0" & < "3.4.0" | >= "3.9.0"
  250. irmin-tezos
  251. irmin-tezos-utils
  252. irmin-unix >= "1.0.0" & < "1.3.3" | >= "2.4.0" & != "2.6.1"
  253. irmin-watcher != "0.3.0"
  254. jekyll-format
  255. jerboa
  256. jitsu
  257. jose
  258. json-data-encoding >= "0.9"
  259. json_decoder
  260. jsonxt
  261. junit_alcotest
  262. jwto
  263. kcas >= "0.6.0"
  264. kcas_data >= "0.6.0"
  265. ke >= "0.2"
  266. kkmarkdown
  267. kmt
  268. lambda-runtime
  269. lambda_streams
  270. lambda_streams_async
  271. lambdapi >= "2.0.0"
  272. lambdoc >= "1.0-beta4"
  273. ledgerwallet-tezos >= "0.2.1" & < "0.4.0"
  274. letters
  275. lmdb >= "1.0"
  276. lockfree >= "0.3.0"
  277. logical
  278. logtk >= "1.6"
  279. lp
  280. lp-glpk
  281. lp-glpk-js
  282. lp-gurobi
  283. lru
  284. lt-code
  285. luv
  286. mbr-format >= "1.0.0"
  287. mdx >= "1.6.0"
  288. mec
  289. mechaml = "1.0.0" | >= "1.2.1"
  290. merge-queues >= "0.2.0"
  291. merge-ropes >= "0.2.0"
  292. metrics
  293. middleware
  294. mimic
  295. minicaml = "0.3.1" | >= "0.4"
  296. mirage >= "4.0.0~beta1"
  297. mirage-block-partition
  298. mirage-block-ramdisk = "0.3"
  299. mirage-channel >= "4.0.0"
  300. mirage-channel-lwt < "3.1.0"
  301. mirage-crypto-ec != "0.9.2"
  302. mirage-flow >= "1.0.2" & < "1.2.0"
  303. mirage-flow-unix != "1.3.0" & < "1.5.0" | = "2.0.0" | >= "3.0.0"
  304. mirage-fs-mem
  305. mirage-fs-unix >= "1.2.0" & < "1.4.1"
  306. mirage-kv >= "2.0.0"
  307. mirage-kv-mem
  308. mirage-kv-unix >= "3.0.0"
  309. mirage-logs >= "0.3.0"
  310. mirage-nat
  311. mirage-net-unix >= "2.3.0"
  312. mirage-runtime >= "4.0.0~beta1" & < "4.5.0"
  313. mirage-tc
  314. mirage-vnetif-stack
  315. mjson
  316. mmdb < "0.3.0"
  317. mnd
  318. monocypher
  319. mqtt >= "0.2.2"
  320. mrmime >= "0.2.0"
  321. mrt-format
  322. msgpck >= "1.6"
  323. mssql >= "2.0.3"
  324. multibase
  325. multicore-magic >= "1.0.1"
  326. multihash
  327. multihash-digestif
  328. multipart-form-data
  329. multipart_form
  330. multipart_form-eio
  331. multipart_form-lwt
  332. named-pipe
  333. nanoid
  334. nbd >= "4.0.3"
  335. nbd-tool
  336. nloge
  337. nocoiner
  338. non_empty_list
  339. OCADml >= "0.6.0"
  340. ocaml-r >= "0.4.0"
  341. ocaml-version >= "3.1.0"
  342. ocamlformat >= "0.13.0" & != "0.19.0~4.13preview" & < "0.25.1"
  343. ocamlformat-lib
  344. ocamlformat-rpc < "removed"
  345. ocamline
  346. ocluster
  347. octez-bls12-381-hash
  348. octez-bls12-381-signature
  349. octez-libs
  350. octez-mec
  351. odoc >= "1.4.0" & < "2.1.0"
  352. ohex
  353. oidc
  354. opam-0install
  355. opam-compiler
  356. opam-file-format >= "2.1.1"
  357. opentelemetry >= "0.6"
  358. opentelemetry-client-cohttp-lwt >= "0.6"
  359. opentelemetry-client-ocurl >= "0.6"
  360. opentelemetry-cohttp-lwt >= "0.6"
  361. opentelemetry-lwt >= "0.6"
  362. opium >= "0.15.0"
  363. opium-graphql
  364. opium-testing
  365. opium_kernel
  366. orewa
  367. orgeat
  368. ortac-core
  369. osnap < "0.3.0"
  370. osx-acl
  371. osx-attr
  372. osx-cf
  373. osx-fsevents
  374. osx-membership
  375. osx-mount
  376. osx-xattr
  377. otoggl
  378. owl >= "0.6.0" & != "0.9.0" & != "1.0.0"
  379. owl-base < "0.5.0"
  380. owl-ode >= "0.1.0" & != "0.2.0"
  381. owl-symbolic
  382. par_incr
  383. passmaker
  384. patch
  385. pbkdf
  386. pecu >= "0.2"
  387. pf-qubes
  388. pg_query >= "0.9.6"
  389. pgx >= "1.0"
  390. pgx_unix >= "1.0"
  391. pgx_value_core
  392. pgx_value_ptime
  393. phylogenetics
  394. piaf
  395. picos
  396. piece_rope
  397. plebeia >= "2.0.0"
  398. polyglot
  399. polynomial
  400. ppx_blob >= "0.3.0"
  401. ppx_catch
  402. ppx_deriving_cmdliner
  403. ppx_deriving_qcheck
  404. ppx_deriving_rpc
  405. ppx_deriving_yaml
  406. ppx_graphql >= "0.2.0"
  407. ppx_inline_alcotest
  408. ppx_map
  409. ppx_parser
  410. ppx_protocol_conv >= "5.0.0"
  411. ppx_protocol_conv_json >= "5.0.0"
  412. ppx_protocol_conv_jsonm >= "5.0.0"
  413. ppx_protocol_conv_msgpack >= "5.0.0"
  414. ppx_protocol_conv_xml_light >= "5.0.0"
  415. ppx_protocol_conv_xmlm
  416. ppx_protocol_conv_yaml >= "5.0.0"
  417. ppx_repr
  418. ppx_subliner
  419. ppx_units
  420. ppx_yojson >= "1.1.0"
  421. pratter
  422. prbnmcn-ucb1 >= "0.0.2"
  423. prc
  424. preface
  425. pretty_expressive
  426. prettym
  427. proc-smaps
  428. producer
  429. progress
  430. prom
  431. prometheus < "1.2"
  432. prometheus-app
  433. protocell
  434. protocol-9p >= "0.3" & < "0.11.0" | >= "0.11.2"
  435. protocol-9p-unix
  436. psq
  437. pyast
  438. qcheck >= "0.18"
  439. qcheck-alcotest
  440. qcheck-core >= "0.18"
  441. quickjs
  442. radis
  443. randii
  444. reason-standard
  445. reparse >= "2.0.0" & < "3.0.0"
  446. reparse-unix < "2.1.0"
  447. resp
  448. resp-unix >= "0.10.0"
  449. resto >= "0.9"
  450. rfc1951 < "1.0.0"
  451. routes < "2.0.0"
  452. rpc >= "7.1.0"
  453. rpclib >= "7.1.0"
  454. rpclib-async
  455. rpclib-lwt >= "7.1.0"
  456. rubytt
  457. SZXX >= "4.0.0"
  458. salsa20
  459. salsa20-core
  460. sanddb >= "0.2"
  461. saturn < "0.4.1"
  462. saturn_lockfree < "0.4.1"
  463. scaml >= "1.5.0"
  464. scrypt-kdf
  465. secp256k1 >= "0.4.1"
  466. secp256k1-internal
  467. semver >= "0.2.1"
  468. sendmail
  469. sendmail-lwt
  470. sendmsg
  471. seqes
  472. server-reason-react
  473. session-cookie
  474. session-cookie-async
  475. session-cookie-lwt
  476. sherlodoc
  477. sihl < "0.2.0"
  478. sihl-type
  479. slug
  480. smol
  481. smol-helpers
  482. sodium-fmt
  483. solidity-alcotest
  484. spdx_licenses
  485. spectrum >= "0.2.0"
  486. spin >= "0.7.0"
  487. squirrel
  488. ssh-agent
  489. ssl >= "0.6.0"
  490. starred_ml
  491. stramon-lib
  492. syslog-rfc5424
  493. tabr
  494. tar-mirage >= "2.4.0"
  495. tcpip >= "2.4.2" & < "3.4.2" | >= "6.2.0"
  496. tdigest < "2.1.0"
  497. terminal
  498. terminal_size >= "0.1.1"
  499. terminus
  500. terminus-cohttp
  501. terminus-hlc
  502. terml
  503. textmate-language >= "0.3.0"
  504. textrazor
  505. tezos-base-test-helpers < "17.1"
  506. tezos-bls12-381-polynomial
  507. tezos-client-base < "17.1"
  508. tezos-client-base-unix >= "13.0" & < "17.1"
  509. tezos-crypto >= "8.0" & < "9.0" | >= "11.0" & < "12.0" | >= "13.0" & < "17.1"
  510. tezos-crypto-dal < "17.1"
  511. tezos-error-monad >= "12.0" & < "17.1"
  512. tezos-event-logging-test-helpers < "17.1"
  513. tezos-lmdb
  514. tezos-micheline = "13.0"
  515. tezos-plompiler = "0.1.3"
  516. tezos-plonk = "0.1.3"
  517. tezos-shell-services >= "13.0" & < "17.1"
  518. tezos-signer-backends >= "8.0" & < "13.0"
  519. tezos-stdlib >= "8.0" & < "12.0" | >= "13.0" & < "17.1"
  520. tezos-test-helpers < "17.1"
  521. tezos-version >= "13.0" & < "17.1"
  522. tezos-webassembly-interpreter < "17.1"
  523. tftp
  524. thread-table
  525. timedesc
  526. timere
  527. timmy
  528. timmy-jsoo
  529. timmy-unix
  530. tls >= "0.12.0"
  531. toc
  532. topojson
  533. topojsone
  534. traits
  535. transept
  536. twostep
  537. type_eq
  538. type_id
  539. typebeat
  540. typeid >= "1.0.1"
  541. tyre >= "0.4"
  542. tyxml >= "4.0.0"
  543. tyxml-jsx
  544. tyxml-ppx >= "4.3.0"
  545. tyxml-syntax
  546. uecc
  547. ulid
  548. universal-portal
  549. unix-dirent
  550. unix-errno >= "0.3.0"
  551. unix-fcntl >= "0.3.0"
  552. unix-sys-resource
  553. unix-sys-stat
  554. unix-time
  555. unstrctrd
  556. uring < "0.4"
  557. user-agent-parser
  558. uspf
  559. uspf-lwt
  560. uspf-unix
  561. utop >= "2.13.0"
  562. validate
  563. validator
  564. vercel
  565. vpnkit
  566. wayland >= "2.0"
  567. websocketaf
  568. x509 >= "0.7.0"
  569. xapi-rrd >= "1.8.2"
  570. xapi-stdext-date
  571. xapi-stdext-encodings
  572. xapi-stdext-std >= "4.16.0"
  573. yaml
  574. yaml-sexp
  575. yocaml
  576. yocaml_yaml
  577. yojson >= "1.6.0"
  578. yuscii >= "0.3.0"
  579. yuujinchou >= "1.0.0"
  580. zar
  581. zed >= "3.2.2"
  582. zlist < "0.4.0"

Conflicts (1)

  1. result < "1.5"