forked from ocaml/opam-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
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 ocaml#25657 from leostera/release-serde-0.0.2
[new release] serde (3 packages) (0.0.2)
- Loading branch information
Showing
3 changed files
with
124 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
opam-version: "2.0" | ||
synopsis: "A serialization framework for OCaml" | ||
description: | ||
"Serde is a serialization framework for OCaml that runs on the principle of maximum efficiency and user ergonomics while maintaining format flexibility." | ||
maintainer: ["Leandro Ostera <[email protected]>"] | ||
authors: ["Leandro Ostera <[email protected]>"] | ||
license: "MIT" | ||
homepage: "https://github.com/serde-ml/serde" | ||
bug-reports: "https://github.com/serde-ml/serde/issues" | ||
depends: [ | ||
"ocaml" {>= "5.1.1"} | ||
"qcheck" {with-test} | ||
"rio" {>= "0.0.8"} | ||
"spices" {with-test} | ||
"dune" {>= "3.12"} | ||
"conf-jq" {with-test} | ||
"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/serde-ml/serde.git" | ||
url { | ||
src: | ||
"https://github.com/serde-ml/serde/releases/download/0.0.2/serde-0.0.2.tbz" | ||
checksum: [ | ||
"sha256=0766b13f1e9421f98fab8efc5d43657229f3b3bc13ca4722086da634fe076ca4" | ||
"sha512=1023dcd53c4b69032f466b338e2f0146ee3443b2ec4ce8db2d1f226e1409d81a3da3767ac73e9e047fd61b904a829ff841c26317c8ea050351ba6f70ab4158c4" | ||
] | ||
} | ||
x-commit-hash: "2ab29c28378b37ce69cd1ebbd55bc2f11d7a40f3" |
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,43 @@ | ||
opam-version: "2.0" | ||
synopsis: "Derive-macros for the Serde serialization framework" | ||
description: | ||
"These macros help derive serializers and deserializers for your existing types and provide all the functionality you expect to plug in different data-formats." | ||
maintainer: ["Leandro Ostera <[email protected]>"] | ||
authors: ["Leandro Ostera <[email protected]>"] | ||
license: "MIT" | ||
homepage: "https://github.com/serde-ml/serde" | ||
bug-reports: "https://github.com/serde-ml/serde/issues" | ||
depends: [ | ||
"ocaml" {>= "5.1.1"} | ||
"ppx_deriving" {>= "5.2.1"} | ||
"ppxlib" {>= "0.28.0"} | ||
"serde" {= version} | ||
"serde_json" {with-test & = version} | ||
"dune" {>= "3.12"} | ||
"conf-jq" {with-test} | ||
"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/serde-ml/serde.git" | ||
url { | ||
src: | ||
"https://github.com/serde-ml/serde/releases/download/0.0.2/serde-0.0.2.tbz" | ||
checksum: [ | ||
"sha256=0766b13f1e9421f98fab8efc5d43657229f3b3bc13ca4722086da634fe076ca4" | ||
"sha512=1023dcd53c4b69032f466b338e2f0146ee3443b2ec4ce8db2d1f226e1409d81a3da3767ac73e9e047fd61b904a829ff841c26317c8ea050351ba6f70ab4158c4" | ||
] | ||
} | ||
x-commit-hash: "2ab29c28378b37ce69cd1ebbd55bc2f11d7a40f3" |
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,39 @@ | ||
opam-version: "2.0" | ||
synopsis: "JSON format support for Serde" | ||
maintainer: ["Leandro Ostera <[email protected]>"] | ||
authors: ["Leandro Ostera <[email protected]>"] | ||
license: "MIT" | ||
homepage: "https://github.com/serde-ml/serde" | ||
bug-reports: "https://github.com/serde-ml/serde/issues" | ||
depends: [ | ||
"ocaml" {>= "5.1.1"} | ||
"ppx_inline_test" {>= "v0.16.0"} | ||
"rio" {>= "0.0.8"} | ||
"serde" {= version} | ||
"yojson" {>= "2.1.0"} | ||
"dune" {>= "3.12"} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/serde-ml/serde.git" | ||
url { | ||
src: | ||
"https://github.com/serde-ml/serde/releases/download/0.0.2/serde-0.0.2.tbz" | ||
checksum: [ | ||
"sha256=0766b13f1e9421f98fab8efc5d43657229f3b3bc13ca4722086da634fe076ca4" | ||
"sha512=1023dcd53c4b69032f466b338e2f0146ee3443b2ec4ce8db2d1f226e1409d81a3da3767ac73e9e047fd61b904a829ff841c26317c8ea050351ba6f70ab4158c4" | ||
] | ||
} | ||
x-commit-hash: "2ab29c28378b37ce69cd1ebbd55bc2f11d7a40f3" |