X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=hmacaroons.cabal;h=83b2cd75fc5b4c5fe0f7713aaea3febed5a68c06;hb=cb1ee5df44a6a68f32e7f8413cee4a7105d37b4b;hp=3aa338a0fe1661ef9156fd04bfab4e88ff15c59d;hpb=c830f7c2cf925ce340f4097d76ea2a3bc94cb4a6;p=github%2Ffretlink%2Fhmacaroons.git diff --git a/hmacaroons.cabal b/hmacaroons.cabal index 3aa338a..83b2cd7 100644 --- a/hmacaroons.cabal +++ b/hmacaroons.cabal @@ -1,17 +1,14 @@ name: hmacaroons -version: 0.1.0.0 +version: 0.3.0.0 synopsis: Haskell implementation of macaroons description: - = Macaroons: Pure haskell implementation of macaroons - #macaroons-pure-haskell-implementation-of-macaroons# - . - Macaroons is a pure haskell implementation of macaroons. It aims to + Hmacaroons is a pure haskell implementation of macaroons. It aims to provide compatibility at a serialized level with the and the . __WARNING: This library has not been audited by security experts.__ - __There is no error handling at the moment, everyhting is silently accepted__ + __There is no error handling at the moment, everything is silently accepted__ . It is developed in the purpose of exploration purposes, and would need much more attention if it were to be used in production. @@ -54,18 +51,21 @@ source-repository head library exposed-modules: Crypto.Macaroon - Crypto.Macaroon.Binder + -- Crypto.Macaroon.Binder Crypto.Macaroon.Serializer.Base64 Crypto.Macaroon.Verifier other-modules: Crypto.Macaroon.Internal + Crypto.Macaroon.Verifier.Internal build-depends: base >=4 && < 5, attoparsec >=0.12, + transformers >= 0.4, bytestring >=0.10, base64-bytestring >= 1.0, byteable >= 0.1 && <0.2, cereal >= 0.4, cryptohash >=0.11 && <0.12, either >=4.4, + -- nonce, -- cipher-aes >=0.2 && <0.3, deepseq >= 1.1, hex >= 0.1 @@ -94,7 +94,7 @@ benchmark bench test-suite test default-language: Haskell2010 type: exitcode-stdio-1.0 - hs-source-dirs: test + hs-source-dirs: src, test main-is: main.hs build-depends: base >= 4 && <5, attoparsec >=0.12, @@ -109,4 +109,5 @@ test-suite test tasty-hunit >= 0.9, tasty-quickcheck >= 0.8, QuickCheck >= 2.8, - hmacaroons + deepseq >= 1.1, + transformers >= 0.4