-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathalgaeff.opam
More file actions
24 lines (24 loc) · 828 Bytes
/
algaeff.opam
File metadata and controls
24 lines (24 loc) · 828 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
opam-version: "2.0"
name: "algaeff"
synopsis: "Reusable Effects-Based Components"
description: """
This OCaml library collects reusable effects-based components we have identified while developing our proof assistants based on algebraic effects.
"""
maintainer: "favonia <favonia@gmail.com>"
authors: "The RedPRL Development Team"
license: "Apache-2.0"
homepage: "https://github.com/RedPRL/algaeff"
bug-reports: "https://github.com/RedPRL/algaeff/issues"
dev-repo: "git+https://github.com/RedPRL/algaeff.git"
depends: [
"dune" {>= "2.0"}
"ocaml" {>= "5.0"}
"alcotest" {>= "1.5" & with-test}
"qcheck-core" {>= "0.18" & with-test}
"odoc" {with-doc}
]
build: [
["dune" "build" "-p" name "-j" jobs]
["dune" "build" "-p" name "-j" jobs "@runtest"] {with-test}
["dune" "build" "-p" name "-j" jobs "@doc"] {with-doc}
]