this repo has no description
1opam-version: "2.0" 2synopsis: "OCaml bindings for Linux io_uring" 3description: 4 "Bindings to the Linux io_uring kernel IO interfaces. See https://github.com/ocaml-multicore/eio for a higher-level API using this." 5maintainer: ["anil@recoil.org"] 6authors: ["Anil Madhavapeddy" "Sadiq Jaffer" "Thomas Leonard"] 7homepage: "https://github.com/ocaml-multicore/ocaml-uring" 8doc: "https://ocaml-multicore.github.io/ocaml-uring/" 9bug-reports: "https://github.com/ocaml-multicore/ocaml-uring/issues" 10depends: [ 11 "dune" {>= "3.0"} 12 "cstruct" {>= "6.0.1"} 13 "ocaml" {>= "4.12.0"} 14 "dune-configurator" 15 "lwt" {with-test & >= "5.0.0"} 16 "bechamel" {>= "0.1.0" & with-test} 17 "logs" {with-test & >= "0.5.0"} 18 "cmdliner" {with-test & >= "1.1.0"} 19 "fmt" {>= "0.8.10"} 20 "optint" {>= "0.1.0"} 21 "mdx" {>= "2.1.0" & with-test} 22 "odoc" {with-doc} 23] 24build: [ 25 ["dune" "subst"] {dev} 26 [ 27 "dune" 28 "build" 29 "-p" 30 name 31 "-j" 32 jobs 33 "@install" 34 "@runtest" {with-test & ocaml:version < "5.1"} 35 "@doc" {with-doc} 36 ] 37] 38dev-repo: "git+https://github.com/ocaml-multicore/ocaml-uring.git" 39depexts: [ 40 ["linux-headers"] {os-distribution = "alpine"} 41] 42available: [os = "linux"] 43license: ["ISC" "MIT"] 44x-ci-accept-failures: [ 45 "centos-7" # default C compiler does not support stdatomic.h 46 "oraclelinux-7" # default C compiler does not support stdatomic.h 47] 48url { 49 src: 50 "https://github.com/ocaml-multicore/ocaml-uring/releases/download/v0.4/uring-0.4.tbz" 51 checksum: [ 52 "sha256=7a321904b4159626bed79e8aa5be4a25bdba50941a6b8edff03868df9a118e5f" 53 "sha512=8197783d3aaad987578902dac1b47de5202efda97a521876247e4f087e37f92c08ed4bd7c2eeb23daf11bab5032e055fa70d62f39e877856e5654346da17cdd4" 54 ] 55} 56x-commit-hash: "2291cb27c1c18aee92b237a227728a1f260ac920"