-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsaturn_benchmarks.opam
36 lines (36 loc) · 1.03 KB
/
saturn_benchmarks.opam
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
34
35
36
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Benchmarks for Saturn"
description:
"Benchmarks suite for Saturn to compare performance between different implementations of a given data structures. Currently, it only contains benchmarks for the queue and stack implementations."
maintainer: ["Carine Morel"]
authors: ["Carine Morel"]
license: "ISC"
homepage: "https://github.com/lyrm/saturn_benchmarks"
doc: "https://github.com/lyrm/saturn_benchmarks/blob/master/README.md"
bug-reports: "https://github.com/lyrm/saturn_benchmarks/issues"
depends: [
"ocaml" {>= "5.2.0"}
"dune" {>= "3.15" & >= "3.15"}
"saturn" {>= "1.0.0"}
"backoff" {>= "0.1.0"}
"qcheck-stm" {>= "0.3" & with-test}
"multicore-magic" {>= "2.1.0"}
"multicore-bench" {>= "0.1.2"}
"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/lyrm/saturn_benchmarks.git"