blob: f20d2014d4911a5d0ca9e7621d91f1d58f6c2e24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
cabal-version: 3.8
author: Paul Oliver <contact@pauloliver.dev>
name: hsm-log
version: 0.1.0.0
library
build-depends:
, base
, effectful-core
, effectful-plugin
, generic-data-functions
, iso8601-time
, optparse-applicative
, template-haskell
, text-ansi
, time
default-language: GHC2024
exposed-modules:
Hsm.Log
Hsm.Log.Options
ghc-options:
-O2 -Wall -Werror -Wno-star-is-type -Wunused-packages
-fplugin=Effectful.Plugin
|