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

Conflicts (1)

  1. result < "1.5"
OCaml

Innovation. Community. Security.