this repo has no description
1opam-version: "2.0" 2maintainer: "Jane Street developers" 3authors: ["Jane Street Group, LLC"] 4homepage: "https://github.com/janestreet/janestreet_csv" 5bug-reports: "https://github.com/janestreet/janestreet_csv/issues" 6dev-repo: "git+https://github.com/janestreet/janestreet_csv.git" 7doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/janestreet_csv/index.html" 8license: "MIT" 9build: [ 10 ["dune" "build" "-p" name "-j" jobs] 11] 12depends: [ 13 "ocaml" {>= "4.14.0"} 14 "async" {>= "v0.16" & < "v0.17"} 15 "bignum" {>= "v0.16" & < "v0.17"} 16 "core_kernel" {>= "v0.16" & < "v0.17"} 17 "core_unix" {>= "v0.16" & < "v0.17"} 18 "csvfields" {>= "v0.16" & < "v0.17"} 19 "delimited_parsing" {>= "v0.16" & < "v0.17"} 20 "fieldslib" {>= "v0.16" & < "v0.17"} 21 "numeric_string" {>= "v0.16" & < "v0.17"} 22 "ppx_jane" {>= "v0.16" & < "v0.17"} 23 "re2" {>= "v0.16" & < "v0.17"} 24 "textutils" {>= "v0.16" & < "v0.17"} 25 "dune" {>= "2.0.0"} 26 "pcre" 27 "tyxml" {>= "4.3.0"} 28] 29synopsis: "Tools for working with CSVs on the command line" 30description: " 31A suite of tools for working with CSVs from the command line. It 32contains subcommands for pretty printing, selecting, and combining 33CSVs, as well as some conversions to other formats. 34" 35url { 36src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/janestreet_csv-v0.16.0.tar.gz" 37checksum: "sha256=c039eeef15bc68460984e74a003c3068da2e4854c4dc2cdcfec6be946f2b0a65" 38}