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" {>= "0.5.0"} 14 "ptime" 15 "syslog-message" {>= "1.0.0"} 16] 17 18depopts: [ 19 "lwt" 20 "x509" "tls-lwt" "tls-mirage" "cstruct" 21 "mirage-kv" 22 "mirage-clock" "ipaddr" "tcpip" 23] 24 25conflicts: [ 26 "mirage-kv" {< "3.0.0"} 27 "mirage-clock" {< "3.0.0"} 28 "tcpip" {< "7.0.0"} 29 "tcpip" {>= "9.0.0"} 30 "tls-lwt" {>= "1.0.0"} 31 "tls-mirage" {>= "1.0.0"} 32] 33 34build: [ 35 ["dune" "subst"] {dev} 36 [ "dune" "build" "-p" name "-j" jobs ] 37] 38 39synopsis: "Logs reporter to syslog (UDP/TCP/TLS)" 40description: """ 41This library provides log reporters using syslog over various transports (UDP, 42TCP, TLS) with various effectful layers: Unix, Lwt, MirageOS. It integrates the 43[Logs](http://erratique.ch/software/logs) library, which provides logging 44infrastructure for OCaml, with the 45[syslog-message](http://verbosemo.de/syslog-message/) library, which provides 46encoding and decoding of syslog messages ([RFC 473164](https://tools.ietf.org/html/rfc3164)). 48""" 49url { 50 src: 51 "https://github.com/hannesm/logs-syslog/releases/download/v0.4.0/logs-syslog-0.4.0.tbz" 52 checksum: [ 53 "sha256=4eeb0d897d9c0f8aba6d38052b710dc72caaabb757bfa67c08bace0c87b8748a" 54 "sha512=3d66e4bc5323513b6796c29755ebf632b58a01208b9d858580e4e1175b6b98291cacc97de8848cad9c9ff660450d681952b548db8612ee4713b3dd2e1fb24f74" 55 ] 56} 57x-commit-hash: "5f060db27d26cdd0e09e1cfdb139cdd098f137ab"