├── .gitignore ├── .ocamlformat ├── CHANGES.md ├── CONTRIBUTING.md ├── LICENSE.md ├── Makefile ├── README.md ├── dune ├── dune-project ├── example ├── dune ├── example.ml ├── example.mli ├── ppx_csv_conv_deprecated_test.ml └── test.csv ├── ppx_csv_conv.opam ├── src ├── dune ├── ppx_csv_conv_deprecated.ml └── ppx_csv_conv_deprecated.mli └── test ├── dune └── type_name_other_than_t.mlt /.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | *.install 3 | *.merlin 4 | _opam 5 | 6 | -------------------------------------------------------------------------------- /.ocamlformat: -------------------------------------------------------------------------------- 1 | profile=janestreet 2 | -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/ppx_csv_conv/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/ppx_csv_conv/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/ppx_csv_conv/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/ppx_csv_conv/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/ppx_csv_conv/HEAD/README.md -------------------------------------------------------------------------------- /dune: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 3.17) 2 | -------------------------------------------------------------------------------- /example/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/ppx_csv_conv/HEAD/example/dune -------------------------------------------------------------------------------- /example/example.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/ppx_csv_conv/HEAD/example/example.ml -------------------------------------------------------------------------------- /example/example.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/ppx_csv_conv/HEAD/example/example.mli -------------------------------------------------------------------------------- /example/ppx_csv_conv_deprecated_test.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/ppx_csv_conv/HEAD/example/ppx_csv_conv_deprecated_test.ml -------------------------------------------------------------------------------- /example/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/ppx_csv_conv/HEAD/example/test.csv -------------------------------------------------------------------------------- /ppx_csv_conv.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/ppx_csv_conv/HEAD/ppx_csv_conv.opam -------------------------------------------------------------------------------- /src/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/ppx_csv_conv/HEAD/src/dune -------------------------------------------------------------------------------- /src/ppx_csv_conv_deprecated.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/ppx_csv_conv/HEAD/src/ppx_csv_conv_deprecated.ml -------------------------------------------------------------------------------- /src/ppx_csv_conv_deprecated.mli: -------------------------------------------------------------------------------- 1 | open Ppxlib 2 | 3 | val csv : Deriving.t 4 | -------------------------------------------------------------------------------- /test/dune: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/type_name_other_than_t.mlt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/ppx_csv_conv/HEAD/test/type_name_other_than_t.mlt --------------------------------------------------------------------------------