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"}
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.5.tbz"
36 checksum: [
37 "sha256=865692630c07c3ab87c66cdfc2734c0fdfc9c34a57f8e89ffec7c7d15e7a70fa"
38 "md5=e148907c24157d1df43bec89b58b3ec8"
39 ]
40}
41
42x-maintenance-intent: ["(latest)"]