An overlay for monopampam
0
fork

Configure Feed

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

Sync opam files from monorepo (updated 1 packages)

+37
+37
packages/sexpt/sexpt.dev/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Declarative S-expression codecs" 3 + description: """ 4 + Type-safe S-expression encoding and decoding using a combinator-based 5 + approach inspired by jsont. Define codecs once and use them for both 6 + encoding and decoding OCaml values to and from S-expressions.""" 7 + maintainer: ["Thomas Gazagnaire <thomas@gazagnaire.org>"] 8 + authors: ["Thomas Gazagnaire"] 9 + license: "ISC" 10 + homepage: "https://tangled.org/gazagnaire.org/ocaml-sexpt" 11 + bug-reports: "https://tangled.org/gazagnaire.org/ocaml-sexpt/issues" 12 + depends: [ 13 + "dune" {>= "3.21"} 14 + "ocaml" {>= "5.1"} 15 + "odoc" {with-doc} 16 + "alcotest" {>= "1.7" & with-test} 17 + ] 18 + build: [ 19 + ["dune" "subst"] {dev} 20 + [ 21 + "dune" 22 + "build" 23 + "-p" 24 + name 25 + "-j" 26 + jobs 27 + "@install" 28 + "@runtest" {with-test} 29 + "@doc" {with-doc} 30 + ] 31 + ] 32 + x-maintenance-intent: ["(latest)"] 33 + 34 + dev-repo: "git+https://tangled.sh/@gazagnaire.org/ocaml-sexpt.git" 35 + url { 36 + src: "git+https://tangled.sh/@gazagnaire.org/ocaml-sexpt.git#main" 37 + }