-
Notifications
You must be signed in to change notification settings - Fork 0
/
rot13.cabal
39 lines (35 loc) · 1.05 KB
/
rot13.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
name: rot13
version: 0.2.0.1
synopsis: Fast ROT13 cipher for Haskell.
description:
A fast ROT13 cipher for Haskell implemented using as few branches as possible.
For more information on ROT13, see: <https://en.wikipedia.org/wiki/ROT13>
homepage: https://github.com/kvanberendonck/codec-rot13
license: BSD3
license-file: LICENSE
author: Kyle Van Berendonck
maintainer: kvanberendonck@gmail.com
copyright: (c) Kyle Van Berendonck, 2014
category: Codec
build-type: Simple
cabal-version: >=1.10
library
exposed-modules:
Codec.Rot13
build-depends:
base == 4.*,
bytestring >= 0.9,
text >= 0.9
hs-source-dirs: src
default-language: Haskell2010
test-suite spec
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends:
base == 4.*,
hspec >= 1.3,
bytestring,
text,
QuickCheck,
rot13