This repository has been archived by the owner on Oct 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Chimpanzee.cabal
47 lines (44 loc) · 1.65 KB
/
Chimpanzee.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
cabal-version: 3.4
name: Chimpanzee
version: 1.0.2.2
synopsis: Haskell Algorithm Library
description: This project aims to implement an algorithm that can be used for anything.
homepage: https://github.com/aerphanas/Chimpanzee
bug-reports: https://github.com/aerphanas/Chimpanzee/issues
copyright: aerphanas 2022
license: BSD-3-Clause
license-file: LICENSE
author: aerphanas
maintainer: [email protected]
category: Cryptography
extra-source-files:
CHANGELOG.md
README.md
library
exposed-modules: Chimpanzee.Atbash
Chimpanzee.Rot13
Chimpanzee.Caesar
Chimpanzee.Affine
hs-source-dirs: src
default-language: Haskell2010
build-depends: base >=4.15.0.0
-- Modules included in this library but not exported.
-- other-modules:
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
test-suite encryption-uppercase
hs-source-dirs: src/test
main-is: test-encryption-upper.hs
type: exitcode-stdio-1.0
default-language: Haskell2010
build-depends: Chimpanzee
, base >=4.15.0.0
, HUnit
test-suite encryption-lowercase
hs-source-dirs: src/test
main-is: test-encryption-lower.hs
type: exitcode-stdio-1.0
default-language: Haskell2010
build-depends: Chimpanzee
, base >=4.15.0.0
, HUnit