-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathppx_bitstring.opam
More file actions
39 lines (39 loc) · 1.2 KB
/
ppx_bitstring.opam
File metadata and controls
39 lines (39 loc) · 1.2 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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "5.0.2"
synopsis: "Bitstrings and bitstring matching for OCaml - PPX extension"
description: """
The ocaml-bitstring project adds Erlang-style bitstrings and matching over bitstrings as a syntax extension and library for OCaml.
You can use this module to both parse and generate binary formats, files and protocols.
Bitstring handling is added as primitives to the language, making it exceptionally simple to use and very powerful.
"""
maintainer: ["Xavier R. Guérin <xguerin@users.noreply.github.com>"]
authors: ["Richard W.M. Jones" "Xavier R. Guérin"]
license: "LGPL-2.0-or-later"
homepage: "https://github.com/xguerin/bitstring"
bug-reports: "https://github.com/xguerin/bitstring/issues"
depends: [
"dune" {>= "3.18"}
"ocaml" {>= "5.2.0"}
"bitstring" {>= "5.0.2"}
"ocaml" {with-test & >= "5.2.0"}
"ppxlib" {>= "0.36.0"}
"ounit" {with-test}
"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/xguerin/bitstring.git"
x-maintenance-intent: ["(latest)"]