package alcotest

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

Install

dune-project
 Dependency

Authors

Maintainers

Sources

alcotest-1.8.0.tbz
sha256=cba1bd01707c8c55b4764bb0df8c9c732be321e1f1c1a96a406e56d8dbca1d0e
sha512=eebb034c990abd253f526e848a99881686d7bd3c7d1b1d373953d568d062e3d5aaa79b6b4807455aaa9a98710eca4ada30e816a0134717a380619a597575564d

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: 25 Jul 2024

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.2.0"
  6. astring
  7. fmt >= "0.8.7"
  8. ocaml >= "4.08"
  9. dune >= "3.0"

Dev Dependencies (1)

  1. odoc with-doc

  1. ahrocksdb
  2. albatross >= "1.5.4"
  3. alg_structs_qcheck
  4. algaeff
  5. ambient-context
  6. ambient-context-eio
  7. ambient-context-lwt
  8. angstrom >= "0.7.0"
  9. ansi >= "0.6.0"
  10. anycache >= "0.7.4"
  11. anycache-async
  12. anycache-lwt
  13. archetype >= "1.4.2"
  14. archi
  15. arp
  16. arrakis < "1.1.0"
  17. art
  18. asai
  19. asak >= "0.2"
  20. asli >= "0.2.0"
  21. asn1-combinators >= "0.2.5"
  22. atd >= "2.3.3"
  23. atdgen >= "2.10.0"
  24. atdpy
  25. atdts
  26. backoff
  27. base32
  28. base64 >= "2.1.2" & < "3.2.0" | >= "3.4.0"
  29. bastet
  30. bastet_lwt
  31. bech32
  32. bechamel >= "0.5.0"
  33. bigarray-overlap
  34. bigstringaf
  35. bitlib
  36. blake2
  37. bloomf
  38. bls12-381 < "0.4.1" | >= "3.0.0" & < "18.0"
  39. bls12-381-hash
  40. bls12-381-js >= "0.4.2"
  41. bls12-381-js-gen >= "0.4.2"
  42. bls12-381-legacy
  43. bls12-381-signature
  44. bls12-381-unix
  45. blurhash
  46. brisk-reconciler
  47. builder-web
  48. bytebuffer
  49. ca-certs
  50. ca-certs-nss
  51. cachet
  52. cachet-lwt
  53. cachet-solo5
  54. cactus
  55. caldav
  56. calendar >= "3.0.0"
  57. callipyge
  58. camlix
  59. camlkit
  60. camlkit-base
  61. capnp-rpc
  62. capnp-rpc-unix
  63. caqti >= "1.7.0"
  64. caqti-async >= "1.7.0"
  65. caqti-driver-mariadb >= "1.7.0"
  66. caqti-driver-postgresql >= "1.7.0"
  67. caqti-driver-sqlite3 >= "1.7.0"
  68. caqti-dynload >= "2.0.1"
  69. caqti-eio
  70. caqti-lwt >= "1.7.0"
  71. caqti-miou
  72. carray
  73. carton < "1.0.0"
  74. carton-git
  75. carton-lwt >= "0.4.3" & < "1.0.0"
  76. catala >= "0.6.0"
  77. cborl
  78. cf-lwt
  79. chacha
  80. chamelon
  81. chamelon-unix
  82. charrua-client
  83. charrua-server
  84. checked_oint
  85. checkseum >= "0.0.3"
  86. cid
  87. clarity-lang
  88. class_group_vdf
  89. cohttp
  90. cohttp-curl-async
  91. cohttp-curl-lwt
  92. cohttp-eio >= "6.0.0~beta2"
  93. colombe >= "0.2.0"
  94. color
  95. commons
  96. conan
  97. conan-cli
  98. conan-database
  99. conan-lwt
  100. conan-unix
  101. conex < "0.10.0"
  102. conex-mirage-crypto
  103. conformist
  104. cookie
  105. corosync
  106. cow >= "2.2.0"
  107. css
  108. css-parser
  109. cstruct
  110. cstruct-sexp
  111. ctypes-zarith
  112. cuid
  113. curly
  114. current
  115. current-albatross-deployer
  116. current_git >= "0.7.1"
  117. current_incr
  118. data-encoding
  119. dates_calc
  120. dbase4
  121. decimal >= "0.3.0"
  122. decompress
  123. depyt
  124. digestif >= "0.9.0"
  125. dirsp-exchange-kbb2017
  126. dirsp-proscript-mirage
  127. dirsp-ps2ocaml
  128. dispatch >= "0.4.1"
  129. dkim
  130. dkim-bin
  131. dkim-mirage
  132. dkml-dune-dsl-show
  133. dkml-install
  134. dkml-install-installer
  135. dkml-install-runner
  136. dkml-package-console
  137. dns >= "4.4.1"
  138. dns-cli
  139. dns-client >= "4.6.3"
  140. dns-forward-lwt-unix
  141. dns-resolver
  142. dns-server
  143. dns-tsig
  144. dnssd
  145. dnssec
  146. docfd >= "2.2.0"
  147. dockerfile >= "8.2.7"
  148. domain-local-await >= "0.2.1"
  149. domain-local-timeout
  150. domain-name
  151. dream
  152. dream-htmx
  153. dream-pure
  154. dscheck >= "0.1.1"
  155. duff
  156. dune-deps >= "1.4.0"
  157. dune-release >= "1.0.0"
  158. duration
  159. echo
  160. eio < "0.12"
  161. eio_linux
  162. eio_windows
  163. emile
  164. encore
  165. eqaf >= "0.5"
  166. equinoxe
  167. equinoxe-cohttp
  168. equinoxe-hlc
  169. ezgzip
  170. ezjsonm
  171. ezjsonm-lwt
  172. FPauth
  173. FPauth-core
  174. FPauth-responses
  175. FPauth-strategies
  176. faraday != "0.2.0"
  177. farfadet
  178. fat-filesystem
  179. ff
  180. ff-pbt
  181. flex-array
  182. forester >= "5.0"
  183. fsevents-lwt
  184. functoria
  185. fungi
  186. geojson
  187. geoml >= "0.1.1"
  188. git
  189. git-cohttp
  190. git-cohttp-unix
  191. git-kv != "0.1.3"
  192. git-mirage
  193. git-net
  194. git-split
  195. git-unix
  196. gitlab-unix
  197. glicko2
  198. gmap
  199. gobba
  200. gpt
  201. graphql
  202. graphql-async
  203. graphql-cohttp >= "0.13.0"
  204. graphql-lwt
  205. graphql_parser != "0.11.0"
  206. graphql_ppx
  207. h1
  208. h1_parser
  209. h2
  210. hacl
  211. hacl-star >= "0.6.0"
  212. hacl_func
  213. hacl_x25519
  214. highlexer
  215. hkdf
  216. hockmd
  217. html_of_jsx
  218. http
  219. http-multipart-formdata < "2.0.0"
  220. httpaf >= "0.2.0"
  221. httpcats
  222. httpun
  223. httpun-ws
  224. hugin
  225. hvsock
  226. icalendar
  227. imagelib
  228. index
  229. inferno >= "20220603"
  230. influxdb-async
  231. influxdb-lwt
  232. inquire < "0.2.0"
  233. interval-map
  234. iomux
  235. irmin
  236. irmin-bench
  237. irmin-chunk
  238. irmin-cli
  239. irmin-containers
  240. irmin-fs
  241. irmin-git
  242. irmin-graphql
  243. irmin-pack
  244. irmin-pack-tools
  245. irmin-test != "3.6.1"
  246. irmin-tezos
  247. irmin-unix
  248. irmin-watcher
  249. jekyll-format
  250. jose
  251. json-data-encoding >= "0.9"
  252. json_decoder
  253. jsonxt
  254. junit_alcotest < "2.3.0"
  255. jwto
  256. kaun
  257. kcas >= "0.6.0"
  258. kcas_data >= "0.6.0"
  259. kdf
  260. ke >= "0.2"
  261. kkmarkdown
  262. kmt
  263. lambda-runtime
  264. lambda_streams
  265. lambda_streams_async
  266. lambdapi
  267. ledgerwallet-tezos >= "0.2.1" & < "0.4.0"
  268. letters
  269. lmdb >= "1.0"
  270. lockfree >= "0.3.1"
  271. logical
  272. logtk >= "1.6"
  273. lp
  274. lp-glpk
  275. lp-glpk-js < "0.5.0"
  276. lp-gurobi < "0.5.0"
  277. lru
  278. lt-code
  279. luv
  280. mazeppa
  281. mbr-format
  282. mdx >= "1.6.0"
  283. mec
  284. mechaml >= "1.2.1"
  285. merlin = "4.17.1-501"
  286. merlin-lib >= "4.17.1-501"
  287. metrics
  288. middleware
  289. mimic
  290. minicaml = "0.3.1" | >= "0.4"
  291. mirage >= "4.0.0"
  292. mirage-block-partition
  293. mirage-block-ramdisk
  294. mirage-channel >= "4.0.1"
  295. mirage-crypto-ec
  296. mirage-flow-unix
  297. mirage-kv >= "2.0.0"
  298. mirage-kv-mem
  299. mirage-kv-unix >= "3.0.0"
  300. mirage-logs
  301. mirage-nat
  302. mirage-net-unix
  303. mirage-runtime < "4.7.0"
  304. mirage-tc
  305. mjson
  306. mmdb < "0.3.0"
  307. mnd
  308. mqtt
  309. mrmime >= "0.2.0"
  310. msgpck >= "1.6"
  311. mssql >= "2.0.3"
  312. multibase
  313. multicore-magic
  314. multihash
  315. multihash-digestif
  316. multipart-form-data
  317. multipart_form
  318. multipart_form-eio
  319. multipart_form-lwt
  320. named-pipe
  321. nanoid
  322. nbd >= "4.0.3"
  323. nbd-tool
  324. nloge
  325. nocoiner
  326. non_empty_list
  327. nx
  328. nx-datasets
  329. nx-text
  330. OCADml >= "0.6.0"
  331. obatcher
  332. ocaml-index < "5.4.1-503"
  333. ocaml-r >= "0.4.0"
  334. ocaml-version >= "3.5.0"
  335. ocamlformat >= "0.13.0" & < "0.25.1"
  336. ocamlformat-lib
  337. ocamlformat-mlx-lib
  338. ocamlformat-rpc < "removed"
  339. ocamline
  340. ocluster
  341. octez-bls12-381-hash
  342. octez-bls12-381-signature
  343. octez-libs
  344. octez-mec
  345. odoc < "2.1.1"
  346. ohex
  347. oidc
  348. opam-0install
  349. opam-0install-cudf >= "0.5.0"
  350. opam-compiler
  351. opam-file-format >= "2.1.1"
  352. opentelemetry >= "0.6"
  353. opentelemetry-client-cohttp-lwt >= "0.6"
  354. opentelemetry-client-ocurl >= "0.6"
  355. opentelemetry-cohttp-lwt >= "0.6"
  356. opentelemetry-lwt >= "0.6"
  357. opium
  358. opium-graphql
  359. opium-testing
  360. opium_kernel
  361. orewa
  362. orgeat
  363. ortac-core
  364. ortac-wrapper
  365. osnap < "0.3.0"
  366. osx-acl
  367. osx-attr
  368. osx-cf
  369. osx-fsevents
  370. osx-membership
  371. osx-mount
  372. osx-xattr
  373. otoggl
  374. owl >= "0.7.0" & != "0.9.0" & != "1.0.0"
  375. owl-base < "0.5.0"
  376. owl-ode >= "0.1.0" & != "0.2.0"
  377. owl-symbolic
  378. par_incr
  379. passmaker
  380. patch
  381. pbkdf
  382. pecu >= "0.2"
  383. pf-qubes
  384. pg_query >= "0.9.6"
  385. pgx >= "1.0"
  386. pgx_unix >= "1.0"
  387. pgx_value_core
  388. pgx_value_ptime
  389. phylogenetics
  390. piaf
  391. picos < "0.5.0"
  392. picos_meta
  393. piece_rope
  394. plebeia >= "2.0.0"
  395. polyglot
  396. polynomial
  397. ppx_blob >= "0.3.0"
  398. ppx_catch
  399. ppx_deriving_cmdliner
  400. ppx_deriving_ezjsonm
  401. ppx_deriving_qcheck
  402. ppx_deriving_rpc
  403. ppx_deriving_yaml
  404. ppx_inline_alcotest
  405. ppx_map
  406. ppx_marshal
  407. ppx_mica
  408. ppx_parser
  409. ppx_protocol_conv >= "5.0.0"
  410. ppx_protocol_conv_json >= "5.0.0"
  411. ppx_protocol_conv_jsonm >= "5.0.0"
  412. ppx_protocol_conv_msgpack >= "5.0.0"
  413. ppx_protocol_conv_xml_light >= "5.0.0"
  414. ppx_protocol_conv_xmlm
  415. ppx_protocol_conv_yaml >= "5.0.0"
  416. ppx_repr
  417. ppx_subliner
  418. ppx_units
  419. ppx_yojson >= "1.1.0"
  420. pratter
  421. prbnmcn-ucb1 >= "0.0.2"
  422. prc
  423. preface
  424. pretty_expressive
  425. prettym
  426. proc-smaps
  427. producer
  428. progress
  429. prom
  430. prometheus < "1.2"
  431. prometheus-app
  432. protocell
  433. protocol-9p < "0.11.0" | >= "0.11.2"
  434. protocol-9p-unix
  435. psq
  436. pyast
  437. qcheck >= "0.25"
  438. qcheck-alcotest
  439. qcheck-core >= "0.25"
  440. quickjs
  441. quill
  442. randii
  443. reason-standard
  444. red-black-tree
  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
  453. rpclib
  454. rpclib-async
  455. rpclib-lwt
  456. rpmfile < "0.3.0"
  457. rpmfile-eio
  458. rpmfile-unix
  459. rune
  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. scrypt-kdf
  467. secp256k1 >= "0.4.1"
  468. secp256k1-internal
  469. semver >= "0.2.1"
  470. sendmail
  471. sendmail-lwt
  472. sendmail-miou-unix
  473. sendmail-mirage
  474. sendmsg
  475. seqes
  476. server-reason-react
  477. session-cookie
  478. session-cookie-async
  479. session-cookie-lwt
  480. sherlodoc
  481. sihl < "0.2.0"
  482. sihl-type
  483. slug
  484. smaws-clients
  485. smaws-lib
  486. smol
  487. smol-helpers
  488. sodium-fmt
  489. solidity-alcotest
  490. sowilo
  491. spdx_licenses
  492. spectrum >= "0.2.0"
  493. spin >= "0.7.0"
  494. spurs
  495. squirrel
  496. ssh-agent
  497. ssl >= "0.6.0"
  498. starred_ml
  499. stramon-lib
  500. stringx
  501. styled-ppx
  502. swapfs
  503. syslog-rfc5424
  504. tabr
  505. tar-mirage
  506. tcpip
  507. tdigest < "2.1.0"
  508. term-indexing
  509. term-tools
  510. terminal
  511. terminal_size >= "0.1.1"
  512. terminus
  513. terminus-cohttp
  514. terminus-hlc
  515. terml
  516. testo
  517. testo-lwt
  518. textmate-language >= "0.3.0"
  519. textrazor
  520. tezos-base-test-helpers < "17.3"
  521. tezos-bls12-381-polynomial
  522. tezos-client-base < "17.3"
  523. tezos-client-base-unix < "17.3"
  524. tezos-crypto >= "16.0" & < "17.3"
  525. tezos-crypto-dal < "17.3"
  526. tezos-error-monad >= "12.3" & < "17.3"
  527. tezos-event-logging-test-helpers < "17.3"
  528. tezos-plompiler = "0.1.3"
  529. tezos-plonk = "0.1.3"
  530. tezos-shell-services >= "16.0" & < "17.3"
  531. tezos-stdlib != "12.3" & < "17.3"
  532. tezos-test-helpers < "17.3"
  533. tezos-version >= "16.0" & < "17.3"
  534. tezos-webassembly-interpreter < "17.3"
  535. thread-table
  536. timedesc
  537. timere
  538. timmy
  539. timmy-jsoo
  540. timmy-lwt
  541. timmy-unix
  542. tls >= "0.12.8"
  543. toc
  544. topojson
  545. topojsone
  546. trail
  547. traits
  548. transept
  549. tsort >= "2.2.0"
  550. twostep
  551. type_eq
  552. type_id
  553. typeid >= "1.0.1"
  554. tyre >= "0.4"
  555. tyxml >= "4.2.0"
  556. tyxml-jsx
  557. tyxml-ppx >= "4.3.0"
  558. tyxml-syntax
  559. uecc
  560. ulid
  561. universal-portal
  562. unix-dirent
  563. unix-errno
  564. unix-sys-resource
  565. unix-sys-stat
  566. unix-time
  567. unstrctrd
  568. uring < "0.4"
  569. user-agent-parser
  570. uspf
  571. uspf-lwt
  572. uspf-mirage
  573. uspf-unix
  574. utop >= "2.13.0"
  575. validate
  576. validator
  577. vercel
  578. vhd-format-lwt >= "0.13.0"
  579. vpnkit
  580. wayland >= "2.0"
  581. wcwidth
  582. websocketaf
  583. x509 >= "0.7.0"
  584. xapi-rrd
  585. xapi-stdext-date
  586. xapi-stdext-encodings
  587. xapi-stdext-std >= "4.16.0"
  588. xkbcommon
  589. yaml
  590. yaml-sexp
  591. yocaml
  592. yocaml_syndication >= "2.0.0"
  593. yocaml_yaml < "2.0.0"
  594. yojson >= "1.6.0"
  595. yojson-five
  596. yuscii >= "0.3.0"
  597. yuujinchou >= "1.0.0"
  598. zar
  599. zed >= "3.2.2"
  600. zlist < "0.4.0"

Conflicts (2)

  1. js_of_ocaml-compiler < "5.8"
  2. result < "1.5"
OCaml

Innovation. Community. Security.