├── .github └── workflows │ └── build.yml ├── .gitignore ├── .ocamlformat ├── CHANGES.md ├── LICENSE ├── Makefile ├── README.md ├── __tests__ ├── decoders_bs_json_test.ml └── decoders_bs_xml_test.ml ├── bsconfig.json ├── decoders-bencode.opam ├── decoders-cbor.opam ├── decoders-ezjsonm.opam ├── decoders-ezxmlm.opam ├── decoders-jsonaf.opam ├── decoders-jsonm.opam ├── decoders-msgpck.opam ├── decoders-msgpck.opam.template ├── decoders-otoml.opam ├── decoders-sexplib.opam ├── decoders-yojson.opam ├── decoders.opam ├── dune ├── dune-project ├── flake.lock ├── flake.nix ├── package.json ├── src-bencode ├── decode.ml ├── decode.mli ├── dune ├── encode.ml └── encode.mli ├── src-bs ├── bs_json.ml ├── bs_json.mli ├── bs_xml.ml ├── bs_xml.mli ├── shims_let_ops_.ml ├── util.ml └── util.mli ├── src-cbor ├── decode.ml ├── decode.mli ├── dune ├── encode.ml └── encode.mli ├── src-ezjsonm ├── decode.ml ├── decode.mli ├── dune ├── encode.ml └── encode.mli ├── src-ezxmlm ├── decode.ml ├── decode.mli └── dune ├── src-jsonaf ├── decoders_jsonaf.ml ├── dune ├── jsonaf_decodeable.ml ├── jsonaf_decodeable.mli ├── jsonaf_encodeable.ml └── jsonaf_encodeable.mli ├── src-jsonm ├── dune ├── encode.ml └── encode.mli ├── src-msgpck ├── decode.ml ├── decode.mli ├── dune ├── encode.ml └── encode.mli ├── src-ocyaml ├── decode.ml ├── decode.mli └── dune ├── src-otoml ├── decoders_otoml.ml ├── decoders_otoml.mli └── dune ├── src-sexplib ├── decode.ml ├── decode.mli └── dune ├── src-yojson ├── basic.ml ├── basic.mli ├── dune ├── raw.ml ├── raw.mli ├── safe.ml └── safe.mli ├── src ├── decode.ml ├── decode.mli ├── decoder.ml ├── decoder.mli ├── decoders.ml ├── dune ├── encode.ml ├── encode.mli ├── error.ml ├── error.mli ├── gen │ ├── dune │ └── mkshims.ml ├── sig.ml ├── util.ml ├── util.mli └── xml.ml ├── test-bencode ├── dune └── main.ml ├── test-cbor ├── dune └── main.ml ├── test-ezjsonm ├── dune └── main.ml ├── test-ezxmlm ├── dune ├── test_ezxmlm_decode.expected └── test_ezxmlm_decode.ml ├── test-jsonaf ├── dune └── main.ml ├── test-jsonm ├── dune └── main.ml ├── test-msgpck ├── dune └── main.ml ├── test-otoml ├── dune └── main.ml ├── test-sexplib ├── dune └── main.ml └── test-yojson ├── dune └── main.ml /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/.gitignore -------------------------------------------------------------------------------- /.ocamlformat: -------------------------------------------------------------------------------- 1 | version = 0.20.1 2 | profile = sparse 3 | -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | ISC -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/decoders_bs_json_test.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/__tests__/decoders_bs_json_test.ml -------------------------------------------------------------------------------- /__tests__/decoders_bs_xml_test.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/__tests__/decoders_bs_xml_test.ml -------------------------------------------------------------------------------- /bsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/bsconfig.json -------------------------------------------------------------------------------- /decoders-bencode.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/decoders-bencode.opam -------------------------------------------------------------------------------- /decoders-cbor.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/decoders-cbor.opam -------------------------------------------------------------------------------- /decoders-ezjsonm.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/decoders-ezjsonm.opam -------------------------------------------------------------------------------- /decoders-ezxmlm.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/decoders-ezxmlm.opam -------------------------------------------------------------------------------- /decoders-jsonaf.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/decoders-jsonaf.opam -------------------------------------------------------------------------------- /decoders-jsonm.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/decoders-jsonm.opam -------------------------------------------------------------------------------- /decoders-msgpck.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/decoders-msgpck.opam -------------------------------------------------------------------------------- /decoders-msgpck.opam.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/decoders-msgpck.opam.template -------------------------------------------------------------------------------- /decoders-otoml.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/decoders-otoml.opam -------------------------------------------------------------------------------- /decoders-sexplib.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/decoders-sexplib.opam -------------------------------------------------------------------------------- /decoders-yojson.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/decoders-yojson.opam -------------------------------------------------------------------------------- /decoders.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/decoders.opam -------------------------------------------------------------------------------- /dune: -------------------------------------------------------------------------------- 1 | (dirs :standard \ node_modules) 2 | -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/dune-project -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/flake.nix -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/package.json -------------------------------------------------------------------------------- /src-bencode/decode.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-bencode/decode.ml -------------------------------------------------------------------------------- /src-bencode/decode.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-bencode/decode.mli -------------------------------------------------------------------------------- /src-bencode/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-bencode/dune -------------------------------------------------------------------------------- /src-bencode/encode.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-bencode/encode.ml -------------------------------------------------------------------------------- /src-bencode/encode.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-bencode/encode.mli -------------------------------------------------------------------------------- /src-bs/bs_json.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-bs/bs_json.ml -------------------------------------------------------------------------------- /src-bs/bs_json.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-bs/bs_json.mli -------------------------------------------------------------------------------- /src-bs/bs_xml.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-bs/bs_xml.ml -------------------------------------------------------------------------------- /src-bs/bs_xml.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-bs/bs_xml.mli -------------------------------------------------------------------------------- /src-bs/shims_let_ops_.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-bs/shims_let_ops_.ml -------------------------------------------------------------------------------- /src-bs/util.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-bs/util.ml -------------------------------------------------------------------------------- /src-bs/util.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-bs/util.mli -------------------------------------------------------------------------------- /src-cbor/decode.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-cbor/decode.ml -------------------------------------------------------------------------------- /src-cbor/decode.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-cbor/decode.mli -------------------------------------------------------------------------------- /src-cbor/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-cbor/dune -------------------------------------------------------------------------------- /src-cbor/encode.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-cbor/encode.ml -------------------------------------------------------------------------------- /src-cbor/encode.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-cbor/encode.mli -------------------------------------------------------------------------------- /src-ezjsonm/decode.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-ezjsonm/decode.ml -------------------------------------------------------------------------------- /src-ezjsonm/decode.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-ezjsonm/decode.mli -------------------------------------------------------------------------------- /src-ezjsonm/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-ezjsonm/dune -------------------------------------------------------------------------------- /src-ezjsonm/encode.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-ezjsonm/encode.ml -------------------------------------------------------------------------------- /src-ezjsonm/encode.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-ezjsonm/encode.mli -------------------------------------------------------------------------------- /src-ezxmlm/decode.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-ezxmlm/decode.ml -------------------------------------------------------------------------------- /src-ezxmlm/decode.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-ezxmlm/decode.mli -------------------------------------------------------------------------------- /src-ezxmlm/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-ezxmlm/dune -------------------------------------------------------------------------------- /src-jsonaf/decoders_jsonaf.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-jsonaf/decoders_jsonaf.ml -------------------------------------------------------------------------------- /src-jsonaf/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-jsonaf/dune -------------------------------------------------------------------------------- /src-jsonaf/jsonaf_decodeable.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-jsonaf/jsonaf_decodeable.ml -------------------------------------------------------------------------------- /src-jsonaf/jsonaf_decodeable.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-jsonaf/jsonaf_decodeable.mli -------------------------------------------------------------------------------- /src-jsonaf/jsonaf_encodeable.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-jsonaf/jsonaf_encodeable.ml -------------------------------------------------------------------------------- /src-jsonaf/jsonaf_encodeable.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-jsonaf/jsonaf_encodeable.mli -------------------------------------------------------------------------------- /src-jsonm/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-jsonm/dune -------------------------------------------------------------------------------- /src-jsonm/encode.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-jsonm/encode.ml -------------------------------------------------------------------------------- /src-jsonm/encode.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-jsonm/encode.mli -------------------------------------------------------------------------------- /src-msgpck/decode.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-msgpck/decode.ml -------------------------------------------------------------------------------- /src-msgpck/decode.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-msgpck/decode.mli -------------------------------------------------------------------------------- /src-msgpck/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-msgpck/dune -------------------------------------------------------------------------------- /src-msgpck/encode.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-msgpck/encode.ml -------------------------------------------------------------------------------- /src-msgpck/encode.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-msgpck/encode.mli -------------------------------------------------------------------------------- /src-ocyaml/decode.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-ocyaml/decode.ml -------------------------------------------------------------------------------- /src-ocyaml/decode.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-ocyaml/decode.mli -------------------------------------------------------------------------------- /src-ocyaml/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-ocyaml/dune -------------------------------------------------------------------------------- /src-otoml/decoders_otoml.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-otoml/decoders_otoml.ml -------------------------------------------------------------------------------- /src-otoml/decoders_otoml.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-otoml/decoders_otoml.mli -------------------------------------------------------------------------------- /src-otoml/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-otoml/dune -------------------------------------------------------------------------------- /src-sexplib/decode.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-sexplib/decode.ml -------------------------------------------------------------------------------- /src-sexplib/decode.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-sexplib/decode.mli -------------------------------------------------------------------------------- /src-sexplib/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-sexplib/dune -------------------------------------------------------------------------------- /src-yojson/basic.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-yojson/basic.ml -------------------------------------------------------------------------------- /src-yojson/basic.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-yojson/basic.mli -------------------------------------------------------------------------------- /src-yojson/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-yojson/dune -------------------------------------------------------------------------------- /src-yojson/raw.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-yojson/raw.ml -------------------------------------------------------------------------------- /src-yojson/raw.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-yojson/raw.mli -------------------------------------------------------------------------------- /src-yojson/safe.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-yojson/safe.ml -------------------------------------------------------------------------------- /src-yojson/safe.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src-yojson/safe.mli -------------------------------------------------------------------------------- /src/decode.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src/decode.ml -------------------------------------------------------------------------------- /src/decode.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src/decode.mli -------------------------------------------------------------------------------- /src/decoder.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src/decoder.ml -------------------------------------------------------------------------------- /src/decoder.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src/decoder.mli -------------------------------------------------------------------------------- /src/decoders.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src/decoders.ml -------------------------------------------------------------------------------- /src/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src/dune -------------------------------------------------------------------------------- /src/encode.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src/encode.ml -------------------------------------------------------------------------------- /src/encode.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src/encode.mli -------------------------------------------------------------------------------- /src/error.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src/error.ml -------------------------------------------------------------------------------- /src/error.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src/error.mli -------------------------------------------------------------------------------- /src/gen/dune: -------------------------------------------------------------------------------- 1 | (executable 2 | (name mkshims) 3 | (modes native)) 4 | -------------------------------------------------------------------------------- /src/gen/mkshims.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src/gen/mkshims.ml -------------------------------------------------------------------------------- /src/sig.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src/sig.ml -------------------------------------------------------------------------------- /src/util.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src/util.ml -------------------------------------------------------------------------------- /src/util.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src/util.mli -------------------------------------------------------------------------------- /src/xml.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/src/xml.ml -------------------------------------------------------------------------------- /test-bencode/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/test-bencode/dune -------------------------------------------------------------------------------- /test-bencode/main.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/test-bencode/main.ml -------------------------------------------------------------------------------- /test-cbor/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/test-cbor/dune -------------------------------------------------------------------------------- /test-cbor/main.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/test-cbor/main.ml -------------------------------------------------------------------------------- /test-ezjsonm/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/test-ezjsonm/dune -------------------------------------------------------------------------------- /test-ezjsonm/main.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/test-ezjsonm/main.ml -------------------------------------------------------------------------------- /test-ezxmlm/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/test-ezxmlm/dune -------------------------------------------------------------------------------- /test-ezxmlm/test_ezxmlm_decode.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/test-ezxmlm/test_ezxmlm_decode.expected -------------------------------------------------------------------------------- /test-ezxmlm/test_ezxmlm_decode.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/test-ezxmlm/test_ezxmlm_decode.ml -------------------------------------------------------------------------------- /test-jsonaf/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/test-jsonaf/dune -------------------------------------------------------------------------------- /test-jsonaf/main.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/test-jsonaf/main.ml -------------------------------------------------------------------------------- /test-jsonm/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/test-jsonm/dune -------------------------------------------------------------------------------- /test-jsonm/main.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/test-jsonm/main.ml -------------------------------------------------------------------------------- /test-msgpck/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/test-msgpck/dune -------------------------------------------------------------------------------- /test-msgpck/main.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/test-msgpck/main.ml -------------------------------------------------------------------------------- /test-otoml/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/test-otoml/dune -------------------------------------------------------------------------------- /test-otoml/main.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/test-otoml/main.ml -------------------------------------------------------------------------------- /test-sexplib/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/test-sexplib/dune -------------------------------------------------------------------------------- /test-sexplib/main.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/test-sexplib/main.ml -------------------------------------------------------------------------------- /test-yojson/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/test-yojson/dune -------------------------------------------------------------------------------- /test-yojson/main.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjbray/ocaml-decoders/HEAD/test-yojson/main.ml --------------------------------------------------------------------------------