Skip to content

Commit

Permalink
add lower bounds + fix authors
Browse files Browse the repository at this point in the history
  • Loading branch information
jchavarri committed Aug 28, 2024
1 parent 5b6ec5f commit 8b9e039
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
10 changes: 6 additions & 4 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@

(generate_opam_files true)

(authors "glennsl" "Andrey Popp")

(maintainers
"Antonio Nuno Monteiro <[email protected]>"
"Javier Chávarri <[email protected]>")
Expand All @@ -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.")
Expand All @@ -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"))))
6 changes: 3 additions & 3 deletions melange-json-native.opam
Original file line number Diff line number Diff line change
Expand Up @@ -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}
]
Expand Down

0 comments on commit 8b9e039

Please sign in to comment.