package alcotest

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

Install

dune-project
 Dependency

Authors

Maintainers

Sources

alcotest-1.7.0.tbz
sha256=812bacdb34b45e88995e07d7306bdab2f72479ef1996637f1d5d1f41667902df
sha512=4ae1ba318949ec9db8b87bc8072632a02f0e4003a95ab21e474f5c34c3b5bde867b0194a2d0ea7d9fc4580c70a30ca39287d33a8c134acc7611902f79c7b7ce8

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

Dev Dependencies (2)

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

  1. aho-corasick
  2. ahrocksdb
  3. albatross >= "1.5.4"
  4. alcobar
  5. alcotest-async = "1.7.0"
  6. alg_structs_qcheck
  7. algaeff
  8. ambient-context
  9. ambient-context-eio
  10. ambient-context-lwt
  11. angstrom >= "0.7.0"
  12. ansi >= "0.6.0"
  13. anycache >= "0.7.4"
  14. anycache-lwt
  15. arc
  16. archetype >= "1.4.2"
  17. archi
  18. arp
  19. arrakis < "1.1.0"
  20. art
  21. asai
  22. asak
  23. asli >= "0.2.0"
  24. asn1-combinators >= "0.2.5"
  25. atd >= "2.3.3"
  26. atdgen >= "2.10.0"
  27. atdpy
  28. atdts
  29. avro-simple
  30. aws-eio
  31. awskit < "0.2.0"
  32. awskit-eio < "0.2.0"
  33. awskit-lwt < "0.2.0"
  34. awskit-lwt-unix < "0.2.0"
  35. awskit-s3 < "0.2.0"
  36. awskit-s3-eio < "0.2.0"
  37. awskit-s3-lwt < "0.2.0"
  38. awskit-s3-lwt-unix < "0.2.0"
  39. awskit-s3-sim < "0.2.0"
  40. azure-cosmos-db-eio
  41. backoff
  42. base32
  43. base64 >= "2.1.2" & < "3.2.0" | >= "3.4.0"
  44. bastet
  45. bastet_lwt
  46. bech32
  47. bechamel >= "0.5.0"
  48. bigarray-overlap
  49. bigstringaf
  50. bin_there
  51. biotk >= "0.4"
  52. bitlib
  53. bizowie-api
  54. blake2
  55. bloomf
  56. bls12-381 < "0.4.1" | >= "3.0.0" & < "18.0"
  57. bls12-381-hash
  58. bls12-381-js >= "0.4.2"
  59. bls12-381-js-gen >= "0.4.2"
  60. bls12-381-legacy
  61. bls12-381-signature
  62. bls12-381-unix
  63. blurhash
  64. bm25
  65. brisk-reconciler
  66. builder-web
  67. bytebuffer
  68. bytream >= "0.2"
  69. ca-certs
  70. ca-certs-nss
  71. cabal
  72. cachet
  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. curly
  137. current
  138. current-albatross-deployer
  139. current_git >= "0.7.1"
  140. current_incr
  141. current_rpc >= "0.7.4"
  142. curve448
  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.2.0"
  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" & < "0.7.2"
  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. https-eio
  256. httpun
  257. httpun-ws
  258. hugin < "1.0.0~alpha3"
  259. huml
  260. hvsock
  261. icalendar
  262. idna
  263. imagelib
  264. index
  265. inferno >= "20220603"
  266. influxdb-async
  267. influxdb-lwt
  268. inquire < "0.2.0"
  269. intel_hex >= "0.3"
  270. interval-map
  271. iomux
  272. irmin
  273. irmin-bench
  274. irmin-chunk
  275. irmin-cli
  276. irmin-containers
  277. irmin-fs
  278. irmin-git
  279. irmin-graphql
  280. irmin-pack
  281. irmin-pack-tools
  282. irmin-test != "3.6.1"
  283. irmin-tezos
  284. irmin-unix
  285. irmin-watcher
  286. jekyll-format
  287. jose
  288. json-data-encoding >= "0.9" & < "1.1.1"
  289. json_decoder
  290. jsonfeed
  291. jsonschema-core
  292. jsonschema-validation
  293. jsonxt
  294. junit_alcotest < "2.2.0"
  295. jwto
  296. kafka-eio
  297. kaun < "1.0.0~alpha3"
  298. kcas >= "0.6.0"
  299. kcas_data >= "0.6.0"
  300. kdf
  301. ke >= "0.2"
  302. kkmarkdown
  303. kmt
  304. kube
  305. lambda-runtime
  306. lambda_streams
  307. lambda_streams_async
  308. lambdapi
  309. layoutz
  310. letters
  311. liquid_ml >= "0.1.3"
  312. lmdb >= "1.0"
  313. lockfree >= "0.3.1"
  314. logical
  315. logtk
  316. lp
  317. lp-glpk
  318. lp-glpk-js < "0.5.0"
  319. lp-gurobi < "0.5.0"
  320. lru
  321. lt-code
  322. luv
  323. mazeppa
  324. mbr-format
  325. mdx
  326. mec
  327. mechaml >= "1.2.1"
  328. melange >= "7.0.0-51"
  329. melange-edn >= "0.5.0"
  330. menhir-lsp >= "0.3.3"
  331. menhirformat
  332. merlin = "4.17.1-501"
  333. merlin-lib >= "4.17.1-501"
  334. metrics
  335. mfat
  336. mfetch
  337. miaou-core
  338. middleware
  339. migra
  340. mimic
  341. minicaml = "0.3.1" | >= "0.4"
  342. mirage >= "4.0.0"
  343. mirage-block-partition
  344. mirage-block-ramdisk
  345. mirage-channel >= "4.0.1"
  346. mirage-crypto-ec
  347. mirage-flow-unix
  348. mirage-kv >= "2.0.0"
  349. mirage-kv-mem
  350. mirage-kv-unix >= "3.0.0"
  351. mirage-logs
  352. mirage-nat
  353. mirage-net-unix
  354. mirage-runtime < "4.7.0"
  355. mirage-tc
  356. mjson
  357. mldsa
  358. mlgpx
  359. mlkem
  360. mmdb < "0.3.0"
  361. mnd
  362. mqtt
  363. mrmime >= "0.2.0"
  364. msgpck >= "1.6"
  365. mssql
  366. multibase
  367. multicore-magic
  368. multihash
  369. multihash-digestif
  370. multipart-form-data
  371. multipart_form
  372. multipart_form-eio
  373. multipart_form-lwt
  374. multipart_form-miou
  375. named-pipe
  376. nanoid
  377. nbd >= "4.0.3"
  378. nbd-tool
  379. neo4j_bolt
  380. neodriver
  381. neodriver_core
  382. neodriver_eio
  383. neodriver_packstream
  384. nloge
  385. nocoiner
  386. noise
  387. non_empty_list
  388. nx < "1.0.0~alpha3"
  389. nx-datasets
  390. nx-text
  391. OCADml >= "0.6.0"
  392. obatcher
  393. object
  394. obs-eio
  395. obs-prometheus-eio
  396. ocaml-ai-sdk
  397. ocaml-index < "5.4.1-503"
  398. ocaml-r >= "0.4.0"
  399. ocaml-version >= "3.5.0"
  400. ocamlformat < "0.25.1"
  401. ocamlformat-lib
  402. ocamlformat-mlx-lib
  403. ocamlformat-rpc < "removed"
  404. ocamline
  405. ocgtk
  406. ochre
  407. ochre-cli
  408. ocluster
  409. ocue
  410. odoc < "2.1.1"
  411. oenv >= "0.1.0"
  412. ohex
  413. oidc
  414. oktree >= "0.2.4"
  415. opam-0install
  416. opam-0install-cudf >= "0.5.0"
  417. opam-compiler
  418. opam-file-format >= "2.1.1"
  419. opam-repomin
  420. opencage
  421. opentelemetry >= "0.6"
  422. opentelemetry-client
  423. opentelemetry-client-cohttp-eio
  424. opentelemetry-client-cohttp-lwt >= "0.6"
  425. opentelemetry-client-ocurl >= "0.6"
  426. opentelemetry-client-ocurl-lwt
  427. opentelemetry-cohttp-lwt >= "0.6"
  428. opentelemetry-logs
  429. opentelemetry-lwt >= "0.6"
  430. opium
  431. opium-graphql
  432. opium-testing
  433. opium_kernel
  434. orewa
  435. orgeat
  436. ortac-core
  437. ortac-wrapper
  438. osnap < "0.3.0"
  439. osx-acl
  440. osx-attr
  441. osx-cf
  442. osx-fsevents
  443. osx-keychain
  444. osx-membership
  445. osx-mount
  446. osx-xattr
  447. otoggl
  448. owl >= "0.7.0" & != "0.9.0" & != "1.0.0"
  449. owl-base < "0.5.0"
  450. owl-ode >= "0.1.0" & != "0.2.0"
  451. owl-symbolic
  452. ozstd
  453. par_incr
  454. parseff
  455. passe
  456. passmaker
  457. patch
  458. pbkdf
  459. pecu >= "0.2"
  460. pf-qubes
  461. pg_query >= "0.9.6"
  462. pgx
  463. pgx_unix
  464. pgx_value_core
  465. pgx_value_ptime
  466. phylogenetics
  467. piaf
  468. picos < "0.5.0"
  469. picos_meta
  470. piece_rope
  471. plebeia >= "2.0.0"
  472. polyglot
  473. polymarket
  474. polynomial
  475. ppx_bin_there
  476. ppx_blob >= "0.3.0"
  477. ppx_catch
  478. ppx_deriving_cmdliner
  479. ppx_deriving_ezjsonm
  480. ppx_deriving_qcheck
  481. ppx_deriving_rpc
  482. ppx_deriving_yaml
  483. ppx_deriving_yamlx
  484. ppx_ezlua
  485. ppx_hegel_generator
  486. ppx_hegel_test
  487. ppx_inline_alcotest
  488. ppx_map
  489. ppx_marshal
  490. ppx_parser
  491. ppx_protocol_conv
  492. ppx_protocol_conv_json
  493. ppx_protocol_conv_jsonm
  494. ppx_protocol_conv_msgpack
  495. ppx_protocol_conv_xml_light
  496. ppx_protocol_conv_xmlm
  497. ppx_protocol_conv_yaml
  498. ppx_repr
  499. ppx_subliner
  500. ppx_units
  501. ppx_yojson >= "1.1.0"
  502. pratter
  503. prbnmcn-ucb1 >= "0.0.2"
  504. prc
  505. preface
  506. pretty_expressive
  507. prettym
  508. proc-smaps
  509. producer
  510. progress
  511. prom
  512. prometheus < "1.2"
  513. prometheus-app
  514. prometheus-eio
  515. prometheus-lwt
  516. prometheus-reporter
  517. protocell
  518. protocol-9p < "0.11.0" | >= "0.11.2"
  519. protocol-9p-unix
  520. proton
  521. psq
  522. public-suffix
  523. pxshot
  524. pyast
  525. qcaml
  526. qcheck >= "0.25"
  527. qcheck-alcotest
  528. qcheck-core >= "0.25"
  529. qcow-stream >= "0.13.0"
  530. qcow-tool = "0.13.0"
  531. qcow-types = "0.13.0"
  532. qdrant
  533. query-json
  534. quickjs
  535. quill < "1.0.0~alpha3"
  536. randii
  537. reason-standard
  538. red-black-tree
  539. reparse >= "2.0.0" & < "3.0.0"
  540. reparse-unix < "2.1.0"
  541. resp
  542. resp-unix >= "0.10.0"
  543. resto >= "0.9"
  544. rfc1951 < "1.0.0"
  545. routes < "2.0.0"
  546. rpc
  547. rpclib
  548. rpclib-async
  549. rpclib-lwt
  550. rpmfile < "0.3.0"
  551. rpmfile-eio
  552. rpmfile-unix
  553. rune < "1.0.0~alpha3"
  554. SZXX >= "4.0.0"
  555. saga
  556. salsa20
  557. salsa20-core
  558. sanddb >= "0.2"
  559. saturn != "0.4.1"
  560. saturn_lockfree != "0.4.1"
  561. scrypt-kdf
  562. secp256k1 >= "0.4.1"
  563. secp256k1-internal
  564. secret
  565. semver >= "0.2.1"
  566. sendmail
  567. sendmail-lwt
  568. sendmail-miou-unix
  569. sendmail-mirage
  570. sendmsg
  571. seqes
  572. server-reason-react
  573. session-cookie
  574. session-cookie-async
  575. session-cookie-lwt
  576. sha256-cng
  577. shakuhachi
  578. sherlodoc
  579. sihl < "0.2.0"
  580. sihl-type
  581. slhdsa
  582. slug
  583. sm
  584. smaws-clients
  585. smaws-lib
  586. smol
  587. smol-helpers
  588. smtml >= "0.30.0"
  589. sodium-fmt
  590. solidity-alcotest
  591. sosie
  592. soteria
  593. sowilo < "1.0.0~alpha3"
  594. spdx_licenses
  595. spectrum >= "0.2.0"
  596. spectrum_capabilities
  597. spectrum_palette_ppx
  598. spectrum_palettes
  599. spectrum_tools
  600. spin >= "0.7.0"
  601. spurs < "0.1.1"
  602. squirrel
  603. ssh-agent
  604. ssl >= "0.6.0"
  605. starred_ml < "0.0.8"
  606. stem
  607. stramon-lib
  608. stringx
  609. styled-ppx
  610. swapfs
  611. symex >= "0.2"
  612. symphony-orchestrator-tui
  613. synchronizer >= "0.2"
  614. syslog-rfc5424 < "0.2"
  615. syto
  616. tabr
  617. talon < "1.0.0~alpha3"
  618. tar-eio >= "3.5.0"
  619. tar-mirage
  620. tbls
  621. tcpip
  622. tdigest < "2.1.0"
  623. term-indexing
  624. term-tools
  625. termaid
  626. terminal
  627. terminal_size >= "0.1.1"
  628. terminus
  629. terminus-cohttp
  630. terminus-hlc
  631. terml
  632. testo
  633. testo-lwt
  634. textmate-language >= "0.3.0"
  635. textrazor
  636. thread-table
  637. timedesc
  638. timere
  639. timmy
  640. timmy-jsoo
  641. timmy-lwt
  642. timmy-unix
  643. tls >= "0.12.8"
  644. toc
  645. topojson
  646. topojsone
  647. trail
  648. traits
  649. transept
  650. tsort >= "2.2.0"
  651. tw
  652. twostep
  653. type_eq
  654. type_id
  655. typeid >= "1.0.1"
  656. tyre >= "0.4"
  657. tyxml >= "4.2.0"
  658. tyxml-jsx
  659. tyxml-ppx >= "4.3.0"
  660. tyxml-syntax
  661. ucharset
  662. uecc
  663. ulid
  664. universal-portal
  665. unix-dirent
  666. unix-errno
  667. unix-sys-resource
  668. unix-sys-stat
  669. unix-time
  670. unstrctrd
  671. uring < "0.4"
  672. user-agent-parser
  673. uspf
  674. uspf-lwt
  675. uspf-mirage
  676. uspf-unix
  677. utcp
  678. utop >= "2.13.0"
  679. validate
  680. validator
  681. valkey
  682. vercel
  683. verdict
  684. vhd-format-lwt >= "0.13.0"
  685. wayland >= "2.0"
  686. wcwidth
  687. websocketaf
  688. wire
  689. x509 >= "0.7.0"
  690. xapi-rrd
  691. xapi-stdext-date
  692. xapi-stdext-encodings
  693. xapi-stdext-std >= "4.16.0"
  694. xdge
  695. xgboost
  696. yaml
  697. yaml-sexp
  698. yocaml
  699. yocaml_syndication >= "2.0.0"
  700. yocaml_yaml < "2.0.0"
  701. yojson >= "1.6.0"
  702. yojson-five
  703. yuscii >= "0.3.0"
  704. yuujinchou >= "1.0.0"
  705. zar
  706. zed >= "3.2.2"
  707. zlist < "0.4.0"

Conflicts (1)

  1. result < "1.5"