Skip to content

Commit 48ea14b

Browse files
4 packages from gitlab.com/nomadic-labs/data-encoding/-/archive/v1.0.0/data-encoding-v1.0.0.tar.gz
1 parent 909af7f commit 48ea14b

File tree

4 files changed

+129
-0
lines changed
  • packages
    • data-encoding/data-encoding.1.0.0
    • json-data-encoding-browser/json-data-encoding-browser.1.0.0
    • json-data-encoding-bson/json-data-encoding-bson.1.0.0
    • json-data-encoding/json-data-encoding.1.0.0

4 files changed

+129
-0
lines changed
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
opam-version: "2.0"
2+
maintainer: "[email protected]"
3+
authors: [ "Nomadic Labs" ]
4+
homepage: "https://gitlab.com/nomadic-labs/data-encoding"
5+
bug-reports: "https://gitlab.com/nomadic-labs/data-encoding/issues"
6+
dev-repo: "git+https://gitlab.com/nomadic-labs/data-encoding.git"
7+
license: "MIT"
8+
depends: [
9+
"ocaml" { >= "4.10" }
10+
"dune" { >= "3.0" }
11+
"ezjsonm" { >= "1.1.0" }
12+
"zarith" {>= "1.4"}
13+
"zarith_stubs_js"
14+
"hex" {>= "1.3.0"}
15+
"json-data-encoding" { = version }
16+
"json-data-encoding-bson" { = version }
17+
"alcotest" { >= "1.0.0" & with-test }
18+
"crowbar" { >= "0.2" & with-test }
19+
"ppx_expect"
20+
"either"
21+
"bigstringaf" { >= "0.6.1" }
22+
"ppx_hash"
23+
"ocamlformat" { = "0.24.1" & with-doc } # not technically a doc dep; modify when with-dev becomes available
24+
"odoc" { with-doc }
25+
"md2mld" { with-test } # not technically a test dep; modify when https://github.com/ocurrent/ocaml-ci/issues/264 is fixed
26+
"js_of_ocaml-compiler" { with-test }
27+
"conf-npm" { with-test }
28+
]
29+
build: [
30+
["dune" "build" "-p" name "-j" jobs]
31+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
32+
]
33+
synopsis: "Library of JSON and binary encoding combinators"
34+
url {
35+
src:
36+
"https://gitlab.com/nomadic-labs/data-encoding/-/archive/v1.0.0/data-encoding-v1.0.0.tar.gz"
37+
checksum: [
38+
"md5=52d40e2793a0f48a47694efac13e984a"
39+
"sha512=8682dbdf6936e967a377f9b2f9883f74c722d01212c9ad8e7666f4a69a5600e3f65b4d7e20a3313c039aa6401cd38c4135ee02fc2642e0343de033f1a330e4c8"
40+
]
41+
}
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
opam-version: "2.0"
2+
synopsis: "Type-safe encoding to and decoding from JSON (browser support)"
3+
maintainer: "[email protected]"
4+
authors: [ "Nomadic Labs" "Ocamlpro" ]
5+
homepage: "https://gitlab.com/nomadic-labs/json-data-encoding"
6+
bug-reports: "https://gitlab.com/nomadic-labs/json-data-encoding/issues"
7+
license: "MIT"
8+
dev-repo: "git+https://gitlab.com/nomadic-labs/json-data-encoding"
9+
10+
build: [
11+
["dune" "build" "-j" jobs "-p" name]
12+
]
13+
14+
depends: [
15+
"ocaml" {>= "4.10"}
16+
"dune" {>= "3.0"}
17+
"json-data-encoding" {= version }
18+
"js_of_ocaml" {>= "3.3.0"}
19+
]
20+
url {
21+
src:
22+
"https://gitlab.com/nomadic-labs/data-encoding/-/archive/v1.0.0/data-encoding-v1.0.0.tar.gz"
23+
checksum: [
24+
"md5=52d40e2793a0f48a47694efac13e984a"
25+
"sha512=8682dbdf6936e967a377f9b2f9883f74c722d01212c9ad8e7666f4a69a5600e3f65b4d7e20a3313c039aa6401cd38c4135ee02fc2642e0343de033f1a330e4c8"
26+
]
27+
}
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
opam-version: "2.0"
2+
synopsis: "Type-safe encoding to and decoding from JSON (bson support)"
3+
maintainer: "[email protected]"
4+
authors: [ "Nomadic Labs" "Ocamlpro" ]
5+
homepage: "https://gitlab.com/nomadic-labs/json-data-encoding"
6+
bug-reports: "https://gitlab.com/nomadic-labs/json-data-encoding/issues"
7+
license: "MIT"
8+
dev-repo: "git+https://gitlab.com/nomadic-labs/json-data-encoding"
9+
10+
build: [
11+
["dune" "build" "-j" jobs "-p" name]
12+
]
13+
14+
depends: [
15+
"ocaml" {>= "4.10"}
16+
"dune" {>= "3.0"}
17+
"json-data-encoding" {= version }
18+
"ocplib-endian" {>= "1.0"}
19+
]
20+
url {
21+
src:
22+
"https://gitlab.com/nomadic-labs/data-encoding/-/archive/v1.0.0/data-encoding-v1.0.0.tar.gz"
23+
checksum: [
24+
"md5=52d40e2793a0f48a47694efac13e984a"
25+
"sha512=8682dbdf6936e967a377f9b2f9883f74c722d01212c9ad8e7666f4a69a5600e3f65b4d7e20a3313c039aa6401cd38c4135ee02fc2642e0343de033f1a330e4c8"
26+
]
27+
}
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
opam-version: "2.0"
2+
synopsis: "Type-safe encoding to and decoding from JSON"
3+
maintainer: "[email protected]"
4+
authors: [ "Nomadic Labs" "Ocamlpro" ]
5+
homepage: "https://gitlab.com/nomadic-labs/json-data-encoding"
6+
bug-reports: "https://gitlab.com/nomadic-labs/json-data-encoding/issues"
7+
license: "MIT"
8+
dev-repo: "git+https://gitlab.com/nomadic-labs/json-data-encoding"
9+
10+
build: [
11+
["dune" "build" "-j" jobs "-p" name]
12+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
13+
]
14+
15+
depends: [
16+
"ocaml" {>= "4.10"}
17+
"dune" {>= "3.0"}
18+
"uri" {>= "1.9.0" }
19+
"hex" {>= "1.3.0"}
20+
"crowbar" { with-test }
21+
"alcotest" { with-test }
22+
"ocamlformat" { = "0.24.1" & with-doc } # not technically a doc dep; modify when with-dev becomes available
23+
"odoc" { with-doc }
24+
"js_of_ocaml-compiler" { with-test }
25+
"conf-npm" { with-test }
26+
]
27+
url {
28+
src:
29+
"https://gitlab.com/nomadic-labs/data-encoding/-/archive/v1.0.0/data-encoding-v1.0.0.tar.gz"
30+
checksum: [
31+
"md5=52d40e2793a0f48a47694efac13e984a"
32+
"sha512=8682dbdf6936e967a377f9b2f9883f74c722d01212c9ad8e7666f4a69a5600e3f65b4d7e20a3313c039aa6401cd38c4135ee02fc2642e0343de033f1a330e4c8"
33+
]
34+
}

0 commit comments

Comments
 (0)