~ubuntu-branches/ubuntu/wily/haskell-sandi/wily-proposed

« back to all changes in this revision

Viewing changes to sandi.cabal

  • Committer: Package Import Robot
  • Author(s): Clint Adams
  • Date: 2014-06-06 11:22:20 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20140606112220-s0c3ngtrz80v124g
Tags: 0.3.0-1
New upstream version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
name: sandi
2
 
version: 0.2.3
 
2
version: 0.3.0
3
3
license: BSD3
4
4
license-file: LICENSE
5
5
cabal-version: >= 1.8
8
8
maintainer: magnus@therning.org
9
9
homepage: http://hackage.haskell.org/package/sandi
10
10
copyright: Magnus Therning, 2012
11
 
category: Codec
 
11
category: Codec Conduit
12
12
synopsis: Data encoding library
13
13
description: Reasonably fast data encoding library.
14
14
extra-source-files: csrc/*.h
24
24
    ghc-options: -Wall
25
25
    cc-options: -Wall -Wextra
26
26
    build-depends:
27
 
        base >=4.5 && < 4.7,
28
 
        bytestring >=0.9 && < 0.11,
29
 
        conduit ==1.0.*
 
27
        base >= 4.6 && < 4.8,
 
28
        bytestring ==0.10.*,
 
29
        conduit ==1.1.*,
 
30
        exceptions ==0.6.*
30
31
    exposed-modules:
31
32
            Codec.Binary.Base16
32
33
            Codec.Binary.Base32
59
60
        base,
60
61
        bytestring,
61
62
        HUnit,
62
 
        test-framework-quickcheck2,
63
 
        test-framework-hunit,
64
 
        test-framework-th,
65
 
        test-framework
 
63
        tasty,
 
64
        tasty-hunit,
 
65
        tasty-quickcheck,
 
66
        tasty-th
66
67
    main-is: Main.hs
67
68
    other-modules:
68
69
        Codec.Binary.Base16Test