From f544a30483aa52e5ec97d4d8de00cd4c019fa024 Mon Sep 17 00:00:00 2001 From: Sarah Vaupel Date: Sun, 13 Jul 2025 22:57:35 +0200 Subject: [PATCH] add missing dependencies --- cryptoids.cabal | 6 +++++- src/Data/CryptoID.hs | 2 ++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/cryptoids.cabal b/cryptoids.cabal index 0f6f2e2..5b0edb3 100644 --- a/cryptoids.cabal +++ b/cryptoids.cabal @@ -35,8 +35,12 @@ library , 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 diff --git a/src/Data/CryptoID.hs b/src/Data/CryptoID.hs index 9bc67da..eae359a 100644 --- a/src/Data/CryptoID.hs +++ b/src/Data/CryptoID.hs @@ -1,3 +1,5 @@ +-- TODO: avoid dependencies on aeson, http-api-data, path-pieces, and maybe deepseq + module Data.CryptoID ( CryptoID(..) ) where