File tree Expand file tree Collapse file tree 4 files changed +7
-4
lines changed Expand file tree Collapse file tree 4 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 1
1
(lang dune 1 .11)
2
2
(using menhir 2 .0)
3
- (name ppx_regexp )
3
+ (name ppx_regexp_extended )
4
4
( allow_approximate_merlin)
Original file line number Diff line number Diff line change 1
1
(library
2
2
(name ppx_regexp)
3
- (public_name ppx_regexp )
3
+ (public_name ppx_regexp_extended )
4
4
(kind ppx_rewriter)
5
5
(modules regexp_types ppx_regexp regexp mik_parser mik_lexer)
6
6
(preprocess (pps ppxlib.metaquot))
Original file line number Diff line number Diff line change @@ -14,6 +14,9 @@ depends: [
14
14
"re" {>= "1.7.2"}
15
15
"qcheck" {with-test}
16
16
]
17
+ conflicts: [
18
+ "ppx_regexp"
19
+ ]
17
20
build: ["dune" "build" "-p" name "-j" jobs]
18
21
dev-repo: "git+https://github.com/paurkedal/ppx_regexp.git"
19
22
synopsis: "Matching Regular Expressions with OCaml Patterns"
Original file line number Diff line number Diff line change 12
12
(tests
13
13
(names test_ppx_regexp test_ppx_regexp_unused)
14
14
(modules test_ppx_regexp test_ppx_regexp_unused)
15
- (package ppx_regexp )
15
+ (package ppx_regexp_extended )
16
16
(libraries re re.perl)
17
17
(preprocess (pps ppx_regexp)))
18
18
35
35
(name main)
36
36
(modules Main)
37
37
; (libraries ppx_regexp ppx_tyre ocaml-migrate-parsetree))
38
- (libraries ppx_regexp ocaml-migrate-parsetree))
38
+ (libraries ppx_regexp_extended ocaml-migrate-parsetree))
You can’t perform that action at this time.
0 commit comments