this repo has no description
1opam-version: "2.0" 2maintainer: "Thomas Leonard <talex5@gmail.com>" 3authors: "Thomas Leonard <talex5@gmail.com>" 4homepage: "https://github.com/mirage/mirage-profile" 5dev-repo: "git+https://github.com/mirage/mirage-profile.git" 6bug-reports: "https://github.com/mirage/mirage-profile/issues" 7doc: "https://mirage.github.io/mirage-profile" 8license: "BSD-2-clause" 9 10build: [ 11 ["jbuilder" "subst" "-p" name] {dev} 12 [ "jbuilder" "build" "-p" name "-j" jobs ] 13] 14 15depends: [ 16 "ocaml" {>= "4.02.0"} 17 "ocamlfind" {build} 18 "jbuilder" {>= "1.0+beta9"} 19 "mirage-profile" {= "0.8.0"} 20 "io-page" 21 "mirage-xen-minios" 22] 23synopsis: "Collect profiling information" 24description: """ 25This library can be used to trace execution of OCaml/Lwt programs (such as 26MirageOS unikernels) at the level of Lwt threads. The traces can be viewed using 27JavaScript or GTK viewers provided by mirage-trace-viewer or processed by tools 28supporting the Common Trace Format (CTF).""" 29url { 30 src: 31 "https://github.com/mirage/mirage-profile/releases/download/0.8.0/mirage-profile-0.8.0.tbz" 32 checksum: [ 33 "sha256=35bc09e7d19dbc607707531fd7231891d31002bb18a89d646ceacb54ecc36471" 34 "md5=8b851d851522afa9802be3558230c2be" 35 ] 36} 37flags: deprecated 38post-messages: [ "mirage-profile-xen is deprecated" ]