package alcotest

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

Install

Dune 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.

Published: 12 Oct 2021

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][docs]. 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.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. ahrocksdb
  2. albatross >= "1.5.0"
  3. alcotest-async < "1.0.0" | = "1.5.0"
  4. alcotest-js < "1.6.0"
  5. alcotest-lwt < "1.0.0" | = "1.5.0"
  6. alcotest-mirage = "1.5.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_async
  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 < "1.2.3"
  64. capnp-rpc-lwt < "0.3"
  65. capnp-rpc-mirage >= "0.9.0"
  66. capnp-rpc-unix >= "0.9.0" & < "1.2.3"
  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. 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. dot-merlin-reader >= "5.3~5.3preview"
  162. dream
  163. dream-pure
  164. duff
  165. dune-release >= "1.0.0"
  166. duration >= "0.1.1"
  167. eio < "0.12"
  168. eio_linux < "0.12"
  169. eio_windows < "0.12"
  170. emile
  171. encore
  172. eqaf >= "0.5"
  173. equinoxe
  174. equinoxe-cohttp
  175. equinoxe-hlc
  176. eris
  177. eris-lwt
  178. ezgzip
  179. ezjsonm >= "0.4.2"
  180. ezjsonm-lwt
  181. FPauth
  182. FPauth-core
  183. FPauth-responses
  184. FPauth-strategies
  185. faraday != "0.2.0"
  186. farfadet
  187. fat-filesystem >= "0.12.0"
  188. ff
  189. ff-pbt
  190. flex-array
  191. fsevents-lwt
  192. functoria >= "2.2.0"
  193. functoria-runtime >= "2.2.0" & < "3.0.1" | = "3.1.2"
  194. geojson
  195. geoml >= "0.1.1"
  196. git = "1.4.10" | = "1.5.0" | >= "1.5.2" & != "1.10.0"
  197. git-cohttp
  198. git-cohttp-mirage
  199. git-cohttp-unix
  200. git-mirage
  201. git-split
  202. git-unix >= "1.10.0" & != "2.1.0"
  203. git_split
  204. gitlab-unix
  205. glicko2
  206. gmap >= "0.3.0"
  207. gobba
  208. gpt
  209. graphql
  210. graphql-async
  211. graphql-cohttp >= "0.13.0"
  212. graphql-lwt
  213. graphql_parser != "0.11.0"
  214. graphql_ppx >= "0.7.1"
  215. h1
  216. h1_parser
  217. h2
  218. hacl
  219. hacl-star >= "0.6.0" & < "0.7.2"
  220. hacl_func
  221. hacl_x25519 >= "0.2.0"
  222. highlexer
  223. hkdf
  224. hockmd
  225. html_of_jsx
  226. http
  227. http-multipart-formdata < "2.0.0"
  228. httpaf >= "0.2.0"
  229. httpun
  230. httpun-ws
  231. hvsock
  232. icalendar >= "0.1.4"
  233. imagelib >= "20200929"
  234. index
  235. inferno >= "20220603"
  236. influxdb-async
  237. influxdb-lwt
  238. inquire < "0.2.0"
  239. interval-map
  240. iomux
  241. irmin < "0.8.0" | >= "0.9.6" & != "0.11.1" & < "1.0.0" | >= "2.0.0" & != "2.3.0"
  242. irmin-bench >= "2.7.0"
  243. irmin-chunk < "1.3.0" | >= "2.3.0"
  244. irmin-cli
  245. irmin-containers
  246. irmin-fs < "1.3.0" | >= "2.3.0"
  247. irmin-git < "2.0.0" | >= "2.3.0"
  248. irmin-graphql >= "2.3.0"
  249. irmin-http < "2.0.0"
  250. irmin-mem < "1.3.0" | >= "2.3.0"
  251. irmin-pack >= "2.4.0" & != "2.6.1"
  252. irmin-pack-tools
  253. irmin-test >= "2.2.0" & < "3.4.0"
  254. irmin-tezos
  255. irmin-tezos-utils
  256. irmin-unix >= "1.0.0" & < "1.3.3" | >= "2.4.0" & != "2.6.1"
  257. irmin-watcher != "0.3.0"
  258. jekyll-format
  259. jerboa
  260. jitsu
  261. jose
  262. json-data-encoding >= "0.9"
  263. json_decoder
  264. jsonxt
  265. junit_alcotest
  266. jwto
  267. kdf
  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. logical
  280. logtk >= "1.6"
  281. lp
  282. lp-glpk
  283. lp-glpk-js
  284. lp-gurobi
  285. lru
  286. lt-code
  287. luv
  288. mbr-format >= "1.0.0"
  289. mdx >= "1.6.0"
  290. mec
  291. mechaml = "1.0.0" | >= "1.2.1"
  292. merge-queues >= "0.2.0"
  293. merge-ropes >= "0.2.0"
  294. merlin >= "4.17.1-414" & < "5.0-502" | >= "5.2.1-502"
  295. merlin-lib >= "4.17.1-414" & < "5.0-502" | >= "5.2.1-502"
  296. metrics
  297. middleware
  298. mimic
  299. minicaml = "0.3.1" | >= "0.4"
  300. mirage >= "4.0.0~beta1"
  301. mirage-block-partition
  302. mirage-block-ramdisk = "0.3"
  303. mirage-channel >= "4.0.0"
  304. mirage-channel-lwt < "3.1.0"
  305. mirage-crypto-ec != "0.9.2"
  306. mirage-flow >= "1.0.2" & < "1.2.0"
  307. mirage-flow-unix != "1.3.0" & < "1.5.0" | = "2.0.0" | >= "3.0.0"
  308. mirage-fs-mem
  309. mirage-fs-unix >= "1.2.0" & < "1.4.1"
  310. mirage-kv >= "2.0.0"
  311. mirage-kv-mem
  312. mirage-kv-unix >= "3.0.0"
  313. mirage-logs >= "0.3.0"
  314. mirage-nat
  315. mirage-net-unix >= "2.3.0"
  316. mirage-runtime >= "4.0.0~beta1" & < "4.5.0"
  317. mirage-tc
  318. mirage-vnetif-stack
  319. mjson
  320. mmdb < "0.3.0"
  321. mnd
  322. monocypher
  323. mqtt >= "0.2.2"
  324. mrmime >= "0.2.0"
  325. mrt-format
  326. msgpck >= "1.6"
  327. mssql >= "2.0.3"
  328. multibase
  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. obatcher
  344. ocaml-index >= "1.1"
  345. ocaml-r >= "0.4.0"
  346. ocaml-version >= "3.1.0"
  347. ocamlformat >= "0.13.0" & != "0.19.0~4.13preview" & < "0.25.1"
  348. ocamlformat-lib
  349. ocamlformat-rpc < "removed"
  350. ocamline
  351. ocluster < "0.3.0"
  352. octez-bls12-381-hash
  353. octez-bls12-381-signature
  354. octez-libs
  355. octez-mec
  356. odoc >= "1.4.0" & < "2.1.0"
  357. ohex
  358. oidc
  359. opam-0install
  360. opam-0install-cudf >= "0.5.0"
  361. opam-compiler
  362. opam-file-format >= "2.1.1"
  363. opentelemetry >= "0.6"
  364. opentelemetry-client-cohttp-lwt >= "0.6"
  365. opentelemetry-client-ocurl >= "0.6"
  366. opentelemetry-cohttp-lwt >= "0.6"
  367. opentelemetry-lwt >= "0.6"
  368. opium >= "0.15.0"
  369. opium-graphql
  370. opium-testing
  371. opium_kernel
  372. orewa
  373. orgeat
  374. ortac-core
  375. osnap < "0.3.0"
  376. osx-acl
  377. osx-attr
  378. osx-cf
  379. osx-fsevents
  380. osx-membership
  381. osx-mount
  382. osx-xattr
  383. otoggl
  384. owl >= "0.6.0" & != "0.9.0" & != "1.0.0"
  385. owl-base < "0.5.0"
  386. owl-ode >= "0.1.0" & != "0.2.0"
  387. owl-symbolic
  388. passmaker
  389. patch
  390. pbkdf
  391. pecu >= "0.2"
  392. pf-qubes
  393. pg_query >= "0.9.6"
  394. pgx >= "1.0"
  395. pgx_unix >= "1.0"
  396. pgx_value_core
  397. pgx_value_ptime
  398. phylogenetics
  399. piaf
  400. plebeia >= "2.0.0"
  401. polyglot
  402. polynomial
  403. ppx_blob >= "0.3.0"
  404. ppx_deriving_cmdliner
  405. ppx_deriving_qcheck
  406. ppx_deriving_rpc
  407. ppx_deriving_yaml
  408. ppx_graphql >= "0.2.0"
  409. ppx_inline_alcotest
  410. ppx_parser
  411. ppx_protocol_conv >= "5.0.0"
  412. ppx_protocol_conv_json >= "5.0.0"
  413. ppx_protocol_conv_jsonm >= "5.0.0"
  414. ppx_protocol_conv_msgpack >= "5.0.0"
  415. ppx_protocol_conv_xml_light >= "5.0.0"
  416. ppx_protocol_conv_xmlm
  417. ppx_protocol_conv_yaml >= "5.0.0"
  418. ppx_repr
  419. ppx_subliner
  420. ppx_units
  421. ppx_yojson >= "1.1.0"
  422. pratter
  423. prbnmcn-ucb1 >= "0.0.2"
  424. prc
  425. preface
  426. pretty_expressive
  427. prettym
  428. proc-smaps
  429. producer < "0.2.0"
  430. progress
  431. prom
  432. prometheus < "1.2"
  433. prometheus-app
  434. protocell
  435. protocol-9p >= "0.3" & < "0.11.0" | >= "0.11.2"
  436. protocol-9p-unix
  437. psq
  438. pyast
  439. qcheck >= "0.18"
  440. qcheck-alcotest
  441. qcheck-core >= "0.18"
  442. quickjs
  443. radis
  444. randii
  445. reason-standard
  446. red-black-tree
  447. reparse >= "2.0.0" & < "3.0.0"
  448. reparse-unix < "2.1.0"
  449. resp
  450. resp-unix >= "0.10.0"
  451. resto >= "0.8"
  452. rfc1951 < "1.0.0"
  453. routes < "2.0.0"
  454. rpc >= "7.1.0"
  455. rpclib >= "7.1.0"
  456. rpclib-async
  457. rpclib-lwt >= "7.1.0"
  458. rpmfile < "0.3.0"
  459. rpmfile-eio
  460. rpmfile-unix
  461. rubytt
  462. SZXX >= "4.0.0"
  463. salsa20
  464. salsa20-core
  465. sanddb >= "0.2"
  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. sendmail-miou-unix
  474. sendmail-mirage
  475. sendmsg
  476. seqes
  477. server-reason-react
  478. session-cookie
  479. session-cookie-async
  480. session-cookie-lwt
  481. sherlodoc
  482. sihl < "0.2.0"
  483. sihl-type
  484. slug
  485. smol
  486. smol-helpers
  487. sodium-fmt
  488. solidity-alcotest
  489. spdx_licenses
  490. spectrum >= "0.2.0"
  491. spin >= "0.7.0"
  492. squirrel
  493. ssh-agent
  494. ssl >= "0.6.0"
  495. stramon-lib
  496. styled-ppx
  497. syslog-rfc5424
  498. tcpip >= "2.4.2" & < "3.4.2" | >= "6.2.0"
  499. tdigest < "2.1.0"
  500. term-indexing
  501. term-tools
  502. terminal
  503. terminal_size >= "0.1.1"
  504. terminus
  505. terminus-cohttp
  506. terminus-hlc
  507. terml
  508. textmate-language >= "0.3.0"
  509. textrazor
  510. tezos-base-test-helpers < "17.1"
  511. tezos-bls12-381-polynomial
  512. tezos-client-base < "17.1"
  513. tezos-client-base-unix >= "13.0" & < "17.1"
  514. tezos-crypto >= "8.0" & < "9.0" | >= "11.0" & < "12.0" | >= "13.0" & < "17.1"
  515. tezos-crypto-dal < "17.1"
  516. tezos-error-monad >= "12.0" & < "17.1"
  517. tezos-event-logging-test-helpers < "17.1"
  518. tezos-lmdb
  519. tezos-micheline = "13.0"
  520. tezos-plompiler = "0.1.3"
  521. tezos-plonk = "0.1.3"
  522. tezos-shell-services >= "13.0" & < "17.1"
  523. tezos-signer-backends >= "8.0" & < "13.0"
  524. tezos-stdlib >= "8.0" & < "12.0" | >= "13.0" & < "17.1"
  525. tezos-test-helpers < "17.1"
  526. tezos-version >= "13.0" & < "17.1"
  527. tezos-webassembly-interpreter < "17.1"
  528. tftp
  529. timedesc
  530. timere
  531. timmy
  532. timmy-jsoo
  533. timmy-lwt
  534. timmy-unix
  535. tls >= "0.12.0"
  536. toc
  537. topojson
  538. topojsone
  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-mirage
  566. uspf-unix
  567. utop >= "2.13.0"
  568. validate
  569. validator
  570. vercel
  571. vpnkit
  572. wayland >= "2.0"
  573. wcwidth
  574. websocketaf
  575. x509 >= "0.7.0"
  576. xapi-rrd >= "1.8.2"
  577. xapi-stdext-date
  578. xapi-stdext-encodings
  579. xapi-stdext-std >= "4.16.0"
  580. yaml
  581. yaml-sexp
  582. yocaml
  583. yocaml_syndication >= "2.0.0"
  584. yocaml_yaml < "2.0.0"
  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.