this repo has no description
1opam-version: "2.0" 2maintainer: "Christophe Troestler <Christophe.Troestler@umons.ac.be>" 3authors: ["Richard Jones" 4 "Christophe Troestler"] 5tags: ["csv" "database" "science"] 6license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 7homepage: "https://github.com/Chris00/ocaml-csv" 8dev-repo: "git+https://github.com/Chris00/ocaml-csv.git" 9bug-reports: "https://github.com/Chris00/ocaml-csv/issues" 10doc: "https://Chris00.github.io/ocaml-csv/doc" 11build: [ 12 ["dune" "subst"] {dev} 13 ["dune" "build" "-p" name "-j" jobs] 14 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 15] 16depends: [ 17 "ocaml" {>= "4.03.0"} 18 "csv" {= version} 19 "dune" 20 "base-bytes" 21 "base-unix" 22 "lwt" {>= "2.4.7"} 23] 24synopsis: "A pure OCaml library to read and write CSV files, LWT version" 25description: """ 26This is a pure OCaml library to read and write CSV files, including 27all extensions used by Excel — e.g. quotes, newlines, 8 bit characters 28in fields, \"0 etc. A special representation of rows of CSV files with 29a header is provided. This version can be used with the monadic 30concurrency library LWT.""" 31url { 32 src: 33 "https://github.com/Chris00/ocaml-csv/releases/download/2.4/csv-2.4.tbz" 34 checksum: [ 35 "sha256=13fec48177f2658c4c62edf04f5edd055962fbf2abb4c3e372d268dd2ab2a98e" 36 "sha512=a8a952315950fc7fcca36c758b69618296060fd4eab3140ac364ad62172cf665b3c0c9d892ddb586929217466a42f33f432e32e3bd0c1e549ea22bef6ef8a900" 37 ] 38}