-
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.
Merge pull request #12 from melange-community/add-native-pkg
Add `melange-json-native` pkg
- Loading branch information
Showing
7 changed files
with
142 additions
and
44 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
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
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
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
opam-version: "2.0" | ||
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" | ||
maintainer: [ | ||
"Antonio Nuno Monteiro <[email protected]>" | ||
"Javier Chávarri <[email protected]>" | ||
] | ||
authors: ["glennsl" "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" | ||
"yojson" {>= "1.6.0"} | ||
"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/melange-community/melange-json.git" |
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,9 +1,8 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
opam-version: "2.0" | ||
synopsis: | ||
"Compositional JSON encode/decode library and PPX for Melange, with native compatibility" | ||
synopsis: "Compositional JSON encode/decode library and PPX for Melange" | ||
description: | ||
"Provides encoders and decoders to convert JSON values into typed values. With the possibility to create custom encoders and decoders and automate them with a PPX." | ||
"Provides tools for converting JSON to typed OCaml values in Melange. It includes custom encoders, decoders, and a PPX for automating these conversions." | ||
maintainer: [ | ||
"Antonio Nuno Monteiro <[email protected]>" | ||
"Javier Chávarri <[email protected]>" | ||
|
@@ -19,7 +18,6 @@ depends: [ | |
"melange-jest" {with-test} | ||
"reason" {>= "3.10.0" & with-test} | ||
"ppxlib" | ||
"yojson" {>= "1.6.0"} | ||
"opam-check-npm-deps" {with-test} | ||
"ocaml-lsp-server" {with-test} | ||
"ocamlformat" {with-test} | ||
|
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
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