Skip to content

Commit 9efa43a

Browse files
committed
[new release] csexp (1.5.2)
CHANGES: - Fix `Csexp.serialised_length`. Previously, it would under count by 2 because it did not take the parentheses into account. (ocaml-dune/csexp#22, @jchavarri)
1 parent 5811dd2 commit 9efa43a

File tree

1 file changed

+58
-0
lines changed
  • packages/csexp/csexp.1.5.2

1 file changed

+58
-0
lines changed

packages/csexp/csexp.1.5.2/opam

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
opam-version: "2.0"
2+
synopsis: "Parsing and printing of S-expressions in Canonical form"
3+
description: """
4+
5+
This library provides minimal support for Canonical S-expressions
6+
[1]. Canonical S-expressions are a binary encoding of S-expressions
7+
that is super simple and well suited for communication between
8+
programs.
9+
10+
This library only provides a few helpers for simple applications. If
11+
you need more advanced support, such as parsing from more fancy input
12+
sources, you should consider copying the code of this library given
13+
how simple parsing S-expressions in canonical form is.
14+
15+
To avoid a dependency on a particular S-expression library, the only
16+
module of this library is parameterised by the type of S-expressions.
17+
18+
[1] https://en.wikipedia.org/wiki/Canonical_S-expressions
19+
"""
20+
maintainer: ["Jeremie Dimino <[email protected]>"]
21+
authors: [
22+
"Quentin Hocquet <[email protected]>"
23+
"Jane Street Group, LLC <[email protected]>"
24+
"Jeremie Dimino <[email protected]>"
25+
]
26+
license: "MIT"
27+
homepage: "https://github.com/ocaml-dune/csexp"
28+
doc: "https://ocaml-dune.github.io/csexp/"
29+
bug-reports: "https://github.com/ocaml-dune/csexp/issues"
30+
depends: [
31+
"dune" {>= "3.4"}
32+
"ocaml" {>= "4.03.0"}
33+
"odoc" {with-doc}
34+
]
35+
dev-repo: "git+https://github.com/ocaml-dune/csexp.git"
36+
build: [
37+
["dune" "subst"] {pinned}
38+
[
39+
"dune"
40+
"build"
41+
"-p"
42+
name
43+
"-j"
44+
jobs
45+
"@install"
46+
# "@runtest" {with-test & ocaml:version >= "4.04"}
47+
"@doc" {with-doc}
48+
]
49+
]
50+
url {
51+
src:
52+
"https://github.com/ocaml-dune/csexp/releases/download/1.5.2/csexp-1.5.2.tbz"
53+
checksum: [
54+
"sha256=1a14dd04bb4379a41990248550628c77913a9c07f3c35c1370b6960e697787ff"
55+
"sha512=be281018bcfc20d4db14894ef51c4b836d6338d2fdfe22e63d46f405f8dea7349e16f1c0ecd65f73d4c85a2a80e618cdbb8c9dafcbb9f229f04f1adca5b1973c"
56+
]
57+
}
58+
x-commit-hash: "e6c4768e10c61bcb04d09748744dad55602149c6"

0 commit comments

Comments
 (0)