package lwt

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

Install

Dune Dependency

Authors

Maintainers

Sources

5.6.1.tar.gz
md5=279024789a0ec84a9d97d98bad847f97
sha512=698875bd3bfcd5baa47eb48e412f442d289f9972421321541860ebe110b9af1949c3fbc253768495726ec547fe4ba25483cd97ff39bc668496fba95b2ed9edd8

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: 29 Jun 2022

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

Conflicts

None