File: crypto-cipher-tests.cabal

package info (click to toggle)
haskell-crypto-cipher-tests 0.0.11-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 80 kB
  • ctags: 1
  • sloc: haskell: 415; makefile: 3
file content (53 lines) | stat: -rw-r--r-- 1,917 bytes parent folder | download | duplicates (6)
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
Name:                crypto-cipher-tests
Version:             0.0.11
Synopsis:            Generic cryptography cipher tests
Description:         Generic cryptography cipher tests
License:             BSD3
License-file:        LICENSE
Copyright:           Vincent Hanquez <vincent@snarc.org>
Author:              Vincent Hanquez <vincent@snarc.org>
Maintainer:          vincent@snarc.org
Category:            Cryptography
Stability:           experimental
Build-Type:          Simple
Homepage:            http://github.com/vincenthz/hs-crypto-cipher
Cabal-Version:       >=1.8

Library
  Exposed-modules:   Crypto.Cipher.Tests
  Other-modules:     Crypto.Cipher.Tests.KATs
                     Crypto.Cipher.Tests.Properties
  Build-depends:     base >= 3 && < 5
                   , QuickCheck >= 2
                   , mtl
                   , HUnit
                   , test-framework
                   , test-framework-quickcheck2
                   , test-framework-hunit
                   , bytestring
                   , byteable >= 0.1.1 && < 0.2
                   , securemem >= 0.1.1 && < 0.2
                   , crypto-cipher-types >= 0.0.8 && < 0.1
  ghc-options:       -Wall -fwarn-tabs

Test-Suite test-crypto-cipher-dummy
  type:              exitcode-stdio-1.0
  hs-source-dirs:    tests
  Main-is:           Tests.hs
  Build-Depends:     base >= 3 && < 5
                   , bytestring
                   , byteable
                   , crypto-cipher-types
                   , crypto-cipher-tests
                   , mtl
                   , QuickCheck >= 2
                   , HUnit
                   , test-framework
                   , test-framework-quickcheck2
                   , test-framework-hunit
  ghc-options:       -Wall -fno-warn-orphans -fno-warn-missing-signatures

source-repository head
  type: git
  location: git://github.com/vincenthz/hs-crypto-cipher
  subdir: tests