forked from comby-tools/comby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
comby-kernel.opam
38 lines (38 loc) · 939 Bytes
/
comby-kernel.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
opam-version: "2.0"
maintainer: "[email protected]"
authors: "Rijnard van Tonder"
homepage: "https://github.com/comby-tools/comby"
bug-reports: "https://github.com/comby-tools/comby/issues"
dev-repo: "git+https://github.com/comby-tools/comby.git"
license: "Apache-2.0"
build: [
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
]
]
depends: [
"dune" {>= "2.8.0"}
"ocaml" {>= "4.08.1"}
"core_kernel"
"mparser" {>= "1.3"}
"mparser-pcre"
"ppx_deriving"
"ppx_deriving_yojson" {>= "3.6.0"}
"yojson" {>= "1.6.0" < "2.0.0"}
"pcre"
# vendored dependencies
"bigstringaf"
# testing
"bisect_ppx" {with-test & dev & >= "2.5.0"}
]
synopsis: "A match engine for structural code search and replace that supports ~every language"
description: """
Comby-kernel is the library that exposes the core matching engine for the comby application tool.
"""