File tree Expand file tree Collapse file tree 4 files changed +132
-0
lines changed
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 Expand file tree Collapse file tree 4 files changed +132
-0
lines changed Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ 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=d15b03873f0ccc333b60bfcdf0595766"
39+ "sha512=0a5355bae421b5d155eeff7ad333cce32cf317b88ac69a07be715ff9a4cd05c8e1715de4917ed8f67789070175654ea3e332a348e586d5005e8772f5672c4a6f"
40+ ]
41+ }
Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "Type-safe encoding to and decoding from JSON (browser support)"
3+ 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=d15b03873f0ccc333b60bfcdf0595766"
25+ "sha512=0a5355bae421b5d155eeff7ad333cce32cf317b88ac69a07be715ff9a4cd05c8e1715de4917ed8f67789070175654ea3e332a348e586d5005e8772f5672c4a6f"
26+ ]
27+ }
Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "Type-safe encoding to and decoding from JSON (bson support)"
3+ 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=d15b03873f0ccc333b60bfcdf0595766"
25+ "sha512=0a5355bae421b5d155eeff7ad333cce32cf317b88ac69a07be715ff9a4cd05c8e1715de4917ed8f67789070175654ea3e332a348e586d5005e8772f5672c4a6f"
26+ ]
27+ }
Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "Type-safe encoding to and decoding from JSON"
3+ 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+ conflicts: [
28+ "data-encoding" {!= version}
29+ ]
30+ url {
31+ src:
32+ "https://gitlab.com/nomadic-labs/data-encoding/-/archive/v1.0.0/data-encoding-v1.0.0.tar.gz"
33+ checksum: [
34+ "md5=d15b03873f0ccc333b60bfcdf0595766"
35+ "sha512=0a5355bae421b5d155eeff7ad333cce32cf317b88ac69a07be715ff9a4cd05c8e1715de4917ed8f67789070175654ea3e332a348e586d5005e8772f5672c4a6f"
36+ ]
37+ }
You can’t perform that action at this time.
0 commit comments