-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFaustML.opam
More file actions
32 lines (32 loc) · 844 Bytes
/
FaustML.opam
File metadata and controls
32 lines (32 loc) · 844 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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "First order simply typed ML, proved to be sound for polytime"
description: """
if a program satisfy data-tiering/typing/syntax restrictions;
it will execute in polytime using memoization and sharing"""
maintainer: ["Travis LEBLANC"]
authors: ["Travis LEBLANC"]
license: "LICENSE"
tags: ["ICC" "Implicit Computational Complexity" "polytime"]
homepage: "https://github.com/TravisLEBLANC1/FaustML"
bug-reports: "https://github.com/TravisLEBLANC1/FaustML/issues"
depends: [
"ocaml"
"dune" {>= "3.16"}
"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/TravisLEBLANC1/FaustML.git"