diff options
author | Julien Tanguy <julien.tanguy@jhome.fr> | 2015-08-17 17:38:24 +0200 |
---|---|---|
committer | Julien Tanguy <julien.tanguy@jhome.fr> | 2015-08-17 17:39:31 +0200 |
commit | 86f3882318d323d1920ca1c7da6e816f0ed376da (patch) | |
tree | 0e16232125c2fb6c0413d654e6b1537c9813b301 /hmacaroons.cabal | |
parent | bf31e29028a4402ea0d2deefdb3b86efd526acd0 (diff) | |
download | hmacaroons-86f3882318d323d1920ca1c7da6e816f0ed376da.tar.gz hmacaroons-86f3882318d323d1920ca1c7da6e816f0ed376da.tar.zst hmacaroons-86f3882318d323d1920ca1c7da6e816f0ed376da.zip |
Change verifier api and split Verifier module
- Added haddocks
Diffstat (limited to 'hmacaroons.cabal')
-rw-r--r-- | hmacaroons.cabal | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/hmacaroons.cabal b/hmacaroons.cabal index 9424f22..83b2cd7 100644 --- a/hmacaroons.cabal +++ b/hmacaroons.cabal | |||
@@ -1,5 +1,5 @@ | |||
1 | name: hmacaroons | 1 | name: hmacaroons |
2 | version: 0.2.0.0 | 2 | version: 0.3.0.0 |
3 | synopsis: Haskell implementation of macaroons | 3 | synopsis: Haskell implementation of macaroons |
4 | description: | 4 | description: |
5 | Hmacaroons is a pure haskell implementation of macaroons. It aims to | 5 | Hmacaroons is a pure haskell implementation of macaroons. It aims to |
@@ -51,10 +51,11 @@ source-repository head | |||
51 | 51 | ||
52 | library | 52 | library |
53 | exposed-modules: Crypto.Macaroon | 53 | exposed-modules: Crypto.Macaroon |
54 | Crypto.Macaroon.Binder | 54 | -- Crypto.Macaroon.Binder |
55 | Crypto.Macaroon.Serializer.Base64 | 55 | Crypto.Macaroon.Serializer.Base64 |
56 | Crypto.Macaroon.Verifier | 56 | Crypto.Macaroon.Verifier |
57 | other-modules: Crypto.Macaroon.Internal | 57 | other-modules: Crypto.Macaroon.Internal |
58 | Crypto.Macaroon.Verifier.Internal | ||
58 | build-depends: base >=4 && < 5, | 59 | build-depends: base >=4 && < 5, |
59 | attoparsec >=0.12, | 60 | attoparsec >=0.12, |
60 | transformers >= 0.4, | 61 | transformers >= 0.4, |
@@ -93,7 +94,7 @@ benchmark bench | |||
93 | test-suite test | 94 | test-suite test |
94 | default-language: Haskell2010 | 95 | default-language: Haskell2010 |
95 | type: exitcode-stdio-1.0 | 96 | type: exitcode-stdio-1.0 |
96 | hs-source-dirs: test | 97 | hs-source-dirs: src, test |
97 | main-is: main.hs | 98 | main-is: main.hs |
98 | build-depends: base >= 4 && <5, | 99 | build-depends: base >= 4 && <5, |
99 | attoparsec >=0.12, | 100 | attoparsec >=0.12, |
@@ -108,4 +109,5 @@ test-suite test | |||
108 | tasty-hunit >= 0.9, | 109 | tasty-hunit >= 0.9, |
109 | tasty-quickcheck >= 0.8, | 110 | tasty-quickcheck >= 0.8, |
110 | QuickCheck >= 2.8, | 111 | QuickCheck >= 2.8, |
111 | hmacaroons | 112 | deepseq >= 1.1, |
113 | transformers >= 0.4 | ||