The unpac monorepo manager self-hosting as a monorepo using unpac
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #48 from talex5/doc

Link to API docs

authored by

Thomas Leonard and committed by
GitHub
5f9b9142 14e247c4

+6
+2
README.md
··· 1 1 # ocaml-uring -- bindings to Linux io_uring 2 2 3 + * [API documentation](https://ocaml-multicore.github.io/ocaml-uring/uring/index.html) 4 + 3 5 These are OCaml bindings for the Linux [io_uring][liburing] stack 4 6 (an alternative to using syscalls such as `select` or `epoll`). 5 7
+1
dune-project
··· 6 6 (license "(ISC AND MIT)") 7 7 (authors "Anil Madhavapeddy" "Sadiq Jaffer" "Thomas Leonard") 8 8 (maintainers "anil@recoil.org") 9 + (documentation "https://ocaml-multicore.github.io/ocaml-uring/") 9 10 (package 10 11 (name uring) 11 12 (synopsis "OCaml bindings for Linux io_uring")
+2
uring.opam
··· 7 7 authors: ["Anil Madhavapeddy" "Sadiq Jaffer" "Thomas Leonard"] 8 8 license: "(ISC AND MIT)" 9 9 homepage: "https://github.com/ocaml-multicore/ocaml-uring" 10 + doc: "https://ocaml-multicore.github.io/ocaml-uring/" 10 11 bug-reports: "https://github.com/ocaml-multicore/ocaml-uring/issues" 11 12 depends: [ 12 13 "dune" {>= "2.7"} ··· 42 43 depexts: [ 43 44 ["linux-headers"] {os-distribution = "alpine"} 44 45 ] 46 + available: [os = "linux"]
+1
uring.opam.template
··· 1 1 depexts: [ 2 2 ["linux-headers"] {os-distribution = "alpine"} 3 3 ] 4 + available: [os = "linux"]