]> git.immae.eu Git - github/fretlink/hmacaroons.git/blob - hmacaroons.cabal
Rewrite Verifier with Validation
[github/fretlink/hmacaroons.git] / hmacaroons.cabal
1 name: hmacaroons
2 version: 0.1.0.0
3 synopsis: Haskell implementation of macaroons
4 description:
5 = Macaroons: Pure haskell implementation of macaroons
6 #macaroons-pure-haskell-implementation-of-macaroons#
7 .
8 Macaroons is a pure haskell implementation of macaroons. It aims to
9 provide compatibility at a serialized level with the
10 <https://github.com/rescrv/libmacaroons reference implementation> and
11 the <https://github.com/ecordell/pymacaroons python implementation>
12 .
13 __WARNING: This library has not been audited by security experts.__
14 __There is no error handling at the moment, everyhting is silently accepted__
15 .
16 It is developed in the purpose of exploration purposes, and would need
17 much more attention if it were to be used in production.
18 .
19 = References
20 #references#
21 .
22 == Papers and articles
23 #papers-and-articles#
24 .
25 - <http://research.google.com/pubs/pub41892.html Google paper on macaroons>
26 - <https://air.mozilla.org/macaroons-cookies-with-contextual-caveats-for-decentralized-authorization-in-the-cloud/ Macaroons at Mozilla>
27 - <http://hackingdistributed.com/2014/11/23/macaroons-in-hyperdex/ Time for better security in NoSQL>
28 .
29 == Implementations
30 #implementations#
31 .
32 - <https://github.com/rescrv/libmacaroons C>
33 - <https://github.com/nitram509/jmacaroons Java>
34 - <https://github.com/nitram509/macaroons.js Node.js>
35 - <https://github.com/ecordell/pymacaroons Python>
36 - <https://github.com/cryptosphere/rust-macaroons.git Rust>
37 license: BSD3
38 license-file: LICENSE
39 author: Julien Tanguy
40 maintainer: julien.tanguy@jhome.fr
41 homepage: https://github.com/jtanguy/hmacaroons
42 bug-reports: https://github.com/jtanguy/hmacaroons/issues
43 category: Data
44 build-type: Simple
45 extra-source-files: README.md
46 CONTRIBUTING.md
47 CHANGELOG.md
48 cabal-version: >=1.10
49
50 source-repository head
51 type: git
52 branch: master
53 location: https://github.com/jtanguy/hmacaroons
54
55 library
56 exposed-modules: Crypto.Macaroon
57 Crypto.Macaroon.Binder
58 Crypto.Macaroon.Serializer.Base64
59 Crypto.Macaroon.Verifier
60 other-modules: Crypto.Macaroon.Internal
61 build-depends: base >=4 && < 5,
62 attoparsec >=0.12,
63 bytestring >=0.10,
64 base64-bytestring >= 1.0,
65 byteable >= 0.1 && <0.2,
66 cereal >= 0.4,
67 cryptohash >=0.11 && <0.12,
68 either >=4.4,
69 -- cipher-aes >=0.2 && <0.3,
70 deepseq >= 1.1,
71 hex >= 0.1
72 hs-source-dirs: src
73 default-language: Haskell2010
74
75 benchmark bench
76 default-language: Haskell2010
77 type: exitcode-stdio-1.0
78 hs-source-dirs: src, bench
79 main-is: bench.hs
80 ghc-options: -O2
81 build-depends: base >= 4 && <5,
82 attoparsec >=0.12,
83 bytestring >=0.10,
84 base64-bytestring >= 1.0,
85 byteable >= 0.1 && <0.2,
86 cereal >= 0.4,
87 cryptohash >=0.11 && <0.12,
88 -- cipher-aes >=0.2 && <0.3,
89 either >=4.4,
90 hex >= 0.1,
91 deepseq >= 1.1,
92 criterion >= 1.1
93
94 test-suite test
95 default-language: Haskell2010
96 type: exitcode-stdio-1.0
97 hs-source-dirs: test
98 main-is: main.hs
99 build-depends: base >= 4 && <5,
100 attoparsec >=0.12,
101 bytestring >=0.10,
102 base64-bytestring >= 1.0,
103 byteable >= 0.1 && <0.2,
104 cereal >= 0.4,
105 cryptohash >=0.11 && <0.12,
106 either >=4.4,
107 hex >= 0.1,
108 tasty >= 0.10,
109 tasty-hunit >= 0.9,
110 tasty-quickcheck >= 0.8,
111 QuickCheck >= 2.8,
112 hmacaroons