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. docfd >= "13.0.0"
  157. domain-name
  158. dream
  159. dream-pure
  160. duff
  161. dune-deps >= "1.4.0"
  162. dune-release >= "1.0.0"
  163. duration
  164. echo
  165. ecma-regex
  166. eio < "0.12"
  167. eio_linux < "0.12"
  168. eio_windows < "0.12"
  169. emile
  170. encore
  171. eqaf >= "0.5"
  172. equinoxe
  173. equinoxe-cohttp
  174. equinoxe-hlc
  175. ezgzip
  176. ezjsonm
  177. ezjsonm-lwt
  178. ezlua
  179. FPauth
  180. FPauth-core
  181. FPauth-responses
  182. FPauth-strategies
  183. faraday != "0.2.0"
  184. farfadet
  185. fat-filesystem
  186. fehu < "1.0.0~alpha3"
  187. ff
  188. ff-pbt
  189. flex-array
  190. flux
  191. fluxt
  192. forester >= "5.0"
  193. fsevents-lwt
  194. functoria
  195. fungi
  196. geojson
  197. geoml >= "0.1.1"
  198. git
  199. git-cohttp
  200. git-cohttp-unix
  201. git-kv >= "0.2.0"
  202. git-mirage
  203. git-net
  204. git-split
  205. git-unix
  206. gitlab-unix
  207. glicko2
  208. gmap
  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
  217. h1
  218. h1_parser
  219. h2
  220. hacl
  221. hacl-star >= "0.6.0" & < "0.7.2"
  222. hacl_func
  223. hacl_x25519
  224. handlebars-ml >= "0.2.1"
  225. highlexer
  226. hkdf
  227. hockmd
  228. html_of_jsx
  229. http < "6.0.0"
  230. http-multipart-formdata < "2.0.0"
  231. httpaf >= "0.2.0"
  232. httpun
  233. httpun-ws
  234. hugin < "1.0.0~alpha3"
  235. huml
  236. hvsock
  237. icalendar
  238. idna
  239. imagelib
  240. index
  241. inferno >= "20220603"
  242. influxdb-async
  243. influxdb-lwt
  244. inquire < "0.2.0"
  245. intel_hex >= "0.3"
  246. interval-map
  247. iomux
  248. irmin
  249. irmin-bench
  250. irmin-chunk
  251. irmin-cli
  252. irmin-containers
  253. irmin-fs
  254. irmin-git
  255. irmin-graphql
  256. irmin-pack
  257. irmin-pack-tools
  258. irmin-test < "3.6.1"
  259. irmin-tezos
  260. irmin-unix
  261. irmin-watcher
  262. jekyll-format
  263. jose
  264. json-data-encoding >= "0.9" & < "1.1.1"
  265. json_decoder
  266. jsonfeed
  267. jsonschema-core
  268. jsonschema-validation
  269. jsonxt
  270. junit_alcotest < "2.1.0"
  271. jwto
  272. kaun < "1.0.0~alpha3"
  273. kdf
  274. ke >= "0.2"
  275. kkmarkdown
  276. kmt
  277. lambda-runtime
  278. lambda_streams
  279. lambda_streams_async
  280. lambdapi
  281. layoutz
  282. letters
  283. liquid_ml >= "0.1.3"
  284. lmdb >= "1.0"
  285. logical
  286. logtk
  287. lp
  288. lp-glpk
  289. lp-glpk-js < "0.5.0"
  290. lp-gurobi < "0.5.0"
  291. lru
  292. lt-code
  293. luv
  294. mbr-format
  295. mdx
  296. mec
  297. mechaml >= "1.2.1"
  298. merlin = "4.17.1-501"
  299. merlin-lib >= "4.17.1-501"
  300. metrics
  301. mfat
  302. miaou-core
  303. middleware
  304. mimic
  305. minicaml = "0.3.1" | >= "0.4"
  306. mirage >= "4.0.0"
  307. mirage-block-partition
  308. mirage-block-ramdisk
  309. mirage-channel >= "4.0.1"
  310. mirage-crypto-ec
  311. mirage-flow-unix
  312. mirage-kv >= "2.0.0"
  313. mirage-kv-mem
  314. mirage-kv-unix >= "3.0.0"
  315. mirage-logs
  316. mirage-nat
  317. mirage-net-unix
  318. mirage-runtime < "4.7.0"
  319. mirage-tc
  320. mjson
  321. mlgpx
  322. mmdb < "0.3.0"
  323. mnd
  324. mqtt
  325. mrmime >= "0.2.0"
  326. msgpck >= "1.6"
  327. mssql
  328. multibase
  329. multihash
  330. multihash-digestif
  331. multipart-form-data
  332. multipart_form
  333. multipart_form-eio
  334. multipart_form-lwt
  335. multipart_form-miou
  336. named-pipe
  337. nanoid
  338. nbd >= "4.0.3"
  339. nbd-tool
  340. neo4j_bolt
  341. nloge
  342. nocoiner
  343. non_empty_list
  344. nx < "1.0.0~alpha3"
  345. nx-datasets
  346. nx-text
  347. OCADml >= "0.6.0"
  348. obatcher
  349. object
  350. ocaml-ai-sdk
  351. ocaml-index < "5.4.1-503"
  352. ocaml-r >= "0.4.0"
  353. ocaml-version >= "3.5.0"
  354. ocamlformat < "0.25.1"
  355. ocamlformat-lib
  356. ocamlformat-mlx-lib
  357. ocamlformat-rpc < "removed"
  358. ocamline
  359. ocgtk
  360. ochre
  361. ochre-cli
  362. ocluster < "0.3.0"
  363. ocue
  364. odoc < "2.1.1"
  365. oenv >= "0.1.0"
  366. ohex
  367. oidc
  368. opam-0install
  369. opam-0install-cudf >= "0.5.0"
  370. opam-compiler
  371. opam-file-format >= "2.1.1"
  372. opam-repomin
  373. opencage
  374. opentelemetry >= "0.6"
  375. opentelemetry-client
  376. opentelemetry-client-cohttp-eio
  377. opentelemetry-client-cohttp-lwt >= "0.6"
  378. opentelemetry-client-ocurl >= "0.6"
  379. opentelemetry-client-ocurl-lwt
  380. opentelemetry-cohttp-lwt >= "0.6"
  381. opentelemetry-logs
  382. opentelemetry-lwt >= "0.6"
  383. opium
  384. opium-graphql
  385. opium-testing
  386. opium_kernel
  387. orewa
  388. orgeat
  389. ortac-core
  390. ortac-wrapper
  391. osnap < "0.3.0"
  392. osx-acl
  393. osx-attr
  394. osx-cf
  395. osx-fsevents
  396. osx-membership
  397. osx-mount
  398. osx-xattr
  399. otoggl
  400. owl >= "0.7.0" & != "0.9.0" & != "1.0.0"
  401. owl-base < "0.5.0"
  402. owl-ode >= "0.1.0" & != "0.2.0"
  403. owl-symbolic
  404. parseff
  405. passe
  406. passmaker
  407. patch < "3.0.0~alpha2"
  408. pbkdf
  409. pecu >= "0.2"
  410. pf-qubes
  411. pg_query >= "0.9.6"
  412. pgx
  413. pgx_unix
  414. pgx_value_core
  415. pgx_value_ptime
  416. phylogenetics
  417. piaf
  418. plebeia >= "2.0.0"
  419. polyglot
  420. polynomial
  421. ppx_blob >= "0.3.0"
  422. ppx_deriving_cmdliner
  423. ppx_deriving_ezjsonm
  424. ppx_deriving_qcheck
  425. ppx_deriving_rpc
  426. ppx_deriving_yaml
  427. ppx_ezlua
  428. ppx_inline_alcotest
  429. ppx_marshal
  430. ppx_parser
  431. ppx_protocol_conv
  432. ppx_protocol_conv_json
  433. ppx_protocol_conv_jsonm
  434. ppx_protocol_conv_msgpack
  435. ppx_protocol_conv_xml_light
  436. ppx_protocol_conv_xmlm
  437. ppx_protocol_conv_yaml
  438. ppx_repr
  439. ppx_subliner
  440. ppx_units
  441. ppx_yojson >= "1.1.0"
  442. pratter
  443. prbnmcn-ucb1 >= "0.0.2"
  444. prc
  445. preface
  446. pretty_expressive
  447. prettym
  448. proc-smaps
  449. producer < "0.2.0"
  450. progress
  451. prom
  452. prometheus < "1.2"
  453. prometheus-app
  454. protocell
  455. protocol-9p < "0.11.0" | >= "0.11.2"
  456. protocol-9p-unix
  457. proton
  458. psq
  459. public-suffix
  460. pyast
  461. qcaml
  462. qcheck >= "0.25"
  463. qcheck-alcotest
  464. qcheck-core >= "0.25"
  465. qcow-stream >= "0.13.0"
  466. qcow-tool = "0.13.0"
  467. qcow-types = "0.13.0"
  468. query-json
  469. quickjs
  470. quill < "1.0.0~alpha3"
  471. randii
  472. reason-standard
  473. red-black-tree
  474. reparse >= "2.0.0" & < "3.0.0"
  475. reparse-unix < "2.1.0"
  476. resp
  477. resp-unix >= "0.10.0"
  478. resto >= "0.8"
  479. rfc1951 < "1.0.0"
  480. routes < "2.0.0"
  481. rpc
  482. rpclib
  483. rpclib-async
  484. rpclib-lwt
  485. rpmfile < "0.3.0"
  486. rpmfile-eio
  487. rpmfile-unix
  488. rune < "1.0.0~alpha3"
  489. SZXX >= "4.0.0"
  490. saga
  491. salsa20
  492. salsa20-core
  493. sanddb >= "0.2"
  494. scrypt-kdf
  495. secp256k1 >= "0.4.1"
  496. secp256k1-internal
  497. semver >= "0.2.1"
  498. sendmail
  499. sendmail-lwt
  500. sendmail-miou-unix
  501. sendmail-mirage
  502. sendmsg
  503. seqes
  504. server-reason-react
  505. session-cookie
  506. session-cookie-async
  507. session-cookie-lwt
  508. sha256-cng
  509. shakuhachi
  510. sherlodoc
  511. sihl < "0.2.0"
  512. sihl-type
  513. slug
  514. sm
  515. smaws-clients
  516. smaws-lib
  517. smol
  518. smol-helpers
  519. sodium-fmt
  520. solidity-alcotest
  521. sowilo < "1.0.0~alpha3"
  522. spdx_licenses
  523. spectrum >= "0.2.0"
  524. spectrum_capabilities
  525. spectrum_palette_ppx
  526. spectrum_palettes
  527. spectrum_tools
  528. spin >= "0.7.0"
  529. spurs < "0.1.1"
  530. squirrel
  531. ssh-agent
  532. ssl >= "0.6.0"
  533. stem
  534. stramon-lib
  535. stringx
  536. styled-ppx
  537. swapfs
  538. symex >= "0.2"
  539. symphony-orchestrator-tui
  540. synchronizer >= "0.2"
  541. syslog-rfc5424 < "0.2"
  542. talon < "1.0.0~alpha3"
  543. tar-eio >= "3.5.0"
  544. tcpip
  545. tdigest < "2.1.0"
  546. term-indexing
  547. term-tools
  548. terminal
  549. terminal_size >= "0.1.1"
  550. terminus
  551. terminus-cohttp
  552. terminus-hlc
  553. terml
  554. testo
  555. testo-lwt
  556. textmate-language >= "0.3.0"
  557. textrazor
  558. timedesc
  559. timere
  560. timmy
  561. timmy-jsoo
  562. timmy-lwt
  563. timmy-unix
  564. tls >= "0.12.8"
  565. toc
  566. topojson
  567. topojsone
  568. traits
  569. transept
  570. tsort >= "2.2.0"
  571. twostep
  572. type_eq
  573. type_id
  574. typeid >= "1.0.1"
  575. tyre >= "0.4"
  576. tyxml >= "4.2.0"
  577. tyxml-jsx
  578. tyxml-ppx >= "4.3.0"
  579. tyxml-syntax
  580. uecc
  581. ulid
  582. universal-portal
  583. unix-dirent
  584. unix-errno
  585. unix-sys-resource
  586. unix-sys-stat
  587. unix-time
  588. unstrctrd
  589. uring < "0.4"
  590. user-agent-parser
  591. uspf
  592. uspf-lwt
  593. uspf-mirage
  594. uspf-unix
  595. utcp
  596. utop >= "2.13.0"
  597. validate
  598. validator
  599. vercel
  600. vhd-format-lwt >= "0.13.0"
  601. wayland >= "2.0"
  602. wcwidth
  603. websocketaf
  604. wire
  605. x509 >= "0.7.0"
  606. xapi-rrd
  607. xapi-stdext-date
  608. xapi-stdext-encodings
  609. xapi-stdext-std >= "4.16.0"
  610. yaml
  611. yaml-sexp
  612. yocaml
  613. yocaml_syndication >= "2.0.0"
  614. yocaml_yaml < "2.0.0"
  615. yojson >= "1.6.0"
  616. yojson-five
  617. yuscii >= "0.3.0"
  618. yuujinchou >= "1.0.0"
  619. zar
  620. zed >= "3.2.2"
  621. zlist < "0.4.0"

Conflicts (1)

  1. result < "1.5"