-
Notifications
You must be signed in to change notification settings - Fork 0
/
heptapod.cabal
78 lines (66 loc) · 1.53 KB
/
heptapod.cabal
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
cabal-version: 2.2
category: Data
description: Heptapod generates UUIDv7 values.
extra-doc-files:
CHANGELOG.md
README.md
license-file: LICENSE.txt
license: MIT
maintainer: Taylor Fausak
name: heptapod
synopsis: Generate UUIDv7 values.
version: 1.1.0.0
source-repository head
location: https://github.com/tfausak/heptapod
type: git
flag pedantic
default: False
manual: True
common library
build-depends: base ^>=4.18.0.0 || ^>=4.19.0.0 || ^>=4.20.0.0
default-language: Haskell2010
ghc-options:
-Weverything
-Wno-all-missed-specialisations
-Wno-implicit-prelude
-Wno-missing-export-lists
-Wno-missing-safe-haskell-mode
-Wno-prepositive-qualified-module
-Wno-safe
-Wno-unsafe
if flag(pedantic)
ghc-options: -Werror
common executable
import: library
build-depends: heptapod
ghc-options:
-rtsopts
-threaded
library
import: library
build-depends:
bytestring ^>=0.11.5.3 || ^>=0.12.1.0,
entropy ^>=0.4.1.10,
time ^>=1.12.2 || ^>=1.14,
uuid-types ^>=1.0.6,
-- cabal-gild: discover source/library
exposed-modules: Heptapod
hs-source-dirs: source/library
test-suite heptapod-test-suite
import: executable
build-depends:
tasty ^>=1.5,
tasty-hunit ^>=0.10.2,
time,
uuid-types,
hs-source-dirs: source/test-suite
main-is: Main.hs
type: exitcode-stdio-1.0
benchmark heptapod-benchmark
import: executable
build-depends:
tasty-bench ^>=0.4,
uuid ^>=1.3.16,
hs-source-dirs: source/benchmark
main-is: Main.hs
type: exitcode-stdio-1.0