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"] 7license: "(ISC AND MIT)" 8homepage: "https://github.com/ocaml-multicore/ocaml-uring" 9bug-reports: "https://github.com/ocaml-multicore/ocaml-uring/issues" 10depends: [ 11 "dune" {>= "2.7"} 12 "cstruct" {>= "6.0.1"} 13 "ocaml" {>= "4.12.0"} 14 "dune-configurator" 15 "lwt" {with-test & >= "5.0.0"} 16 "notty" {>= "0.2.2" & with-test} 17 "bechamel-notty" {>= "0.1.0" & with-test} 18 "bechamel" {>= "0.1.0" & with-test} 19 "logs" {with-test & >= "0.5.0"} 20 "cmdliner" {with-test} 21 "fmt" {>= "0.8.10"} 22 "optint" {>= "0.1.0"} 23 "alcotest" {>= "1.4.0" & with-test} 24 "odoc" {with-doc} 25] 26build: [ 27 ["dune" "subst"] {dev} 28 [ 29 "dune" 30 "build" 31 "-p" 32 name 33 "-j" 34 jobs 35 "@install" 36 "@runtest" {with-test} 37 "@doc" {with-doc} 38 ] 39] 40dev-repo: "git+https://github.com/ocaml-multicore/ocaml-uring.git" 41depexts: [ 42 ["linux-headers"] {os-distribution = "alpine"} 43] 44url { 45 src: 46 "https://github.com/ocaml-multicore/ocaml-uring/releases/download/v0.2/uring-0.2.tbz" 47 checksum: [ 48 "sha256=4f1446664ae6091cb6e34688b6ddf384f2b26674ea7e6b6105018a12a2893a21" 49 "sha512=0658ce85cdd254aca8605f877ed321e004696943a58ecaba96cc923fee0024084b6cca541669bd4f879cbf1d05deecb01f12652dbce09235880a5de384233dd9" 50 ] 51} 52x-commit-hash: "1ad2a7bd01e9c962246e4d50cf8b7b8034df29c0" 53available: [os = "linux"]