package lwt

  1. Overview
  2. Docs
Promises and event-driven I/O

Install

Dune Dependency

Authors

Maintainers

Sources

5.7.0.tar.gz
md5=737039d29d45b2d2b35db6931c8d75c6
sha512=42e629920783428673b99c9d7a639237c9e6b35079b5d907bc67e7ea506acf9edadc48cec580bdcfd2410ed9412bf5e6bcc8b09de2fa7d35ce1490973d05ddd1

Description

A promise is a value that may become determined in the future.

Lwt provides typed, composable promises. Promises that are resolved by I/O are resolved by Lwt in parallel.

Meanwhile, OCaml code, including code creating and waiting on promises, runs in a single thread by default. This reduces the need for locks or other synchronization primitives. Code can be run in parallel on an opt-in basis.

Published: 17 Aug 2023

README

Lwt

Lwt is a concurrent programming library for OCaml. It provides a single data type: the promise, which is a value that will become determined in the future. Creating a promise spawns a computation. When that computation is I/O, Lwt runs it in parallel with your OCaml code.

OCaml code, including creating and waiting on promises, is run in a single thread by default, so you don't have to worry about locking or preemption. You can detach code to be run in separate threads on an opt-in basis.

Here is a simplistic Lwt program which requests the Google front page, and fails if the request is not completed in five seconds:

open Lwt.Syntax

let () =
  let request =
    let* addresses = Lwt_unix.getaddrinfo "google.com" "80" [] in
    let google = Lwt_unix.((List.hd addresses).ai_addr) in

    Lwt_io.(with_connection google (fun (incoming, outgoing) ->
      let* () = write outgoing "GET / HTTP/1.1\r\n" in
      let* () = write outgoing "Connection: close\r\n\r\n" in
      let* response = read incoming in
      Lwt.return (Some response)))
  in

  let timeout =
    let* () = Lwt_unix.sleep 5. in
    Lwt.return None
  in

  match Lwt_main.run (Lwt.pick [request; timeout]) with
  | Some response -> print_string response
  | None -> prerr_endline "Request timed out"; exit 1

(* ocamlfind opt -package lwt.unix -linkpkg example.ml && ./a.out *)

In the program, functions such as Lwt_io.write create promises. The let* ... in construct is used to wait for a promise to become determined; the code after in is scheduled to run in a "callback." Lwt.pick races promises against each other, and behaves as the first one to complete. Lwt_main.run forces the whole promise-computation network to be executed. All the visible OCaml code is run in a single thread, but Lwt internally uses a combination of worker threads and non-blocking file descriptors to resolve in parallel the promises that do I/O.


Overview

Lwt compiles to native code on Linux, macOS, Windows, and other systems. It's also routinely compiled to JavaScript for the front end and Node by js_of_ocaml.

In Lwt,

  • The core library Lwt provides promises...

  • ...and a few pure-OCaml helpers, such as promise-friendly mutexes, condition variables, and mvars.

  • There is a big Unix binding, Lwt_unix that binds almost every Unix system call. A higher-level module Lwt_io provides nice I/O channels.

  • Lwt_process is for subprocess handling.

  • Lwt_preemptive spawns system threads.

  • The PPX syntax allows using all of the above without going crazy!

  • There are also some other helpers, such as Lwt_react for reactive programming. See the table of contents on the linked manual pages!


Installing

  1. Use your system package manager to install a development libev package. It is often called libev-dev or libev-devel.

  2. opam install conf-libev lwt


Documentation

We are currently working on improving the Lwt documentation (drastically; we are rewriting the manual). In the meantime:

  • The current manual can be found here.

  • Mirage has a nicely-written Lwt tutorial.

  • An example of a simple server written in Lwt.

  • Concurrent Programming with Lwt is a nice source of Lwt examples. They are translations of code from the excellent Real World OCaml, but are just as useful if you are not reading the book.

Note: much of the current manual refers to 'a Lwt.t as "lightweight threads" or just "threads." This will be fixed in the new manual. 'a Lwt.t is a promise, and has nothing to do with system or preemptive threads.


Contact

Open an issue, visit Discord chat, ask on discuss.ocaml.org, or on Stack Overflow.

Release announcements are made in /r/ocaml, and on discuss.ocaml.org. Watching the repo for "Releases only" is also an option.


Contributing

  • CONTRIBUTING.md contains tips for working on the code, such as how to check the code out, how review works, etc. There is also a high-level outline of the code base.

  • Ask us anything, whether it's about working on Lwt, or any question at all about it :)

  • The documentation always needs proofreading and fixes.

  • You are welcome to pick up any other issue, review a PR, add your opinion, etc.

  • Any feedback is welcome, including how to make contributing easier!


Libraries to use with Lwt

Dependencies (5)

  1. ocplib-endian
  2. ocaml >= "4.08"
  3. dune-configurator
  4. dune >= "1.8.0"
  5. cppo build & >= "1.1.0"

Dev Dependencies (1)

  1. ocamlfind dev & >= "1.7.3-1"

  1. 0install >= "2.15.1"
  2. aches-lwt
  3. activitypub
  4. albatross
  5. alcotest-lwt
  6. alcotest-mirage
  7. ambient-context-lwt
  8. amqp-client >= "0.9.0" & < "1.0.2" | >= "1.1.0"
  9. amqp-client-lwt >= "2.0.1"
  10. angstrom-lwt-unix >= "0.11.0"
  11. anthill
  12. anycache-lwt
  13. arakoon < "1.8.6" | >= "1.8.8"
  14. archi-lwt
  15. arp >= "2.3.1"
  16. arp-mirage >= "2.2.1"
  17. awa-lwt
  18. awa-mirage
  19. aws-lwt
  20. aws-s3-lwt < "4.4.0" | >= "4.8.1"
  21. awsm-lwt
  22. azure-cosmos-db
  23. baardskeerder
  24. balancer
  25. bap < "1.0.0"
  26. bap-server < "0.2.0"
  27. bastet_lwt
  28. bimage-lwt
  29. biocaml = "0.4.0"
  30. bistro >= "0.4.0"
  31. brozip
  32. builder
  33. builder-web
  34. bun >= "0.3.3"
  35. c3
  36. calculon
  37. caldav
  38. camltc = "0.9.5" | >= "0.9.7.0"
  39. canary
  40. capnp-rpc-lwt < "2.0"
  41. capnp-rpc-unix >= "0.9.0" & < "2.0"
  42. caqti-lwt >= "0.11.0"
  43. caqti-mirage
  44. carton
  45. carton-git
  46. carton-lwt
  47. cf-lwt
  48. chamelon
  49. chamelon-unix
  50. chamo >= "3.0"
  51. channel
  52. charrua-client >= "1.3.0"
  53. charrua-client-lwt
  54. charrua-client-mirage
  55. charrua-core < "0.3"
  56. charrua-unix >= "0.3" & != "0.10"
  57. clz
  58. cmdtui-lambda-term
  59. coap
  60. coap-server-lwt
  61. coclobas
  62. cohttp-curl-lwt
  63. cohttp-lwt
  64. cohttp-lwt-jsoo
  65. cohttp-lwt-unix >= "1.1.1"
  66. cohttp-lwt-unix-nossl
  67. cohttp-lwt-unix-ssl
  68. cohttp-mirage
  69. cohttp-server-lwt-unix
  70. comby
  71. comby-semantic
  72. conan-lwt
  73. conduit-lwt
  74. conduit-lwt-unix
  75. cowabloga >= "0.2.2"
  76. crunch >= "2.0.0"
  77. cstruct-lwt
  78. csv-lwt
  79. csvprovider
  80. ctypes >= "0.15.0" & < "0.21.1"
  81. ctypes-foreign >= "0.21.1"
  82. current
  83. current-albatross-deployer
  84. current_docker
  85. current_examples
  86. current_git
  87. current_github
  88. current_gitlab
  89. current_ocluster
  90. current_rpc >= "0.4"
  91. current_slack
  92. current_web
  93. DkSDKFFIOCaml_Std
  94. dap
  95. data-encoding < "0.1.1"
  96. datakit
  97. datakit-bridge-github
  98. datakit-bridge-local-git
  99. datakit-ci
  100. datakit-client = "0.11.0"
  101. datakit-github
  102. devkit >= "1.2"
  103. dht < "0.2.0"
  104. distributed-lwt
  105. dkim-bin >= "0.6.0"
  106. dkim-mirage
  107. dlm
  108. dns >= "0.19.1" & < "0.20.1"
  109. dns-certify
  110. dns-cli >= "4.6.3"
  111. dns-client < "7.0.0"
  112. dns-client-lwt
  113. dns-client-mirage
  114. dns-forward >= "0.9.0"
  115. dns-forward-lwt-unix
  116. dns-lwt
  117. dns-mirage
  118. dns-resolver
  119. dns-server
  120. dns-stub
  121. dnssd
  122. docker_hub
  123. docteur >= "0.0.2"
  124. docteur-solo5
  125. docteur-unix >= "0.0.5"
  126. doi2bib
  127. dream
  128. dream-httpaf
  129. dream-pure
  130. dream-serve
  131. dropbox
  132. dune >= "3.17.0"
  133. dune-rpc-lwt >= "3.7.0" & != "3.10.0"
  134. dune_watch
  135. earlybird
  136. elasticsearch-cli >= "0.4"
  137. equinoxe
  138. eris-lwt
  139. ethernet
  140. ez_api >= "1.2.0"
  141. ezcurl-lwt
  142. ezirmin
  143. ezjs_min < "0.2"
  144. ezjsonm >= "0.4.2" & < "0.5.0"
  145. ezjsonm-lwt
  146. ezresto
  147. ezresto-directory >= "0.5"
  148. faraday-lwt
  149. faraday-lwt-unix >= "0.6.0"
  150. fat-filesystem >= "0.12.0"
  151. fiber-lwt
  152. flowtype >= "0.72.0"
  153. frenetic < "2.0.0"
  154. fsevents-lwt
  155. fswatch_lwt
  156. fuseau-lwt
  157. gamepad
  158. gdb
  159. gdbprofiler >= "0.3"
  160. git != "1.4.3" & != "1.7.2"
  161. git-cohttp
  162. git-cohttp-mirage
  163. git-cohttp-unix
  164. git-mirage >= "3.0.0"
  165. git-paf
  166. git-unix = "1.11.1" | >= "3.0.0"
  167. github
  168. github-hooks < "0.2.0" | >= "0.4.0"
  169. github-unix >= "4.4.0"
  170. gitlab-unix
  171. gitlab_pipeline_notifier
  172. gluten-lwt
  173. gluten-lwt-unix < "0.4.0"
  174. gluten-mirage < "0.4.0"
  175. graphql-lwt
  176. gremlin
  177. grpc-lwt
  178. guardian
  179. gufo
  180. h1
  181. h1-lwt-unix
  182. h2-lwt
  183. h2-lwt-unix < "0.10.0"
  184. h2-mirage
  185. happy-eyeballs-lwt
  186. happy-eyeballs-mirage
  187. hardcaml < "1.1.0"
  188. hardcaml-examples >= "0.3.0"
  189. hardcaml-framework
  190. hidapi-lwt
  191. hiredis != "0.4"
  192. hl_yaml
  193. hockmd
  194. horned_worm < "0.3.1"
  195. http-lwt-client
  196. http-mirage-client
  197. http-multipart-formdata >= "2.0.0" & < "3.0.0"
  198. http2https
  199. httpaf-lwt-unix
  200. httpun-lwt
  201. httpun-mirage
  202. httpun-ws-lwt
  203. hvsock >= "1.0.2"
  204. i3ipc >= "0.1.4"
  205. imaplet-lwt
  206. influxdb-lwt
  207. inotify >= "2.4"
  208. inquire < "0.3.0"
  209. interface-prime-lwt
  210. iocaml < "0.4.6"
  211. iocaml-kernel >= "0.4.3" & < "0.4.6"
  212. iocamljs-kernel
  213. ip2location
  214. ip2locationio
  215. ip2whois
  216. ipv6-multicast-lwt
  217. irc-client-lwt
  218. irc-client-lwt-ssl
  219. irc-client-tls
  220. irmin < "0.9.6" | = "0.9.10" | >= "0.11.0"
  221. irmin-bench
  222. irmin-chunk
  223. irmin-cli
  224. irmin-client
  225. irmin-containers
  226. irmin-fs >= "2.3.0"
  227. irmin-git >= "2.3.0"
  228. irmin-graphql >= "2.3.0"
  229. irmin-http >= "2.3.0"
  230. irmin-indexeddb
  231. irmin-layers
  232. irmin-mem >= "2.3.0"
  233. irmin-mirage-git >= "2.3.0"
  234. irmin-mirage-graphql >= "2.3.0"
  235. irmin-pack
  236. irmin-server
  237. irmin-test >= "2.3.0"
  238. irmin-unix >= "2.3.0"
  239. irmin-watcher >= "0.3.0"
  240. jerboa
  241. jitsu
  242. joolog
  243. jose < "0.9.0"
  244. js_of_ocaml < "2.5"
  245. js_of_ocaml-lwt >= "3.5.0"
  246. jsoo_broadcastchannel
  247. jsoo_router
  248. jsoo_storage
  249. jupyter >= "2.3.0"
  250. jupyter-kernel >= "0.4"
  251. kafka >= "0.3" & < "0.5"
  252. kafka_lwt
  253. kappa-agents >= "4.1.3"
  254. kappa-binaries >= "4.1.3"
  255. kappa-library
  256. ke >= "0.5"
  257. ketrew >= "3.2.0"
  258. kinetic-client < "0.0.3" | >= "0.0.9"
  259. kubecaml
  260. lablqml < "0.6"
  261. lambda-runtime
  262. lambda-term >= "1.13"
  263. lambda_streams_lwt
  264. launchd
  265. ldp
  266. learn-ocaml >= "0.13.0"
  267. learn-ocaml-client >= "0.13.0"
  268. ledgerwallet >= "0.4.0"
  269. letsencrypt
  270. letsencrypt-app
  271. letsencrypt-dns
  272. letters
  273. libres3
  274. links != "0.9"
  275. linol-lwt
  276. llama
  277. lru_cache < "v0.16.0"
  278. lwt-binio < "0.2.0"
  279. lwt-canceler
  280. lwt-dllist
  281. lwt-exit
  282. lwt-parallel >= "1.0.0"
  283. lwt-pipe
  284. lwt-pipeline
  285. lwt-watcher
  286. lwt-zmq < "1.0.0"
  287. lwt_camlp4
  288. lwt_domain
  289. lwt_eio
  290. lwt_glib >= "1.0.1"
  291. lwt_log >= "1.1.0"
  292. lwt_ppx
  293. lwt_ppx_let
  294. lwt_react >= "1.0.1"
  295. lwt_retry
  296. lwt_ssl >= "1.0.1"
  297. mariadb < "0.5.1" | >= "1.2.0"
  298. markup = "0.7.6"
  299. markup-lwt
  300. mdx
  301. mechaml
  302. mehari-lwt-unix
  303. mehari-mirage
  304. memtrace-mirage
  305. metrics-influx
  306. metrics-lwt
  307. metrics-mirage
  308. metrics-unix
  309. mimic
  310. mindstorm-lwt
  311. mirage >= "0.4.1" & != "0.6.1" & < "0.8.0" | >= "0.10.0" & < "2.7.0"
  312. mirage-block < "1.0.0" | >= "2.0.0"
  313. mirage-block-ccm
  314. mirage-block-combinators
  315. mirage-block-lwt
  316. mirage-block-partition
  317. mirage-block-ramdisk
  318. mirage-block-solo5
  319. mirage-block-unix < "2.3.0" | = "2.8.2" | >= "2.13.0"
  320. mirage-block-xen
  321. mirage-bootvar-solo5 >= "0.2.0"
  322. mirage-bootvar-unix
  323. mirage-bootvar-xen >= "0.4.0"
  324. mirage-channel >= "4.0.0"
  325. mirage-channel-lwt
  326. mirage-clock-freestanding < "3.0.0"
  327. mirage-clock-lwt
  328. mirage-clock-unix >= "1.3.0" & < "3.0.0"
  329. mirage-console >= "3.0.0"
  330. mirage-console-lwt
  331. mirage-console-solo5 >= "0.2.0"
  332. mirage-console-unix >= "2.2.1"
  333. mirage-console-xen >= "5.0.0"
  334. mirage-console-xen-backend
  335. mirage-console-xen-cli
  336. mirage-crypto-entropy
  337. mirage-crypto-rng >= "0.7.0" & < "0.11.0"
  338. mirage-crypto-rng-lwt
  339. mirage-crypto-rng-mirage >= "0.8.8"
  340. mirage-device >= "2.0.0"
  341. mirage-dns < "3.0.0"
  342. mirage-entropy
  343. mirage-flow >= "1.0.3" & < "1.2.0" | >= "2.0.0"
  344. mirage-flow-combinators
  345. mirage-flow-lwt < "1.3.0" | >= "1.5.0"
  346. mirage-flow-rawlink
  347. mirage-flow-unix >= "1.3.0"
  348. mirage-fs >= "3.0.0"
  349. mirage-fs-lwt
  350. mirage-fs-unix < "1.1.1" | >= "1.3.0"
  351. mirage-http
  352. mirage-http-unix
  353. mirage-http-xen
  354. mirage-kv >= "3.0.0"
  355. mirage-kv-lwt
  356. mirage-kv-unix
  357. mirage-logs != "0.3.0"
  358. mirage-nat < "3.0.0"
  359. mirage-net >= "3.0.1"
  360. mirage-net-fd
  361. mirage-net-lwt
  362. mirage-net-macosx
  363. mirage-net-solo5
  364. mirage-net-unix >= "2.2.0"
  365. mirage-net-xen
  366. mirage-os-shim >= "3.0.0"
  367. mirage-profile
  368. mirage-protocols >= "4.0.0" & < "8.0.0"
  369. mirage-protocols-lwt
  370. mirage-qubes < "0.2" | >= "0.4"
  371. mirage-qubes-ipv4
  372. mirage-random-stdlib >= "0.1.0"
  373. mirage-runtime >= "3.7.0"
  374. mirage-solo5
  375. mirage-stack >= "2.0.0" & < "4.0.0"
  376. mirage-stack-lwt
  377. mirage-time >= "2.0.0"
  378. mirage-time-lwt
  379. mirage-time-unix
  380. mirage-types-lwt < "3.7.1"
  381. mirage-unix >= "3.0.0"
  382. mirage-vnetif
  383. mirage-vnetif-stack
  384. mirage-www >= "1.1.0"
  385. mirage-xen
  386. mirror
  387. monorobot
  388. moonpool-lwt
  389. mqtt >= "0.0.2"
  390. mrmime >= "0.5.0"
  391. multipart-form-data >= "0.2.0"
  392. multipart_form >= "0.2.0" & < "0.4.0"
  393. multipart_form-cohttp-lwt < "0.6.0"
  394. multipart_form-lwt
  395. mwt
  396. naboris
  397. nanomsg
  398. nbd = "2.1.1" | >= "4.0.3"
  399. nbd-tool
  400. nbd-unix
  401. netchannel
  402. nocrypto >= "0.5.4"
  403. nottui-lwt
  404. nproc
  405. nsq >= "0.4.0"
  406. obrowser
  407. obuilder
  408. obus >= "1.2.1"
  409. ocaml-variants >= "4.00.1+mirage-unix" & < "4.00.1+open-types"
  410. ocluster
  411. ocluster-api
  412. ocluster-worker
  413. ocplib-concur
  414. ocplib-resto
  415. ocsigenserver >= "2.10"
  416. ocsipersist
  417. ocsipersist-dbm
  418. ocsipersist-lib
  419. ocsipersist-pgsql
  420. ocsipersist-sqlite
  421. octez-distributed-lwt-internal
  422. octez-internal-libs
  423. octez-l2-libs
  424. octez-libs
  425. octez-proto-libs
  426. octez-protocol-compiler
  427. octez-proxy-server
  428. octez-rpc-process
  429. octez-shell-libs
  430. octez-smart-rollup-wasm-benchmark-lib
  431. odoc >= "2.0.0" & < "2.1.0"
  432. oframl
  433. ojquery
  434. ojs-base
  435. ojs_base
  436. omigrate
  437. oneffs
  438. opam-sync-github-prs
  439. openflow < "0.2.0"
  440. opentelemetry-client-cohttp-lwt
  441. opentelemetry-cohttp-lwt >= "0.4"
  442. opentelemetry-lwt
  443. opium >= "0.11.0" & != "0.16.0"
  444. opium-graphql
  445. opium_kernel
  446. opomodoro
  447. order-i3-xfce
  448. ordma >= "0.0.3"
  449. oskel >= "0.3.0"
  450. ounit-lwt < "2.2.0"
  451. ounit2-lwt
  452. owork
  453. ox < "1.1.0"
  454. ozulip
  455. paf
  456. paf-cohttp
  457. passage
  458. pcap-format >= "0.3.3" & < "0.5.0"
  459. petrol
  460. pgx_lwt
  461. pgx_lwt_mirage
  462. pgx_lwt_unix < "2.0"
  463. piaf < "0.2.0"
  464. picos >= "0.3.0" & < "0.5.0"
  465. picos_lwt
  466. picos_meta
  467. plebeia >= "2.0.0"
  468. plist-xml-lwt
  469. plotkicadsch >= "0.4.0"
  470. ppx_defer >= "0.4.0"
  471. ppx_deriving_rpc
  472. ppx_json_types
  473. ppx_netblob
  474. ppx_rapper_lwt
  475. ppx_sqlexpr
  476. proc-smaps
  477. prof_spacetime
  478. prometheus
  479. prometheus-app
  480. promise_jsoo_lwt
  481. protocol-9p >= "0.10.0"
  482. protocol-9p-unix
  483. qcow >= "0.8.1"
  484. qcow-format < "0.3"
  485. qcow-tool
  486. qfs = "0.5" | >= "0.7"
  487. quests
  488. rawlink >= "1.0" & < "2.1"
  489. rawlink-lwt
  490. rdf_json_ld
  491. rdf_lwt
  492. redis-lwt
  493. reparse-lwt
  494. reparse-lwt-unix
  495. resource-pooling >= "0.3.2"
  496. resp
  497. resp-mirage >= "0.10.0"
  498. resp-unix >= "0.10.0"
  499. resto
  500. resto-cohttp-client >= "0.4"
  501. resto-cohttp-self-serving-client
  502. resto-cohttp-server >= "0.4" & < "0.6" | >= "0.9"
  503. resto-directory >= "0.4"
  504. riak
  505. ringo-lwt
  506. river
  507. rock
  508. rpc >= "1.5.1" & < "7.1.0"
  509. rpclib-js
  510. rpclib-lwt
  511. SZXX < "4.0.0"
  512. sanddb
  513. scgi
  514. sendmail-lwt
  515. sendmail-mirage
  516. serial
  517. server-reason-react
  518. session-cohttp-lwt
  519. session-cookie-lwt
  520. session-postgresql-lwt >= "0.4.1"
  521. sessions
  522. shared-block-ring < "2.3.0" | >= "3.0.0"
  523. shared-memory-ring >= "1.2.0" & < "2.0.0"
  524. shared-memory-ring-lwt
  525. sherlodoc
  526. sihl < "0.2.0"
  527. slack
  528. slacko
  529. slipshow
  530. smtml >= "0.3.1"
  531. socket-daemon < "0.3.0"
  532. speed
  533. spin < "0.8.0"
  534. spoke
  535. spotify-web-api < "0.2.1"
  536. sqlexpr = "0.7.1" | >= "0.9.0"
  537. statsd-client
  538. stk
  539. stog >= "0.16.0"
  540. swapfs
  541. syguslib-utils
  542. syndic >= "1.4" & < "1.6.0"
  543. tar-format >= "0.4.1"
  544. tar-mirage
  545. tar-unix
  546. tcpip >= "3.1.1" & < "3.4.1" | >= "4.1.0"
  547. teash
  548. telegraml
  549. terminus
  550. testo-lwt
  551. tezos-base >= "13.0"
  552. tezos-clic >= "13.0"
  553. tezos-crypto >= "13.0"
  554. tezos-crypto-dal
  555. tezos-error-monad >= "8.0" & < "9.0" | >= "13.0"
  556. tezos-lwt-result-stdlib >= "9.0"
  557. tezos-p2p >= "11.0" & < "13.0"
  558. tezos-protocol-compiler >= "13.0"
  559. tezos-protocol-environment >= "13.0"
  560. tezos-proxy >= "17.1"
  561. tezos-proxy-server
  562. tezos-stdlib
  563. tezos-stdlib-unix >= "8.0" & < "9.0" | >= "13.0"
  564. tezos-test-helpers >= "12.0"
  565. tezos-wasmer
  566. tezos-webassembly-interpreter-extra
  567. tezt
  568. tftp
  569. themoviedb
  570. tidy_email
  571. timmy-lwt
  572. tls = "0.10.1" | >= "0.10.6" & < "0.16.0"
  573. tls-lwt
  574. tls-mirage
  575. transmission-rpc
  576. tube >= "4.3.0"
  577. tuntap >= "1.0.0" & < "1.7.0" | >= "2.0.0"
  578. twirp_cohttp_lwt_unix
  579. typerex-lldb
  580. u2f
  581. uring
  582. uspf
  583. uspf-lwt
  584. uspf-mirage
  585. utop >= "1.4.0"
  586. uwt >= "0.3.0"
  587. vchan >= "0.9.7" & < "2.0.0" | >= "2.0.3"
  588. vchan-unix
  589. vchan-xen
  590. vercel
  591. vhd-format >= "0.7.0" & < "0.8.0"
  592. vhd-format-lwt >= "0.12.0"
  593. vhd-tool < "0.12.0"
  594. vmnet >= "1.3.2"
  595. vpnkit >= "0.2.0"
  596. vue-jsoo < "0.3"
  597. wayland < "2.0"
  598. webauthn
  599. websocket < "2.3"
  600. xe-unikernel-upload
  601. xen-api-client < "0.9.14"
  602. xen-block-driver
  603. xen-evtchn < "1.0.6" | >= "2.0.0"
  604. xen-evtchn-unix
  605. xen-gnt >= "2.2.3"
  606. xen-gnt-unix >= "4.0.2"
  607. xenctrl < "0.9.29" | >= "0.9.32"
  608. xenstore >= "1.3.0"
  609. xenstore_transport >= "1.0.0"
  610. xentropyd
  611. xlsx2csv
  612. yocaml_git
  613. yocaml_unix < "2.0.0"
  614. yurt < "0.3"
  615. zarr-lwt
  616. zmq-lwt >= "5.2.1"

Conflicts

None

OCaml

Innovation. Community. Security.