51 lines
1.5 KiB
Text
51 lines
1.5 KiB
Text
|
|
version: "1.5.2"
|
||
|
|
# This file is generated by dune, edit dune-project instead
|
||
|
|
opam-version: "2.0"
|
||
|
|
synopsis: "Parsing and printing of S-expressions in Canonical form"
|
||
|
|
description: """
|
||
|
|
|
||
|
|
This library provides minimal support for Canonical S-expressions
|
||
|
|
[1]. Canonical S-expressions are a binary encoding of S-expressions
|
||
|
|
that is super simple and well suited for communication between
|
||
|
|
programs.
|
||
|
|
|
||
|
|
This library only provides a few helpers for simple applications. If
|
||
|
|
you need more advanced support, such as parsing from more fancy input
|
||
|
|
sources, you should consider copying the code of this library given
|
||
|
|
how simple parsing S-expressions in canonical form is.
|
||
|
|
|
||
|
|
To avoid a dependency on a particular S-expression library, the only
|
||
|
|
module of this library is parameterised by the type of S-expressions.
|
||
|
|
|
||
|
|
[1] https://en.wikipedia.org/wiki/Canonical_S-expressions
|
||
|
|
"""
|
||
|
|
maintainer: ["Jeremie Dimino <jeremie@dimino.org>"]
|
||
|
|
authors: [
|
||
|
|
"Quentin Hocquet <mefyl@gruntech.org>"
|
||
|
|
"Jane Street Group, LLC <opensource@janestreet.com>"
|
||
|
|
"Jeremie Dimino <jeremie@dimino.org>"
|
||
|
|
]
|
||
|
|
license: "MIT"
|
||
|
|
homepage: "https://github.com/ocaml-dune/csexp"
|
||
|
|
doc: "https://ocaml-dune.github.io/csexp/"
|
||
|
|
bug-reports: "https://github.com/ocaml-dune/csexp/issues"
|
||
|
|
depends: [
|
||
|
|
"dune" {>= "3.4"}
|
||
|
|
"ocaml" {>= "4.03.0"}
|
||
|
|
"odoc" {with-doc}
|
||
|
|
]
|
||
|
|
dev-repo: "git+https://github.com/ocaml-dune/csexp.git"
|
||
|
|
build: [
|
||
|
|
["dune" "subst"] {pinned}
|
||
|
|
[
|
||
|
|
"dune"
|
||
|
|
"build"
|
||
|
|
"-p"
|
||
|
|
name
|
||
|
|
"-j"
|
||
|
|
jobs
|
||
|
|
"@install"
|
||
|
|
# "@runtest" {with-test & ocaml:version >= "4.04"}
|
||
|
|
"@doc" {with-doc}
|
||
|
|
]
|
||
|
|
]
|