Skip to content

Commit dbb4120

Browse files
committed
[new release] hdr_histogram (0.0.3)
CHANGES: * Add memory_size function (@crackcomm, ocaml-multicore/hdr_histogram_ocaml#1) * Change memory_size return type to int (@crackcomm, ocaml-multicore/hdr_histogram_ocaml#2) * Fix build with dune 3.6 (@emillon, ocaml-multicore/hdr_histogram_ocaml#3) * Remove ctypes include path hack by using ctypes 0.3 / dune 3.7 (@TheLortex, ocaml-multicore/hdr_histogram_ocaml#5)
1 parent 1c4baa4 commit dbb4120

File tree

1 file changed

+47
-0
lines changed
  • packages/hdr_histogram/hdr_histogram.0.0.3

1 file changed

+47
-0
lines changed
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
opam-version: "2.0"
2+
synopsis: "OCaml bindings to Hdr Histogram"
3+
description: "OCaml bindings to Hdr Histogram"
4+
maintainer: ["KC Sivaramakrishnan" "Christiano Haesbaert"]
5+
authors: ["KC Sivaramakrishnan"]
6+
license: "MIT"
7+
tags: ["histogram" "tail latency"]
8+
homepage: "https://github.com/ocaml-multicore/hdr_histogram_ocaml"
9+
doc: "https://ocaml-multicore.github.io/hdr_histogram_ocaml"
10+
bug-reports: "https://github.com/ocaml-multicore/hdr_histogram_ocaml/issues"
11+
depends: [
12+
"ocaml" {>= "4.08"}
13+
"dune" {>= "3.7"}
14+
"ctypes" {>= "0.20.1"}
15+
"ctypes-foreign" {>= "0.18.0"}
16+
"conf-pkg-config" {build}
17+
"conf-cmake" {build}
18+
"conf-zlib"
19+
"odoc" {with-doc}
20+
]
21+
build: [
22+
["dune" "subst"] {dev}
23+
[
24+
"dune"
25+
"build"
26+
"-p"
27+
name
28+
"-j"
29+
jobs
30+
"@install"
31+
"@runtest" {with-test}
32+
"@doc" {with-doc}
33+
]
34+
]
35+
available: [
36+
(arch = "x86_64" | arch = "arm64")
37+
]
38+
dev-repo: "git+https://github.com/ocaml-multicore/hdr_histogram_ocaml.git"
39+
url {
40+
src:
41+
"https://github.com/ocaml-multicore/hdr_histogram_ocaml/releases/download/v0.0.3/hdr_histogram-0.0.3.tbz"
42+
checksum: [
43+
"sha256=2d912c03bb771823dd3b5cc8483b6911e935df8b4bf42b40f76fa65e14e1a415"
44+
"sha512=c62bee6d9860ebbb525ccf6a34173cec7bee57ca29772e8844ab866fd24ac3e11868ebab4abe88afbaa6f10cdcded6e6d364ea8bebb39b36b3de332f10b65a55"
45+
]
46+
}
47+
x-commit-hash: "761ef0c398d897be3d662f7bff10cb6d5603c951"

0 commit comments

Comments
 (0)