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.3.tar.gz" 36 checksum: [ 37 "md5=04572fc23a4651604cfcab83f720cb4c" 38 "sha512=69380ed392faf4495459f97f70a10a6959fce71d2e6ba093472fc272141646307fd7872407de855dfa48ef0435f6587eae5aa50f4a67eac40a9e1946d0c3c070" 39 ] 40}