this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #25657 from leostera/release-serde-0.0.2

[new release] serde (3 packages) (0.0.2)

authored by

Thomas Gazagnaire and committed by
GitHub
03178cf5 2a414384

+124
+42
packages/serde/serde.0.0.2/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "A serialization framework for OCaml" 3 + description: 4 + "Serde is a serialization framework for OCaml that runs on the principle of maximum efficiency and user ergonomics while maintaining format flexibility." 5 + maintainer: ["Leandro Ostera <leandro@abstractmachines.dev>"] 6 + authors: ["Leandro Ostera <leandro@abstractmachines.dev>"] 7 + license: "MIT" 8 + homepage: "https://github.com/serde-ml/serde" 9 + bug-reports: "https://github.com/serde-ml/serde/issues" 10 + depends: [ 11 + "ocaml" {>= "5.1.1"} 12 + "qcheck" {with-test} 13 + "rio" {>= "0.0.8"} 14 + "spices" {with-test} 15 + "dune" {>= "3.12"} 16 + "conf-jq" {with-test} 17 + "odoc" {with-doc} 18 + ] 19 + build: [ 20 + ["dune" "subst"] {dev} 21 + [ 22 + "dune" 23 + "build" 24 + "-p" 25 + name 26 + "-j" 27 + jobs 28 + "@install" 29 + "@runtest" {with-test} 30 + "@doc" {with-doc} 31 + ] 32 + ] 33 + dev-repo: "git+https://github.com/serde-ml/serde.git" 34 + url { 35 + src: 36 + "https://github.com/serde-ml/serde/releases/download/0.0.2/serde-0.0.2.tbz" 37 + checksum: [ 38 + "sha256=0766b13f1e9421f98fab8efc5d43657229f3b3bc13ca4722086da634fe076ca4" 39 + "sha512=1023dcd53c4b69032f466b338e2f0146ee3443b2ec4ce8db2d1f226e1409d81a3da3767ac73e9e047fd61b904a829ff841c26317c8ea050351ba6f70ab4158c4" 40 + ] 41 + } 42 + x-commit-hash: "2ab29c28378b37ce69cd1ebbd55bc2f11d7a40f3"
+43
packages/serde_derive/serde_derive.0.0.2/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Derive-macros for the Serde serialization framework" 3 + description: 4 + "These macros help derive serializers and deserializers for your existing types and provide all the functionality you expect to plug in different data-formats." 5 + maintainer: ["Leandro Ostera <leandro@abstractmachines.dev>"] 6 + authors: ["Leandro Ostera <leandro@abstractmachines.dev>"] 7 + license: "MIT" 8 + homepage: "https://github.com/serde-ml/serde" 9 + bug-reports: "https://github.com/serde-ml/serde/issues" 10 + depends: [ 11 + "ocaml" {>= "5.1.1"} 12 + "ppx_deriving" {>= "5.2.1"} 13 + "ppxlib" {>= "0.28.0"} 14 + "serde" {= version} 15 + "serde_json" {with-test & = version} 16 + "dune" {>= "3.12"} 17 + "conf-jq" {with-test} 18 + "odoc" {with-doc} 19 + ] 20 + build: [ 21 + ["dune" "subst"] {dev} 22 + [ 23 + "dune" 24 + "build" 25 + "-p" 26 + name 27 + "-j" 28 + jobs 29 + "@install" 30 + "@runtest" {with-test} 31 + "@doc" {with-doc} 32 + ] 33 + ] 34 + dev-repo: "git+https://github.com/serde-ml/serde.git" 35 + url { 36 + src: 37 + "https://github.com/serde-ml/serde/releases/download/0.0.2/serde-0.0.2.tbz" 38 + checksum: [ 39 + "sha256=0766b13f1e9421f98fab8efc5d43657229f3b3bc13ca4722086da634fe076ca4" 40 + "sha512=1023dcd53c4b69032f466b338e2f0146ee3443b2ec4ce8db2d1f226e1409d81a3da3767ac73e9e047fd61b904a829ff841c26317c8ea050351ba6f70ab4158c4" 41 + ] 42 + } 43 + x-commit-hash: "2ab29c28378b37ce69cd1ebbd55bc2f11d7a40f3"
+39
packages/serde_json/serde_json.0.0.2/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "JSON format support for Serde" 3 + maintainer: ["Leandro Ostera <leandro@abstractmachines.dev>"] 4 + authors: ["Leandro Ostera <leandro@abstractmachines.dev>"] 5 + license: "MIT" 6 + homepage: "https://github.com/serde-ml/serde" 7 + bug-reports: "https://github.com/serde-ml/serde/issues" 8 + depends: [ 9 + "ocaml" {>= "5.1.1"} 10 + "ppx_inline_test" {>= "v0.16.0"} 11 + "rio" {>= "0.0.8"} 12 + "serde" {= version} 13 + "yojson" {>= "2.1.0"} 14 + "dune" {>= "3.12"} 15 + "odoc" {with-doc} 16 + ] 17 + build: [ 18 + ["dune" "subst"] {dev} 19 + [ 20 + "dune" 21 + "build" 22 + "-p" 23 + name 24 + "-j" 25 + jobs 26 + "@install" 27 + "@doc" {with-doc} 28 + ] 29 + ] 30 + dev-repo: "git+https://github.com/serde-ml/serde.git" 31 + url { 32 + src: 33 + "https://github.com/serde-ml/serde/releases/download/0.0.2/serde-0.0.2.tbz" 34 + checksum: [ 35 + "sha256=0766b13f1e9421f98fab8efc5d43657229f3b3bc13ca4722086da634fe076ca4" 36 + "sha512=1023dcd53c4b69032f466b338e2f0146ee3443b2ec4ce8db2d1f226e1409d81a3da3767ac73e9e047fd61b904a829ff841c26317c8ea050351ba6f70ab4158c4" 37 + ] 38 + } 39 + x-commit-hash: "2ab29c28378b37ce69cd1ebbd55bc2f11d7a40f3"