opam-version: "1.2"
name: "containers"
version: "1.2"
author: "Simon Cruanes"
maintainer: "simon.cruanes@inria.fr"
build: [
    ["./configure"
        "--prefix" prefix
        "--disable-bench"
        "--disable-tests"
        "--%{base-unix:enable}%-unix"
        "--enable-docs"
    ]
    [make "build"]
]
install: [
    [make "install"]
]
build-doc: [ make "doc" ]
build-test: [ make "test" ]
remove: [
    ["ocamlfind" "remove" "containers"]
]
depends: [
  "ocamlfind" {build}
  "base-bytes"
  "result"
  "cppo" {build}
  "ocamlbuild" {build}
]
depopts: [
  "base-unix"
  "base-threads"
  "qtest" { test }
]
conflicts: [
  "sequence" { < "0.5" }
]
tags: [ "stdlib" "containers" "iterators" "list" "heap" "queue" ]
homepage: "https://github.com/c-cube/ocaml-containers/"
doc: "http://cedeela.fr/~simon/software/containers/"
available: [ocaml-version >= "4.01.0"]
dev-repo: "https://github.com/c-cube/ocaml-containers.git"
bug-reports: "https://github.com/c-cube/ocaml-containers/issues/"
post-messages: [
"Major release, with breaking changes. The APIs are more focused,
more consistent, and some sub-libraries were removed or merged into the core
ones.

A summary of the changes can be found at
https://github.com/c-cube/ocaml-containers/issues/84
and in the changelog
https://github.com/c-cube/ocaml-containers/blob/1.0/CHANGELOG.adoc"
]
