-
Notifications
You must be signed in to change notification settings - Fork 0
/
hlogsearch.cabal
22 lines (21 loc) · 940 Bytes
/
hlogsearch.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
cabal-version: >=1.10
name: hlogsearch
version: 0.1.0.0
synopsis: Minimalistic tool to search for log entries in large files.
description:
Allows to find log lines and their position (offset) in large log files using a very
precise log entry datetime as a search key, with up to 1 picosecond precision in case of
voluminous and noisy debug logs.
license: MIT
license-file: LICENSE
author: Oleksandr Karaberov
maintainer: [email protected]
copyright: (c) 2021 Oleksandr Karaberov
category: System Tools
build-type: Simple
extra-source-files: CHANGELOG.md
executable hlogsearch
main-is: Main.hs
other-modules: System.File.Search, Data.Time.UTCTimes
build-depends: base >=4.14 && <4.15, time, unix-compat, iso8601-time, optparse-applicative
default-language: Haskell2010