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

Conflicts (1)

  1. result < "1.5"
OCaml

Innovation. Community. Security.