this repo has no description
1opam-version: "2.0" 2maintainer: "Jane Street developers" 3authors: ["Jane Street Group, LLC"] 4homepage: "https://github.com/janestreet/base" 5bug-reports: "https://github.com/janestreet/base/issues" 6dev-repo: "git+https://github.com/janestreet/base.git" 7doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/base/index.html" 8license: "MIT" 9build: [ 10 ["dune" "build" "-p" name "-j" jobs] 11] 12depends: [ 13 "ocaml" {>= "4.04.2" & < "4.10.0"} 14 "sexplib0" {>= "v0.12" & < "v0.13"} 15 "dune" {>= "1.5.1"} 16 "dune-configurator" 17] 18depopts: [ 19 "base-native-int63" 20] 21synopsis: "Full standard library replacement for OCaml" 22description: " 23Full standard library replacement for OCaml 24 25Base is a complete and portable alternative to the OCaml standard 26library. It provides all standard functionalities one would expect 27from a language standard library. It uses consistent conventions 28across all of its module. 29 30Base aims to be usable in any context. As a result system dependent 31features such as I/O are not offered by Base. They are instead 32provided by companion libraries such as stdio: 33 34 https://github.com/janestreet/stdio 35" 36url { 37 src: "https://github.com/janestreet/base/archive/v0.12.2.tar.gz" 38 checksum: [ 39 "sha256=0aa8fa8778412c67c38d40e9859bfa5871c4f9c25991f09fea201ae6aaf1d0d9" 40 "md5=7150e848a730369a2549d01645fb6c72" 41 ] 42}