-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsymex.opam
More file actions
46 lines (46 loc) · 1.35 KB
/
symex.opam
File metadata and controls
46 lines (46 loc) · 1.35 KB
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
37
38
39
40
41
42
43
44
45
46
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Primitives to write symbolic execution engines"
description:
"Symex is a library providing efficient primitives to write symbolic execution engines. It provides an efficient path condition and a monad for exploring paths."
maintainer: ["redianthus <leo@ocaml.pro>"]
authors: [
"redianthus <leo@ocaml.pro>"
"Pierre Chambart <pierre.chambart@ocamlpro.com>"
"Filipe Marques <filipe.s.marques@tecnico.ulisboa.pt>"
"Arthur Carcano <arthur.carcano@ocamlpro.com>"
"Basile Clément <basile.clement@ocamlpro.com"
]
license: "AGPL-3.0-or-later"
tags: ["symbolic" "execution" "path" "condition" "monad" "solver"]
homepage: "https://github.com/ocamlpro/symex"
bug-reports: "https://github.com/ocamlpro/symex/issues"
depends: [
"dune" {>= "3.7"}
"ocaml" {>= "5.3"}
"fmt"
"prelude" {>= "0.5"}
"smtml" {>= "0.20.0"}
"odoc" {>= "3.0.0" & with-doc}
"mdx" {with-test & >= "2.1"}
"alcotest" {with-test}
"bisect_ppx" {>= "2.5" & with-dev-setup}
"landmarks-ppx" {with-dev-setup}
"ocamlformat" {>= "0.28" & with-dev-setup}
"ocb" {>= "0.1" & 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/symex.git"