Skip to content

Commit 66b6883

Browse files
committed
[new release] salto-analyzer (0.1)
CHANGES: - first public release
1 parent aa187e2 commit 66b6883

File tree

1 file changed

+63
-0
lines changed
  • packages/salto-analyzer/salto-analyzer.0.1

1 file changed

+63
-0
lines changed
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
opam-version: "2.0"
2+
synopsis: "Salto static analyzer for OCaml programs"
3+
description: """
4+
Static analyzer for OCaml programs, that infers possible
5+
output values for every part of a program, as well as exceptions that
6+
might be raised. It is based on the theory of abstract interpretation."""
7+
maintainer: [
8+
"Pierre Lermusiaux <[email protected]>"
9+
"Benoît Montagu <[email protected]>"
10+
]
11+
authors: [
12+
"Pierre Lermusiaux <[email protected]>"
13+
"Benoît Montagu <[email protected]>"
14+
]
15+
license: "LGPL-3.0-or-later"
16+
homepage: "https://salto.gitlabpages.inria.fr/"
17+
bug-reports: "https://gitlab.inria.fr/salto/salto-analyzer/-/issues"
18+
depends: [
19+
"dune" {>= "3.17"}
20+
"saltoIL" {>= "0.1.11"}
21+
"base" {>= "v0.16.3"}
22+
"cmdliner" {>= "1.2.0"}
23+
"dmap" {>= "0.5"}
24+
"hashcons" {>= "1.3"}
25+
"hashset" {>= "1.0.0"}
26+
"ppx_import" {build & >= "1.9.0"}
27+
"ppx_deriving" {build & >= "5.2.1"}
28+
"ppx_expect" {>= "v0.16.0"}
29+
"ptset" {>= "1.0.1"}
30+
"zarith" {>= "1.13"}
31+
"ezjs_ace" {>= "0.1.1"}
32+
"js_of_ocaml" {>= "5.4.0" & <= "5.9.1"}
33+
"js_of_ocaml-ppx" {build & >= "5.4.0"}
34+
"js_of_ocaml-tyxml" {>= "5.4.0"}
35+
"zarith_stubs_js" {>= "0.16.1"}
36+
"csexp" {>= "1.5.2"}
37+
"ez_dune_describe" {>= "0.1"}
38+
"odoc" {with-doc}
39+
]
40+
build: [
41+
["dune" "subst"] {dev}
42+
[
43+
"dune"
44+
"build"
45+
"-p"
46+
name
47+
"-j"
48+
jobs
49+
"@install"
50+
"@runtest" {with-test}
51+
"@doc" {with-doc}
52+
]
53+
]
54+
dev-repo: "git+https://gitlab.inria.fr/salto/salto-analyzer"
55+
url {
56+
src:
57+
"https://salto.gitlabpages.inria.fr/salto-analyzer/releases/salto-analyzer-0.1.tbz"
58+
checksum: [
59+
"sha256=dec936314e9d44dffdf10d9654bf37e631cdf32fa03052c9f4d4aa992c10b247"
60+
"sha512=6efc54d9ff97fc5654c28a6c8f96d814be44cf53e03d301c907b5b2178813a0f7837e341272891b92417cc98529acc8a66062002e16e705c781a3ec2a3db5f16"
61+
]
62+
}
63+
x-commit-hash: "052c78a048375988dc8649cbeb45d156f031a732"

0 commit comments

Comments
 (0)