this repo has no description
1opam-version: "2.0" 2maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" 3authors: ["The logs programmers"] 4homepage: "https://erratique.ch/software/logs" 5doc: "https://erratique.ch/software/logs/doc" 6dev-repo: "git+https://erratique.ch/repos/logs.git" 7bug-reports: "https://github.com/dbuenzli/logs/issues" 8tags: [ "log" "system" "org:erratique" ] 9license: "ISC" 10depends: [ 11 "ocaml" {>= "4.03.0"} 12 "ocamlfind" {build} 13 "ocamlbuild" {build} 14 "topkg" {build} 15 "mtime" {with-test} ] 16depopts: [ 17 "js_of_ocaml" 18 "fmt" 19 "cmdliner" 20 "lwt" 21 "base-threads" 22] 23conflicts: [ 24 "cmdliner" {< "0.9.8"} 25 "js_of_ocaml" { < "3.3.0" } 26] 27 28build: [[ 29 "ocaml" "pkg/pkg.ml" "build" 30 "--pinned" "%{pinned}%" 31 "--with-js_of_ocaml" "%{js_of_ocaml:installed}%" 32 "--with-fmt" "%{fmt:installed}%" 33 "--with-cmdliner" "%{cmdliner:installed}%" 34 "--with-lwt" "%{lwt:installed}%" 35 "--with-base-threads" "%{base-threads:installed}%" 36]] 37 38synopsis: """Logging infrastructure for OCaml""" 39description: """\ 40 41Logs provides a logging infrastructure for OCaml. Logging is performed 42on sources whose reporting level can be set independently. Log message 43report is decoupled from logging and is handled by a reporter. 44 45A few optional log reporters are distributed with the base library and 46the API easily allows to implement your own. 47 48`Logs` has no dependencies. The optional `Logs_fmt` reporter on OCaml 49formatters depends on [Fmt][fmt]. The optional `Logs_browser` 50reporter that reports to the web browser console depends on 51[js_of_ocaml][jsoo]. The optional `Logs_cli` library that provides 52command line support for controlling Logs depends on 53[`Cmdliner`][cmdliner]. The optional `Logs_lwt` library that provides 54Lwt logging functions depends on [`Lwt`][lwt] 55 56Logs and its reporters are distributed under the ISC license. 57 58[fmt]: http://erratique.ch/software/fmt 59[jsoo]: http://ocsigen.org/js_of_ocaml/ 60[cmdliner]: http://erratique.ch/software/cmdliner 61[lwt]: http://ocsigen.org/lwt/ 62""" 63url { 64 src: "https://erratique.ch/software/logs/releases/logs-0.7.0.tbz" 65 checksum: [ 66 "sha256=86f4a02807eb1a297aae44977d9f61e419c31458a5d7b23c6f55575e8e69d5ca" 67 "md5=2bf021ca13331775e33cf34ab60246f7" 68 ] 69} 70 71x-maintenance-intent: ["(latest)"]