-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclockwork-base32.cabal
43 lines (40 loc) · 1.52 KB
/
clockwork-base32.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
cabal-version: 2.2
name: clockwork-base32
version: 0.1.1.0
synopsis: A Clockwork Base32 encoding and decoding library
description: A library for encoding and decoding data using the Clockwork Base32 encoding scheme.
homepage: https://github.com/nao1215/clockwork-base32#readme
license: MIT
license-file: LICENSE
author: Naohiro CHIKAMATSU
maintainer: [email protected]
copyright: 2025 Naohiro CHIKAMATSU
category: Encoding
build-type: Simple
extra-source-files: README.md
CHANGELOG.md
library
exposed-modules: ClockworkBase32
hs-source-dirs: src
build-depends: base >= 4.7 && < 5,
bytestring,
containers
default-language: Haskell2010
ghc-options: -Wall
-Wcompat
-Widentities
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wmissing-export-lists
-Wmissing-home-modules
-Wpartial-fields
-Wredundant-constraints
test-suite clockwork-base32-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: base >= 4.7 && < 5,
hspec,
clockwork-base32,
bytestring
default-language: Haskell2010