this repo has no description
1opam-version: "2.0" 2maintainer: "Hannes Mehnert <hannes@mehnert.org>" 3authors: ["Hannes Mehnert <hannes@mehnert.org>"] 4homepage: "https://github.com/hannesm/logs-syslog" 5doc: "https://hannesm.github.io/logs-syslog/doc" 6dev-repo: "git+https://github.com/hannesm/logs-syslog.git" 7bug-reports: "https://github.com/hannesm/logs-syslog/issues" 8license: "ISC" 9 10depends: [ 11 "ocaml" {>= "4.03.0"} 12 "dune" {>= "1.1.0"} 13 "logs" 14 "ptime" 15 "syslog-message" {>= "1.0.0" & < "1.2.0"} 16] 17 18depopts: [ 19 "lwt" 20 "x509" "tls" "cstruct" 21 "mirage-kv-lwt" 22 "mirage-console-lwt" "mirage-clock" "mirage-stack-lwt" "ipaddr" 23] 24 25conflicts: [ 26 "mirage-types-lwt" {< "3.0.0"} 27 "x509" {< "0.6.0"} 28 "tls" {< "0.8.0"} 29 "tls" {>= "0.16.0"} 30 "mirage-clock" {>= "3.0.0"} 31] 32 33build: [ "dune" "build" "-p" name "-j" jobs ] 34 35synopsis: "Logs reporter to syslog (UDP/TCP/TLS)" 36description: """ 37This library provides log reporters using syslog over various transports (UDP, 38TCP, TLS) with various effectful layers: Unix, Lwt, MirageOS. It integrates the 39[Logs](http://erratique.ch/software/logs) library, which provides logging 40infrastructure for OCaml, with the 41[syslog-message](http://verbosemo.de/syslog-message/) library, which provides 42encoding and decoding of syslog messages ([RFC 433164](https://tools.ietf.org/html/rfc3164)). 44""" 45url { 46 src: 47 "https://github.com/hannesm/logs-syslog/releases/download/0.2.0/logs-syslog-0.2.0.tbz" 48 checksum: [ 49 "sha256=de51edec31ee11430c51e68a4dc0d73151814e217d6688117a05885d5348c0ed" 50 "md5=56b3c8007cfad68e843b6d66c2fb780f" 51 ] 52}