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: """
22Astring exposes an alternative `String` module for OCaml. This module
23tries to balance minimality and expressiveness for basic, index-free,
24string processing and provides types and functions for substrings,
25string sets and string maps.
26
27Remaining compatible with the OCaml `String` module is a non-goal. The
28`String` module exposed by Astring has exception safe functions,
29removes deprecated and rarely used functions, alters some signatures
30and names, adds a few missing functions and fully exploits OCaml's
31newfound string immutability.
32
33Astring depends only on the OCaml standard library. It is distributed
34under the ISC license."""
35url {
36 src: "http://erratique.ch/software/astring/releases/astring-0.8.3.tbz"
37 checksum: [
38 "sha256=206646340d86ffcca900d0a3fbded2140c0efc4b74a84f84dc92667a07e3b247"
39 "md5=c5bf6352b9ac27fbeab342740f4fa870"
40 ]
41}