forked from ocaml-community/sedlex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdune-project
26 lines (24 loc) · 838 Bytes
/
dune-project
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
(lang dune 2.9)
(version 3.2)
(name sedlex)
(source (github ocaml-community/sedlex))
(license MIT)
(authors "Alain Frisch <[email protected]>"
"https://github.com/ocaml-community/sedlex/graphs/contributors")
(maintainers "Alain Frisch <[email protected]>")
(homepage "https://github.com/ocaml-community/sedlex")
(generate_opam_files true)
(executables_implicit_empty_intf true)
(package
(name sedlex)
(synopsis "An OCaml lexer generator for Unicode")
(description "sedlex is a lexer generator for OCaml. It is similar to ocamllex, but supports
Unicode. Unlike ocamllex, sedlex allows lexer specifications within regular
OCaml source files. Lexing specific constructs are provided via a ppx syntax
extension.")
(depends
(ocaml (>= 4.08))
dune
(ppxlib (>= 0.26.0))
gen
(ppx_expect :with-test)))