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.13" & < "v0.14"} 15 "dune" {>= "1.5.1"} 16 "dune-configurator" 17] 18synopsis: "Full standard library replacement for OCaml" 19description: " 20Full standard library replacement for OCaml 21 22Base is a complete and portable alternative to the OCaml standard 23library. It provides all standard functionalities one would expect 24from a language standard library. It uses consistent conventions 25across all of its module. 26 27Base aims to be usable in any context. As a result system dependent 28features such as I/O are not offered by Base. They are instead 29provided by companion libraries such as stdio: 30 31 https://github.com/janestreet/stdio 32" 33url { 34 src: 35 "https://ocaml.janestreet.com/ocaml-core/v0.13/files/base-v0.13.0.tar.gz" 36 checksum: [ 37 "sha256=b59f9a2e54f178eaa311efa4e33cd15f4e31856a24309ced764bd408c8db4e0f" 38 "md5=527289dbc2c7de748f965d3caae450cb" 39 ] 40}