this repo has no description
1opam-version: "2.0" 2maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" 3authors: ["The astring programmers"] 4homepage: "https://erratique.ch/software/astring" 5doc: "https://erratique.ch/software/astring/doc" 6dev-repo: "git+http://erratique.ch/repos/astring.git" 7bug-reports: "https://github.com/dbuenzli/astring/issues" 8tags: [ "string" "org:erratique" ] 9license: "ISC" 10depends: [ 11 "ocaml" {>= "4.05.0" & < "4.12.0"} 12 "ocamlfind" {build} 13 "ocamlbuild" {build} 14 "topkg" {build} ] 15build: [[ "ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%" ]] 16 17synopsis: """Alternative String module for OCaml""" 18description: """\ 19 20Astring exposes an alternative `String` module for OCaml. This module 21tries to balance minimality and expressiveness for basic, index-free, 22string processing and provides types and functions for substrings, 23string sets and string maps. 24 25Remaining compatible with the OCaml `String` module is a non-goal. The 26`String` module exposed by Astring has exception safe functions, 27removes deprecated and rarely used functions, alters some signatures 28and names, adds a few missing functions and fully exploits OCaml's 29newfound string immutability. 30 31Astring depends only on the OCaml standard library. It is distributed 32under the ISC license. 33""" 34url { 35 src: "https://erratique.ch/software/astring/releases/astring-0.8.4.tbz" 36 checksum: [ 37 "sha256=80f770f195e26fe14efe09219b98552029fc4a72dd518649f3ce52ee90dc8634" 38 "md5=548fcbf501ca4cb816d219ca4f25f660" 39 ] 40}