-
Notifications
You must be signed in to change notification settings - Fork 622
/
semgrep.opam
101 lines (100 loc) · 2.03 KB
/
semgrep.opam
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
91
92
93
94
95
96
97
98
99
100
101
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "1.92.0"
synopsis:
"Like grep but for code: fast and syntax-aware semantic code pattern for many languages"
description: """
Semgrep is like grep but for searching patterns at the AST level while
leveraging semantic information (e.g., types, control flow) for powerful
matching.
For more information see https://semgrep.dev
"""
maintainer: ["Yoann Padioleau <pad@semgrep.com>"]
authors: ["Yoann Padioleau <pad@semgrep.com>"]
license: "LGPL-2.1-only"
homepage: "https://semgrep.dev"
bug-reports: "https://github.com/semgrep/semgrep/issues"
depends: [
"ocaml" {>= "4.13.0"}
"dune" {>= "3.7" & >= "2.7.0"}
"base"
"menhir" {= "20230608"}
"base" {>= "v0.15.1"}
"fpath"
"bos"
"fileutils"
"alcotest"
"alcotest-js"
"alcotest-lwt"
"calendar"
"fmt"
"ocolor"
"ANSITerminal"
"terminal_size"
"uucp"
"uutf"
"logs"
"atdgen"
"yojson" {>= "2.0.0"}
"yaml"
"xmlm"
"sarif" {>= "0.3.0"}
"cmdliner"
"ppxlib"
"ppx_deriving"
"ppx_deriving_yojson"
"ppx_hash"
"ppx_inline_test"
"ppx_sexp_conv" {= "v0.16.0"}
"ppx_expect"
"visitors" {= "20210608"}
"re"
"pcre"
"ocamlgraph"
"parmap"
"semver"
"timedesc" {>= "2.0.0"}
"lsp" {= "1.15.1-5.0"}
"git"
"trace"
"ppx_trace"
"opentelemetry" {>= "0.9"}
"ocurl" {= "0.9.1"}
"opentelemetry-client-ocurl"
"ambient-context-lwt"
"conf-libcurl" {= "1"}
"uri"
"uuidm" {>= "0.9.9"}
"cohttp" {= "5.3.0"}
"cohttp-lwt-unix"
"cohttp-lwt-jsoo"
"tls-lwt"
"emile"
"digestif" {>= "1.0.0"}
"tls-mirage" {= "0.17.3"}
"lwt"
"lwt_ppx"
"conf-libev" {os != "win32"}
"js_of_ocaml" {= "5.8.2"}
"js_of_ocaml-compiler" {= "5.8.2"}
"js_of_ocaml-ppx" {= "5.8.2"}
"js_of_ocaml-lwt" {= "5.8.2"}
"integers_stubs_js"
"git-unix"
"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/semgrep/semgrep.git"