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