Skip to content

Commit 3a5ba58

Browse files
committed
[new release] containers (2 packages) (3.16)
CHANGES: - breaking: Renamed predicate parameter of `take_while`, `rtake_while` from `p` to `f`, aligining it with pre-existing `drop_while`. - feat: add `containers.leb128` library - feat: add `CCFun.with_return` - Added functions to the `Char` module to check common character properties. - feat: add `CCVector.findi` - fix: compat with OCaml 5.4 - fix: oob(!!) in CCHash.bytes
1 parent e9ce852 commit 3a5ba58

File tree

2 files changed

+71
-0
lines changed
  • packages
    • containers-data/containers-data.3.16
    • containers/containers.3.16

2 files changed

+71
-0
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
opam-version: "2.0"
2+
synopsis: "A set of advanced datatypes for containers"
3+
maintainer: ["c-cube"]
4+
authors: ["c-cube"]
5+
license: "BSD-2-Clause"
6+
tags: ["containers" "RAL" "function" "vector" "okasaki"]
7+
homepage: "https://github.com/c-cube/ocaml-containers/"
8+
bug-reports: "https://github.com/c-cube/ocaml-containers/issues"
9+
depends: [
10+
"dune" {>= "3.0"}
11+
"ocaml" {>= "4.08"}
12+
"containers" {= version}
13+
"qcheck-core" {>= "0.18" & with-test}
14+
"iter" {with-test}
15+
"gen" {with-test}
16+
"mdx" {with-test}
17+
"odoc" {with-doc}
18+
]
19+
dev-repo: "git+https://github.com/c-cube/ocaml-containers.git"
20+
build: [
21+
["dune" "build" "-p" name "-j" jobs]
22+
["dune" "build" "@doc" "-p" name ] {with-doc}
23+
["dune" "runtest" "-p" name "-j" jobs] {with-test & arch != "x86_32" & arch != "arm32"}
24+
]
25+
url {
26+
src:
27+
"https://github.com/c-cube/ocaml-containers/releases/download/v3.16/containers-3.16.tbz"
28+
checksum: [
29+
"sha256=1e7992cb2e59c0d2290d1b6c3a31531b3f310be6170b8ef3dde17ccd876b5b79"
30+
"sha512=bb124e69ad0690f88393e18eee499be07761e767593558867aab32f643466b43258ced503170b154ca3b56dbd68987abd6d9438cf473707ec9866511589a5b84"
31+
]
32+
}
33+
x-commit-hash: "99dba20fa6ba0f2db4b9b9ae2acbf4185fa502f4"
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
opam-version: "2.0"
2+
synopsis:
3+
"A modular, clean and powerful extension of the OCaml standard library"
4+
maintainer: ["c-cube"]
5+
authors: ["c-cube"]
6+
license: "BSD-2-Clause"
7+
tags: ["stdlib" "containers" "iterators" "list" "heap" "queue"]
8+
homepage: "https://github.com/c-cube/ocaml-containers/"
9+
bug-reports: "https://github.com/c-cube/ocaml-containers/issues"
10+
depends: [
11+
"dune" {>= "3.0"}
12+
"ocaml" {>= "4.08"}
13+
"either"
14+
"dune-configurator"
15+
"qcheck-core" {>= "0.18" & with-test}
16+
"yojson" {with-test}
17+
"iter" {with-test}
18+
"gen" {with-test}
19+
"csexp" {with-test}
20+
"uutf" {with-test}
21+
"odoc" {with-doc}
22+
]
23+
depopts: ["base-unix" "base-threads"]
24+
dev-repo: "git+https://github.com/c-cube/ocaml-containers.git"
25+
build: [
26+
["dune" "build" "-p" name "-j" jobs]
27+
["dune" "build" "@doc" "-p" name ] {with-doc}
28+
["dune" "runtest" "-p" name "-j" jobs] {with-test & arch != "x86_32" & arch != "arm32"}
29+
]
30+
url {
31+
src:
32+
"https://github.com/c-cube/ocaml-containers/releases/download/v3.16/containers-3.16.tbz"
33+
checksum: [
34+
"sha256=1e7992cb2e59c0d2290d1b6c3a31531b3f310be6170b8ef3dde17ccd876b5b79"
35+
"sha512=bb124e69ad0690f88393e18eee499be07761e767593558867aab32f643466b43258ced503170b154ca3b56dbd68987abd6d9438cf473707ec9866511589a5b84"
36+
]
37+
}
38+
x-commit-hash: "99dba20fa6ba0f2db4b9b9ae2acbf4185fa502f4"

0 commit comments

Comments
 (0)