this repo has no description
1opam-version: "2.0"
2synopsis: "Streaming client for Memprof"
3description: "Generates compact traces of a program's memory use."
4maintainer: ["opensource@janestreet.com"]
5authors: ["Jane Street Group, LLC <opensource@janestreet.com>"]
6license: "MIT"
7homepage: "https://github.com/janestreet/memtrace"
8bug-reports: "https://github.com/janestreet/memtrace/issues"
9depends: [
10 "dune" {>= "2.3"}
11 "ocaml" {>= "4.11.0"}
12]
13build: [
14 ["dune" "subst"] {dev}
15 [
16 "dune"
17 "build"
18 "-p"
19 name
20 "-j"
21 jobs
22 "@install"
23 "@runtest" {with-test & ocaml:version < "5"}
24 "@doc" {with-doc}
25 ]
26]
27post-messages: [
28 "Tracing the current process is not supported on multicore ocaml, so uses of Gc.Memprof will fail. The library is still useful for reading and writing trace files even when Gc.Memprof is not working."
29 {base-domains:installed}
30]
31dev-repo: "git+https://github.com/janestreet/memtrace.git"
32url {
33src: "https://github.com/janestreet/memtrace/archive/refs/tags/v0.2.3.tar.gz"
34checksum: "sha256=fa47379e78be5dbb3066cf96962d18a05d1defb4530588c14e5bc0289e0df520"
35}