-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Daniel Hilst
committed
Aug 20, 2022
1 parent
4af6cbe
commit 2c88737
Showing
1 changed file
with
7 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
opam-version: "2.0" | ||
maintainer: ["nathan@cryptosense.com" "[email protected]"] | ||
authors: ["Martin Jambon"] | ||
maintainer: ["danielhilst@gmail.com"] | ||
authors: ["Daniel Hilst", "Gorm Casper", "Gert Sønderby"] | ||
homepage: "https://github.com/ocaml-community/yojson" | ||
bug-reports: "https://github.com/ocaml-community/yojson/issues" | ||
dev-repo: "git+https://github.com/ocaml-community/yojson.git" | ||
|
@@ -19,15 +19,9 @@ depends: [ | |
"alcotest" {with-test & >= "0.8.5"} | ||
] | ||
synopsis: | ||
"Yojson is an optimized parsing and printing library for the JSON format" | ||
"Yojson_json5 is a parsing and printing library for the JSON5 format" | ||
description: """ | ||
Yojson is an optimized parsing and printing library for the JSON format. | ||
|
||
It addresses a few shortcomings of json-wheel including 2x speedup, | ||
polymorphic variants and optional syntax for tuples and variants. | ||
|
||
ydump is a pretty-printing command-line program provided with the | ||
yojson package. | ||
|
||
The program atdgen can be used to derive OCaml-JSON serializers and | ||
deserializers from type definitions.""" | ||
Yojson_json5 is a parsing and printing library for the JSON5 format. | ||
It support parsing JSON5 to Yojson.Basic.t, Yojson.Safe.t and | ||
Yojson.Raw.t types. | ||
""" |