package lwt

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

Install

Dune Dependency

Authors

Maintainers

Sources

5.4.2.tar.gz
md5=ba3659a8918d8e7cb0f4ef9a83945f90
sha512=9f46fb2e56dc7bd57a12d5ab4dc68719947a1462f336087a95e991d087bb9b5b8dee2592d0f7d35abc507d9a641dd221c44c949c81d00e26c673a067d94ba3f4

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: 04 Aug 2021

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

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

Conflicts (1)

  1. ocaml-variants = "4.02.1+BER"