package lwt

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

Install

Dune Dependency

Authors

Maintainers

Sources

5.4.1.tar.gz
md5=5a8d2a83ee9314781f137d147a4c62ae
sha512=b872b7abe546c431ba62fe466423d7ace8e487ebd85ea5e859f462eb4c0a6884b242d9efd4a557b6da3ae699b0b695e0a783f89a1d1147cba7d99c4ae9d2db17

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

Conflicts (1)

  1. ocaml-variants = "4.02.1+BER"
OCaml

Innovation. Community. Security.