packages feed

eventlog-live-influxdb 0.1.0.0 → 0.1.0.1

raw patch · 4 files changed

+13/−10 lines, 4 files

Files

CHANGELOG.md view
@@ -1,3 +1,7 @@+### 0.1.0.1++- Lower `cabal-version` constraint to `3.0`+ ### 0.1.0.0  - Initial release.
LICENSE view
@@ -1,6 +1,5 @@-Copyright (c) 2021 Well-Typed+Copyright (c) 2025 Well-Typed -All rights reserved.  Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:@@ -13,7 +12,7 @@       disclaimer in the documentation and/or other materials provided       with the distribution. -    * Neither the name of Oleg Grenrus nor the names of other+    * Neither the name of the copyright holder nor the names of its       contributors may be used to endorse or promote products derived       from this software without specific prior written permission. @@ -21,7 +20,7 @@ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT-OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,+HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
eventlog-live-influxdb.cabal view
@@ -1,6 +1,6 @@-cabal-version:   3.12+cabal-version:   3.0 name:            eventlog-live-influxdb-version:         0.1.0.0+version:         0.1.0.1 synopsis:        Stream eventlog data into InfluxDB. description:   This executable supports live streaming of eventlog data into@@ -44,7 +44,7 @@   >   --help                   Show this help text.   >   --version                Show version information -license:         AGPL-3.0-only+license:         BSD-3-Clause license-file:    LICENSE author:          Wen Kokke maintainer:      wen@well-typed.com@@ -103,8 +103,8 @@   import:          language   hs-source-dirs:  src   exposed-modules: GHC.Eventlog.Live.InfluxDB-  other-modules:   PackageInfo_eventlog_live_influxdb-  autogen-modules: PackageInfo_eventlog_live_influxdb+  other-modules:   Paths_eventlog_live_influxdb+  autogen-modules: Paths_eventlog_live_influxdb   build-depends:     , base                   >=4.16  && <4.22     , clock                  >=0.8.4 && <0.9
src/GHC/Eventlog/Live/InfluxDB.hs view
@@ -39,7 +39,7 @@ import Lens.Family2 (set, (^.)) import Options.Applicative qualified as O import Options.Applicative.Extra qualified as O (helperWith)-import PackageInfo_eventlog_live_influxdb qualified as EventlogLive+import Paths_eventlog_live_influxdb qualified as EventlogLive import System.Clock (TimeSpec, fromNanoSecs)  --------------------------------------------------------------------------------