package alcotest

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

Install

dune-project
 Dependency

Authors

Maintainers

Sources

alcotest-1.9.1.tbz
sha256=1e29c3b41d4329062105b723dfda3aff86b8cef5e7c7500d0e491fc5fd78e482
sha512=c49d402fa636dcf11f81917610dd1d2eca8606c8919aede4db23710d071f6046a8f93c78de9fbfee26637a53ca67f71fad500bfa2478b7f0f059608a492dd0a5

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

  1. odoc with-doc

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

Conflicts (2)

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