this repo has no description
1opam-version: "2.0"
2maintainer: "Jane Street developers"
3authors: ["Jane Street Group, LLC"]
4homepage: "https://github.com/janestreet/memtrace_viewer"
5bug-reports: "https://github.com/janestreet/memtrace_viewer/issues"
6dev-repo: "git+https://github.com/janestreet/memtrace_viewer.git"
7doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/memtrace_viewer/index.html"
8license: "MIT"
9build: [
10 ["dune" "build" "--profile" "release" "--default-target" "@install" "."
11 "--root" "." "--cache-transport=direct" {dune < "3.0.0"}]
12 ["cp" "_build/default/memtrace_viewer.install" "."]
13]
14conflicts: [
15 "sexplib0" {>= "v0.15.0" | < "v0.14.0"}
16 "re" {< "1.9.0"}
17]
18depends: [
19 "ocaml" {>= "4.11.0" & < "4.12"}
20 "conf-libssl"
21 "astring" {>= "0.8.5"}
22 "base64" {>= "3.4.0"}
23 "cryptokit" {>= "1.14"}
24 "cstruct" {>= "5.2.0"}
25 "ctypes" {>= "0.17.1" & < "0.18.0"}
26 "ctypes-foreign" {>= "0.4.0"}
27 "domain-name" {>= "0.3.0"}
28 "dune" {>= "2.7.1"}
29 "dune-configurator" {>= "2.7.1"}
30 "fmt" {>= "0.8.8"}
31 "js_of_ocaml" {>= "3.7.0" & < "4.0.0"}
32 "js_of_ocaml-ppx" {>= "3.7.0" & < "4.0.0"}
33 "jsonm" {>= "1.0.1"}
34 "lambdasoup" {>= "0.7.1"}
35 "logs" {>= "0.7.0"}
36 "magic-mime" {>= "1.1.2"}
37 "memtrace" {>= "0.1.1" & < "0.2.0"}
38 "ocaml-migrate-parsetree" {>= "0.4" & < "2.0.0"}
39 "octavius" {>= "1.2.2"}
40 "ppxlib" {>= "0.15.0" & < "0.18.0"}
41 "ppx_tools_versioned" {>= "5.4.0"}
42 "spawn" {>= "v0.13.0" & < "v0.15"}
43 "tyxml" {>= "4.4.0"}
44 "uri" {>= "3.1.0"}
45]
46synopsis: "Interactive memory profiler based on Memtrace"
47description: "\
48Processes traces produced by the Memtrace library and displays the
49top allocators in a table or flame graph. To help find space leaks,
50events can be filtered by lifetime, showing only allocations of
51objects that are still live at peak memory usage.
52"
53url {
54 src:
55 "https://github.com/janestreet/memtrace_viewer_with_deps/archive/v0.14.0.tar.gz"
56 checksum: [
57 "sha256=402681dc53f0a3e7c3791c86e8496738e795f6fcf3a780b0a9f86208d7b2d4d5"
58 "md5=0e4c01e80b13dc3184ee2bb10b41884a"
59 ]
60}