# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "3.10.0"
synopsis: "OCaml bindings for FUSE 3 (Filesystem in UserSpacE)"
description: """
This is a binding to FUSE 3 for the OCaml programming language, enabling
users to implement high-level FUSE filesystems in OCaml. It has been designed
with simplicity as a goal, as you can see by looking at example/fusexmp.ml.
The Bigarray library is used for read and write buffers, allowing the library
to do zero-copy in OCaml land."""
maintainer: ["Alessandro Strada <alessandro.strada@gmail.com>"]
authors: [
  "Vincenzo Ciancia"
  "Olaf Hering <olaf@aepfle.de>"
  "Alessandro Strada <alessandro.strada@gmail.com>"
]
license: "GPL-1.0-or-later"
bug-reports: "https://github.com/astrada/ocamlfuse/issues"
depends: [
  "dune" {>= "3.7"}
  "ocaml" {>= "4.08.0"}
  "base-bigarray"
  "base-threads"
  "base-unix"
  "camlidl"
  "dune-configurator"
  "conf-libfuse3"
  "ounit2" {with-test}
  "odoc" {with-doc}
]
build: [
  ["dune" "subst"] {dev}
  [
    "dune"
    "build"
    "-p"
    name
    "-j"
    jobs
    "@install"
    "@runtest" {with-test}
    "@doc" {with-doc}
  ]
]
dev-repo: "git+https://github.com/astrada/ocamlfuse.git"
homepage: "https://github.com/astrada/ocamlfuse"
available: [ os = "linux" ]
x-maintenance-intent: ["(latest)"]
