]> git.immae.eu Git - github/fretlink/hmacaroons.git/blame - hmacaroons.cabal
Fix caveat verification
[github/fretlink/hmacaroons.git] / hmacaroons.cabal
CommitLineData
f6781456
JT
1name: hmacaroons
2version: 0.1.0.0
3synopsis: Haskell implementation of macaroons
7001a61e
JT
4description:
5 = Macaroons: Pure haskell implementation of macaroons
6 #macaroons-pure-haskell-implementation-of-macaroons#
a5822779 7 .
7001a61e
JT
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>
a5822779 12 .
7001a61e 13 __WARNING: This library has not been audited by security experts.__
a5822779
JT
14 __There is no error handling at the moment, everyhting is silently accepted__
15 .
7001a61e
JT
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.
a5822779 18 .
7001a61e
JT
19 = References
20 #references#
a5822779 21 .
7001a61e
JT
22 == Papers and articles
23 #papers-and-articles#
a5822779 24 .
7001a61e
JT
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>
a5822779 28 .
7001a61e
JT
29 == Implementations
30 #implementations#
a5822779 31 .
7001a61e
JT
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>
f6781456
JT
37license: BSD3
38license-file: LICENSE
39author: Julien Tanguy
40maintainer: julien.tanguy@jhome.fr
7001a61e
JT
41homepage: https://github.com/jtanguy/hmacaroons
42bug-reports: https://github.com/jtanguy/hmacaroons/issues
f6781456
JT
43category: Data
44build-type: Simple
45extra-source-files: README.md
7001a61e 46 CONTRIBUTING.md
75763743 47 CHANGELOG.md
f6781456
JT
48cabal-version: >=1.10
49
7001a61e
JT
50source-repository head
51 type: git
52 branch: master
53 location: https://github.com/jtanguy/hmacaroons
54
f6781456 55library
b92e3c15 56 exposed-modules: Crypto.Macaroon
f6781456 57 Crypto.Macaroon.Binder
a20c77f8 58 Crypto.Macaroon.Serializer.Base64
b92e3c15 59 Crypto.Macaroon.Verifier
f6781456 60 other-modules: Crypto.Macaroon.Internal
f6781456 61 build-depends: base >=4 && < 5,
a20c77f8 62 attoparsec >=0.12,
f6781456
JT
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,
8505c3d3 68 -- cipher-aes >=0.2 && <0.3,
f6781456
JT
69 deepseq >= 1.1,
70 hex >= 0.1
71 hs-source-dirs: src
72 default-language: Haskell2010
8505c3d3 73
f6781456
JT
74benchmark bench
75 default-language: Haskell2010
76 type: exitcode-stdio-1.0
77 hs-source-dirs: src, bench
78 main-is: bench.hs
79 ghc-options: -O2
80 build-depends: base >= 4 && <5,
a20c77f8 81 attoparsec >=0.12,
f6781456
JT
82 bytestring >=0.10,
83 base64-bytestring >= 1.0,
7001a61e 84 byteable >= 0.1 && <0.2,
f6781456
JT
85 cereal >= 0.4,
86 cryptohash >=0.11 && <0.12,
8505c3d3 87 -- cipher-aes >=0.2 && <0.3,
f6781456
JT
88 hex >= 0.1,
89 deepseq >= 1.1,
90 criterion >= 1.1
7001a61e 91
f6781456
JT
92test-suite test
93 default-language: Haskell2010
94 type: exitcode-stdio-1.0
95 hs-source-dirs: test
46af385c 96 main-is: main.hs
f6781456 97 build-depends: base >= 4 && <5,
a20c77f8 98 attoparsec >=0.12,
f6781456
JT
99 bytestring >=0.10,
100 base64-bytestring >= 1.0,
101 byteable >= 0.1 && <0.2,
102 cereal >= 0.4,
103 cryptohash >=0.11 && <0.12,
104 hex >= 0.1,
105 tasty >= 0.10,
106 tasty-hunit >= 0.9,
a22bcdb6 107 tasty-quickcheck >= 0.8,
d41449d7 108 QuickCheck < 2.8,
f6781456 109 hmacaroons