mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 03:05:28 -05:00
39 lines
1.1 KiB
Text
39 lines
1.1 KiB
Text
opam-version: "1.2"
|
|
name: "containers"
|
|
version: "2.0~alpha1"
|
|
author: "Simon Cruanes"
|
|
maintainer: "simon.cruanes.2007@m4x.org"
|
|
build: [
|
|
["jbuilder" "build" "-p" name "-j" jobs]
|
|
]
|
|
build-doc: [ make "doc" ]
|
|
build-test: [ make "test" ]
|
|
depends: [
|
|
"jbuilder" {build}
|
|
"base-bytes"
|
|
"result"
|
|
]
|
|
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: "https://c-cube.github.io/ocaml-containers"
|
|
available: [ocaml-version >= "4.02.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 some breaking changes in the API.
|
|
|
|
These changes belong to 3 categories:
|
|
- make `open Containers` replace polymorphic operators with monomorphic ones
|
|
- make most optional arguments relying on polymorphic operators mandatory
|
|
- improve consistency of printers
|
|
|
|
changelog: https://github.com/c-cube/ocaml-containers/blob/2.0~alpha1/CHANGELOG.adoc"
|
|
]
|