(lang dune 3.7)

(name grev)

(generate_opam_files true)

(source
 (github username/reponame))

(authors "Author Name")

(maintainers "Maintainer Name")

(license LICENSE)

(documentation https://url/to/documentation)

(using menhir 2.1)

; for debugging
(map_workspace_root false)

(package
 (name grev)
 (synopsis "A short synopsis")
 (description "A longer description")
 (depends
  (ocaml
   (>= 4.14))
  dune
  sedlex
  menhir
  menhirLib
  (llvm
   (= 19-static))
  cmdliner
  alcotest
  ppx_expect
  ppx_deriving)
 (tags
  (topics "to describe" your project)))

; See the complete stanza docs at https://dune.readthedocs.io/en/stable/dune-files.html#dune-project
