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