-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxtea.cabal
76 lines (67 loc) · 2.48 KB
/
xtea.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
cabal-version: 3.4
name: xtea
version: 0.1.0.0
synopsis: XTEA (eXtended Tiny Encryption Algorithm).
description:
Haskell implementation of the
[XTEA (eXtended Tiny Encryption Algorithm)](https://en.wikipedia.org/wiki/XTEA)
block cipher.
author: Luke Nadur
maintainer: Luke Nadur
license: MIT
license-file: LICENSE
category: Cryptography
homepage: https://github.com/intricate/xtea-haskell
bug-reports: https://github.com/intricate/xtea-haskell/issues
build-type: Simple
tested-with: GHC == 9.6.3, GHC == 9.4.8, GHC == 8.10.1
extra-source-files:
README.md
test/golden/**/*.bin
extra-doc-files: CHANGELOG.md
library
default-language: Haskell2010
hs-source-dirs: src
default-extensions: DerivingStrategies
GeneralizedNewtypeDeriving
NamedFieldPuns
NoImplicitPrelude
OverloadedStrings
ghc-options: -Wall
-Wcompat
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wpartial-fields
-Wredundant-constraints
-Wunused-packages
exposed-modules: Crypto.Cipher.Xtea
build-depends: base >= 4.14 && < 5
, binary >= 0.8.7 && < 0.9
, bytestring >= 0.11 && < 0.12
test-suite xtea-test
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
default-extensions: DerivingStrategies
GeneralizedNewtypeDeriving
NamedFieldPuns
NoImplicitPrelude
OverloadedStrings
ghc-options: -Wall
-Wcompat
-Wredundant-constraints
-Wincomplete-patterns
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wunused-imports
-Wunused-packages
other-modules: Test.Crypto.Cipher.Xtea
Test.Golden
build-depends: base >= 4.14 && < 5
, bytestring
, hedgehog
, xtea
source-repository head
type: git
location: git://github.com/intricate/xtea-haskell.git