-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsynchronizer.opam
More file actions
33 lines (33 loc) · 872 Bytes
/
synchronizer.opam
File metadata and controls
33 lines (33 loc) · 872 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Synchronizer"
description: "A synchronizer to make datastructures thread-safe."
maintainer: ["redianthus"]
authors: ["Arthur Carcano <arthur.carcano@ocamlpro.com>" "redianthus"]
license: "AGPL-3.0-or-later"
tags: ["ocaml" "multi-core" "mutex" "thread-safe" "parallel"]
homepage: "https://github.com/ocamlpro/synchronizer"
bug-reports: "https://github.com/ocamlpro/synchronizer/issues"
depends: [
"dune" {>= "3.7"}
"ocaml" {>= "5.2"}
"prelude" {>= "0.5"}
"odoc" {>= "3.0.0" & with-doc}
"alcotest" {with-test}
"ocamlformat" {with-dev-setup}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/ocamlpro/synchronizer.git"