(lang dune 3.14)
(name saturn)
(version 0.5.0)
(generate_opam_files true)
(implicit_transitive_deps false)
(source (github ocaml-multicore/saturn))
(license ISC)
(authors "KC Sivaramakrishnan")
(maintainers "Carine Morel" "KC Sivaramakrishnan" "Sudha Parimala")
(documentation "https://ocaml-multicore.github.io/saturn/")

(package
 (name saturn)
 (synopsis "Collection of parallelism-safe data structures for Multicore OCaml")
 (depends
  (ocaml (>= 4.13))
  (domain_shims (and (>= 0.1.0) :with-test))
  (saturn_lockfree (= :version))
  (multicore-magic (and (>= 2.3.0) :with-test))
  (multicore-bench (and (>= 0.1.2) :with-test))
  (multicore-magic-dscheck (and (>= 2.3.0) :with-test))
  (backoff (and (>= 0.1.0) :with-test))
  (alcotest (and (>= 1.7.0) :with-test))
  (qcheck (and (>= 0.21.3) :with-test))
  (qcheck-stm (and (>= 0.3) :with-test))
  (qcheck-alcotest (and (>= 0.21.3) :with-test))
  (yojson (and (>= 2.0.2) :with-test))
  (dscheck (and (>= 0.5.0) :with-test))
  (sherlodoc (and (>= 0.2) :with-doc))
  (odoc (and (>= 2.4.1) :with-doc))))

(package
 (name saturn_lockfree)
 (synopsis "Collection of lock-free data structures for Multicore OCaml")
 (depends
  (ocaml (>= 4.13))
  (domain_shims (and (>= 0.1.0) :with-test))
  (backoff (>= 0.1.0))
  (multicore-magic (>= 2.3.0))
  (multicore-magic-dscheck (and (>= 2.3.0) :with-test))
  (alcotest (and (>= 1.7.0) :with-test))
  (qcheck (and (>= 0.21.3) :with-test))
  (qcheck-core (and (>= 0.21.3) :with-test))
  (qcheck-stm (and (>= 0.3) :with-test))
  (qcheck-multicoretests-util (and (>= 0.3) :with-test))
  (qcheck-alcotest (and (>= 0.21.3) :with-test))
  (yojson (and (>= 2.0.2) :with-test))
  (dscheck (and (>= 0.5.0) :with-test))
  (sherlodoc (and (>= 0.2) :with-doc))
  (odoc (and (>= 2.4.1) :with-doc))))
