-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathowi.opam
More file actions
90 lines (88 loc) · 3.16 KB
/
owi.opam
File metadata and controls
90 lines (88 loc) · 3.16 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis:
"Symbolic execution engine and WebAssembly toolkit for research and engineering"
description: """
Owi is an open-source framework for symbolic execution and WebAssembly analysis.
It supports the analysis of programs written in WebAssembly, C, C++, Rust, and Zig.
Owi provides symbolic execution for bug finding, solver-aided programming, test case generation, and program verification.
The framework includes tools for formatting, optimizing, interpreting, validating, and translating WebAssembly modules.
It also provides a generator for random valid WebAssembly modules.
An OCaml library is available to embed WebAssembly modules and import OCaml functions in a type-safe manner."""
maintainer: ["redianthus <leo@ocaml.pro>"]
authors: [
"redianthus <leo@ocaml.pro>"
"Pierre Chambart <pierre.chambart@ocamlpro.com>"
"Filipe Marques <filipe.s.marques@tecnico.ulisboa.pt>"
"Eric Patrizio <epatrizio@mpns.fr>"
"Arthur Carcano <arthur.carcano@ocamlpro.com>"
]
license: "AGPL-3.0-or-later"
tags: ["owi" "ocaml" "webassembly" "wasm" "interpreter" "compiler"]
homepage: "https://github.com/ocamlpro/owi"
bug-reports: "https://github.com/ocamlpro/owi/issues"
depends: [
"dune" {>= "3.7"}
"ocaml" {>= "5.4"}
"menhir" {build & >= "20220210"}
"dune-build-info" {build}
"dune-site" {build}
"conf-clang"
"bos" {>= "0.2.1"}
"cmdliner" {>= "2.1.0"}
"digestif" {>= "1.2.0"}
"domainpc" {>= "0.2"}
"logs" {>= "0.10.0"}
"ocaml_intrinsics" {>= "v0.16.1"}
"prelude" {>= "0.5"}
"processor" {>= "0.2"}
"sedlex" {>= "3.3"}
"smtml" {>= "0.22.0"}
"symex" {>= "0.2"}
"synchronizer" {>= "0.3"}
"uutf" {>= "1.0.3"}
"xmlm" {>= "1.4.0"}
"odoc" {>= "3.0.0" & with-doc}
"mdx" {with-test & >= "2.1"}
"frama-c" {>= "29.0" & < "32.0" & with-test}
"z3" {with-test}
"bisect_ppx" {>= "2.5" & with-dev-setup}
"crowbar" {>= "0.2.2" & 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
"--promote-install-files=false"
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
["dune" "install" "-p" name "--create-install-files" name]
]
dev-repo: "git+https://github.com/ocamlpro/owi.git"
available: (arch = "x86_32" | arch = "x86_64" | arch = "arm64") & os != "win32" & os != "macos" & os != "homebrew"
depexts: [
["mdbook"] { with-dev-setup }
["golang" "llvm" "lld"] {os-family = "debian"}
["rust-llvm" "libstd-rust-dev-wasm32" "rustc"] {os-distribution = "debian"}
["tinygo" "zig"] {os-distribution = "fedora"}
]
post-messages: [
"Thank you for installing Owi!"
"To fully utilize Owi, consider installing a solver such as Z3"
"Join our community on Zulip: https://owi.zulipchat.com/"
"Explore tutorials and documentation here: https://ocamlpro.github.io/owi/"
]
pin-depends: [
["landmarks.1.5" "git+https://github.com/hra687261/landmarks.git#cfc017b604f2c41ac0d8841f30a0b55b0d89cbaf"]
["landmarks-ppx.1.5" "git+https://github.com/hra687261/landmarks.git#cfc017b604f2c41ac0d8841f30a0b55b0d89cbaf"]
]