From 64fedce1b0087d3b71dec8fb39560594d0bd05cf Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Thu, 26 Jun 2014 13:46:46 +0200 Subject: [PATCH] updated description in _oasis --- README.md | 3 --- _oasis | 17 +++++++++++------ 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 984e4a14..43610d5b 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,6 @@ ocaml-containers ================ -A bunch of modules I wrote mostly for fun. It is currently divided into -a few parts: - 1. A usable, reasonably well-designed library that extends OCaml's standard library (in `core/`, packaged under `containers` in ocamlfind. Modules are totally independent and are prefixed with `CC` (for "containers-core" diff --git a/_oasis b/_oasis index 60abbc9f..5f35da1d 100644 --- a/_oasis +++ b/_oasis @@ -1,6 +1,6 @@ OASISFormat: 0.4 Name: containers -Version: 0.1 +Version: dev Homepage: https://github.com/c-cube/ocaml-containers Authors: Simon Cruanes License: BSD-2-clause @@ -9,11 +9,16 @@ Plugins: META (0.3), DevFiles (0.3) OCamlVersion: >= 4.00.1 BuildTools: ocamlbuild -Synopsis: A bunch of modules, including polymorphic containers. -Description: - A bunch of useful modules, including polymorphic containers, graph - abstractions, serialization systems, testing systems and various - experiments. +Synopsis: A modular standard library focused on data structures. +Description: + Containers is a standard library (BSD license) focused on data structures, + combinators and iterators, without dependencies on unix. Every module is + independent and is prefixed with 'CC' in the global namespace. Some modules + extend the stdlib (e.g. CCList provides safe map/fold_right/append, and + additional functions on lists). + + It also features an optional library for dealing with strings, and a `misc` + library full of experimental ideas (not stable, not necessarily usable). Flag "misc" Description: Build the misc library, containing everything from