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

Conflicts (1)

  1. result < "1.5"