Skip to content

Commit b266571

Browse files
authored
Merge pull request #28910 from tmcgilchrist/release-avro-simple-0.1
[new release] avro-simple (0.1)
2 parents a72ada2 + bcff42d commit b266571

File tree

1 file changed

+52
-0
lines changed
  • packages/avro-simple/avro-simple.0.1

1 file changed

+52
-0
lines changed
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
opam-version: "2.0"
2+
synopsis: "Pure OCaml implementation of Apache Avro"
3+
description:
4+
"A fast, feature-rich, pure OCaml implementation of Apache Avro with codec-based design, schema evolution support, and container file format."
5+
maintainer: ["[email protected]"]
6+
authors: ["Tim McGilchrist"]
7+
license: "BSD-3-clause"
8+
homepage: "https://github.com/tmcgilchrist/ocaml-avro"
9+
bug-reports: "https://github.com/tmcgilchrist/ocaml-avro/issues"
10+
depends: [
11+
"ocaml" {>= "5.0"}
12+
"dune" {>= "3.19" & >= "3.0"}
13+
"yojson" {>= "2.0.0"}
14+
"decompress" {>= "1.5.0"}
15+
"bigstringaf" {>= "0.9.0"}
16+
"uuidm" {>= "0.9"}
17+
"zarith" {>= "1.14"}
18+
"alcotest" {with-test & >= "1.7.0"}
19+
"qcheck" {with-test & >= "0.20"}
20+
"avro" {with-dev-setup}
21+
"benchmark" {with-dev-setup}
22+
"odoc" {with-doc}
23+
]
24+
depopts: [
25+
"snappy" {>= "0.1.0"}
26+
"zstd" {>= "0.3"}
27+
]
28+
build: [
29+
["dune" "subst"] {dev}
30+
[
31+
"dune"
32+
"build"
33+
"-p"
34+
name
35+
"-j"
36+
jobs
37+
"@install"
38+
"@runtest" {with-test & arch != "arm32" & arch != "x86_32"}
39+
"@doc" {with-doc}
40+
]
41+
]
42+
dev-repo: "git+https://github.com/tmcgilchrist/ocaml-avro.git"
43+
x-maintenance-intent: ["(latest)"]
44+
url {
45+
src:
46+
"https://github.com/tmcgilchrist/ocaml-avro/releases/download/0.1/avro-simple-0.1.tbz"
47+
checksum: [
48+
"sha256=2f0f7e750a884920d2302fed302d920598789eba3673443d86ee1d7b57a663bc"
49+
"sha512=25830478f5f2724b46e1a620e6e42486b53f95e1fc833c82a4a20d021ad9658ac4b50defc3b324dd7393e806460106bb4bad412c37114617ec361b0d64903f03"
50+
]
51+
}
52+
x-commit-hash: "e68a8de8fa3b69fd05189ed88ef45da9c6291442"

0 commit comments

Comments
 (0)