package alcotest

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

Install

dune-project
 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

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.

OCaml-CI Build Status docs


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

Conflicts (1)

  1. result < "1.5"