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-ptime" "ipaddr" "tcpip"
23]
24
25conflicts: [
26 "mirage-kv" {< "3.0.0"}
27 "tcpip" {< "9.0.0"}
28 "tls-lwt" {< "2.0.0"}
29 "tls-mirage" {< "2.0.0"}
30]
31
32build: [
33 [ "dune" "subst" ] {dev}
34 [ "dune" "build" "-p" name "-j" jobs ]
35]
36
37synopsis: "Logs reporter to syslog (UDP/TCP/TLS)"
38description: """
39This library provides log reporters using syslog over various transports (UDP,
40TCP, TLS) with various effectful layers: Unix, Lwt, MirageOS. It integrates the
41[Logs](http://erratique.ch/software/logs) library, which provides logging
42infrastructure for OCaml, with the
43[syslog-message](http://verbosemo.de/syslog-message/) library, which provides
44encoding and decoding of syslog messages ([RFC
453164](https://tools.ietf.org/html/rfc3164)).
46"""
47x-maintenance-intent: [ "(latest)" ]
48url {
49 src:
50 "https://github.com/hannesm/logs-syslog/releases/download/v0.5.0/logs-syslog-0.5.0.tbz"
51 checksum: [
52 "sha256=af1ee692c03ccb5042122b0d4d0c12b0969eb78d9e47bb59de0633bc2aab60d4"
53 "sha512=199b34bdc86ce1cad91d9458b67db999cd1cad23c1ea1568ec0349ee3b4cd3bd526ccd5fa51774dd7e3dd0f750938df2e46e08717da3190d37a1e7f5cec701e3"
54 ]
55}
56x-commit-hash: "ad0579ffcbde9a8569f551c8c6ff0d8c45afc145"