Skip to content

Commit 739d8ca

Browse files
committed
2 packages from c-cube/cconv at 0.5
1 parent 74d4467 commit 739d8ca

File tree

2 files changed

+62
-0
lines changed
  • packages
    • cconv/cconv.0.5
    • cconv-ppx/cconv-ppx.0.5

2 files changed

+62
-0
lines changed

packages/cconv-ppx/cconv-ppx.0.5/opam

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
opam-version: "2.0"
2+
synopsis: "Combinators for Type Conversion in OCaml"
3+
maintainer: "[email protected]"
4+
authors: "Simon Cruanes"
5+
tags: ["conversion" "gadt" "serialization" "ppx-deriving"]
6+
homepage: "https://github.com/c-cube/cconv/"
7+
doc: "https://c-cube.github.io/cconv"
8+
bug-reports: "https://github.com/c-cube/cconv/issues/"
9+
depends: [
10+
"dune" {build}
11+
"ocamlfind" {build}
12+
"cconv"
13+
"ppx_deriving" {>= "2.0"}
14+
"ppxlib"
15+
"cppo" {build}
16+
"ppx_tools" {build}
17+
"ppxfind" {build}
18+
"ocaml" {>= "4.02"}
19+
"mdx" {with-test}
20+
"sexplib" {with-test}
21+
"yojson" {with-test}
22+
"bencode" {with-test}
23+
"ounit" {with-test}
24+
]
25+
build: [
26+
["dune" "build" "-p" name "-j" jobs]
27+
["dune" "build" "@doc" "-p" name] {with-doc}
28+
["dune" "runtest" "-p" name] {with-test}
29+
]
30+
dev-repo: "git+https://github.com/c-cube/cconv.git"
31+
url {
32+
src: "https://github.com/c-cube/cconv/archive/0.5.tar.gz"
33+
checksum: [
34+
"md5=1c44c38ffa53706206a0727ea32fefa7"
35+
"sha512=5fc224adfe5655f15a77783ebbe4a9b9983ec8dd6ed5f9c6d6ca56025db419289291ff1c97707ed3432ecb3b6d35af9237e9bab12acde9b15e4458227361795f"
36+
]
37+
}

packages/cconv/cconv.0.5/opam

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
opam-version: "2.0"
2+
synopsis: "Combinators for Type Conversion in OCaml"
3+
maintainer: "[email protected]"
4+
authors: "Simon Cruanes"
5+
tags: ["conversion" "gadt" "serialization"]
6+
homepage: "https://github.com/c-cube/cconv/"
7+
doc: "https://c-cube.github.io/cconv"
8+
bug-reports: "https://github.com/c-cube/cconv/issues/"
9+
depends: [
10+
"dune" {build}
11+
"ocaml" {>= "4.02"}
12+
]
13+
depopts: ["bencode" "sexplib" "yojson"]
14+
build: [
15+
["dune" "build" "-p" name "-j" jobs]
16+
["dune" "build" "@doc" "-p" name] {with-doc}
17+
]
18+
dev-repo: "git+https://github.com/c-cube/cconv.git"
19+
url {
20+
src: "https://github.com/c-cube/cconv/archive/0.5.tar.gz"
21+
checksum: [
22+
"md5=1c44c38ffa53706206a0727ea32fefa7"
23+
"sha512=5fc224adfe5655f15a77783ebbe4a9b9983ec8dd6ed5f9c6d6ca56025db419289291ff1c97707ed3432ecb3b6d35af9237e9bab12acde9b15e4458227361795f"
24+
]
25+
}

0 commit comments

Comments
 (0)