-
Notifications
You must be signed in to change notification settings - Fork 3
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
Showing
2 changed files
with
9 additions
and
7 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 |
---|---|---|
|
@@ -6,8 +6,6 @@ | |
|
||
(generate_opam_files true) | ||
|
||
(authors "glennsl" "Andrey Popp") | ||
|
||
(maintainers | ||
"Antonio Nuno Monteiro <[email protected]>" | ||
"Javier Chávarri <[email protected]>") | ||
|
@@ -23,6 +21,7 @@ | |
|
||
(package | ||
(name melange-json) | ||
(authors "glennsl" "Andrey Popp") | ||
(synopsis "Compositional JSON encode/decode library and PPX for Melange") | ||
(description | ||
"Provides tools for converting JSON to typed OCaml values in Melange. It includes custom encoders, decoders, and a PPX for automating these conversions.") | ||
|
@@ -42,11 +41,14 @@ | |
|
||
(package | ||
(name melange-json-native) | ||
(authors "Andrey Popp") | ||
(synopsis "Compositional JSON encode/decode PPX for OCaml") | ||
(description | ||
"A PPX for OCaml that automates encoding and decoding JSON into typed values. It supports custom encoders and decoders, and integrates with Yojson") | ||
(depends | ||
ocaml | ||
ppxlib | ||
(ocaml | ||
(>= "4.12")) | ||
(ppxlib | ||
(>= "0.29.0")) | ||
(yojson | ||
(>= "1.6.0")))) |
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 |
---|---|---|
|
@@ -7,14 +7,14 @@ maintainer: [ | |
"Antonio Nuno Monteiro <[email protected]>" | ||
"Javier Chávarri <[email protected]>" | ||
] | ||
authors: ["glennsl" "Andrey Popp"] | ||
authors: ["Andrey Popp"] | ||
license: ["LGPL-3.0-only" "MPL-2.0"] | ||
homepage: "https://github.com/melange-community/melange-json/" | ||
bug-reports: "https://github.com/melange-community/melange-json/issues" | ||
depends: [ | ||
"dune" {>= "3.9"} | ||
"ocaml" | ||
"ppxlib" | ||
"ocaml" {>= "4.12"} | ||
"ppxlib" {>= "0.29.0"} | ||
"yojson" {>= "1.6.0"} | ||
"odoc" {with-doc} | ||
] | ||
|