this repo has no description
1opam-version: "2.0" 2maintainer: "opensource-contacts@janestreet.com" 3authors: ["Jane Street Group, LLC <opensource-contacts@janestreet.com>"] 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" "-p" name "-j" jobs] 11] 12depends: [ 13 "ocaml" {>= "4.11.0"} 14 "async_js" {>= "v0.16" & < "v0.17"} 15 "async_kernel" {>= "v0.16" & < "v0.17"} 16 "async_rpc_kernel" {>= "v0.16" & < "v0.17"} 17 "bonsai" {>= "v0.16" & < "v0.17"} 18 "core_kernel" {>= "v0.16" & < "v0.17"} 19 "ppx_jane" {>= "v0.16" & < "v0.17"} 20 "async_rpc_websocket" {>= "v0.16" & < "v0.17"} 21 "virtual_dom" {>= "v0.16" & < "v0.17"} 22 "dune" {>= "2.0.0"} 23 "js_of_ocaml-ppx" 24 "memtrace" 25 "ocaml-embed-file" {>= "v0.16" & < "v0.17"} 26] 27synopsis: "Interactive memory profiler based on Memtrace" 28description: " 29Processes traces produced by the Memtrace library and displays the 30top allocators in a table or flame graph. To help find space leaks, 31events can be filtered by lifetime, showing only allocations of 32objects that are still live at peak memory usage. 33" 34url { 35src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/memtrace_viewer-v0.16.0.tar.gz" 36checksum: "sha256=bb50fc48fef748dffe7ff1e151021b1361500c432a8c2991065fd31fd474f817" 37}