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.

Added to opam-repository:

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. For information on contributing to Alcotest, see CONTRIBUTING.md.

OCaml-CI Build Status Alcotest Documentation


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 (2)

  1. odoc with-doc
  2. cmdliner with-test & < "2.0.0"

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

Conflicts (2)

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