this repo has no description
1opam-version: "2.0" 2maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" 3authors: ["Daniel Bünzli <daniel.buenzl i@erratique.ch>"] 4homepage: "http://erratique.ch/software/astring" 5doc: "http://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.01.0" & < "4.12.0"} 12 "ocamlfind" {build} 13 "ocamlbuild" {build} 14 "topkg" {build} 15 "base-bytes" 16] 17build: [[ 18 "ocaml" "pkg/pkg.ml" "build" 19 "--pinned" "%{pinned}%" ]] 20synopsis: "Alternative String module for OCaml" 21description: """ 22Release %%VERSION%% 23 24Astring exposes an alternative `String` module for OCaml. This module 25tries to balance minimality and expressiveness for basic, index-free, 26string processing and provides types and functions for substrings, 27string sets and string maps. 28 29Remaining compatible with the OCaml `String` module is a non-goal. The 30`String` module exposed by Astring has exception safe functions, 31removes deprecated and rarely used functions, alters some signatures 32and names, adds a few missing functions and fully exploits OCaml's 33newfound string immutability. 34 35Astring depends only on the OCaml standard library. It is distributed 36under the ISC license.""" 37url { 38 src: "http://erratique.ch/software/astring/releases/astring-0.8.2.tbz" 39 checksum: [ 40 "sha256=b8400953b64e7bc1018e7d47b58259db6546ddc8c422a7f3de4a8224dd71fddf" 41 "md5=533f5b9a7c99b591043f69782123bd78" 42 ] 43}