Compare commits

...

3 Commits

Author SHA1 Message Date
Sarah Vaupel
2de682f1cf add missing dependency 2025-07-13 22:57:57 +02:00
Sarah Vaupel
c0f9140a73 remove unsupported pattern 2025-07-13 22:57:46 +02:00
Sarah Vaupel
f544a30483 add missing dependencies 2025-07-13 22:57:35 +02:00
3 changed files with 9 additions and 2 deletions

View File

@ -32,11 +32,16 @@ library
ghc-options: -Wall
build-depends:
base >=4.19 && <5
, aeson >= 2.2.3.0 && <3
, binary >=0.8.9 && <0.9
, bytestring >=0.12 && <1
, crypton >=1.0.4 && <2
, deepseq >=1.5.1 && <2
, directory >=1.3.8.5 && <2
, exceptions >=0.10.7 && <0.11
, filepath >=1.4.301 && <1.5
, filepath >=1.4.301 && <2
, hashable >=1.4.7 && <2
, http-api-data >=0.6.2 && <0.7
, memory >=0.18 && <0.19
, path-pieces >=0.2.1 && <0.3
default-language: Haskell2010

View File

@ -1,3 +1,5 @@
-- TODO: avoid dependencies on aeson, http-api-data, path-pieces, and maybe deepseq
module Data.CryptoID
( CryptoID(..)
) where

View File

@ -10,7 +10,7 @@ module Data.CryptoID.Class.ImplicitNamespace
( E.MonadCrypto(..)
, CryptoIDNamespace
, HasCryptoID
, CryptoID, pattern E.CryptoID, E.ciphertext
, CryptoID, E.ciphertext
, encrypt, decrypt
) where