diff options
author | Tom Smeding <tom@tomsmeding.com> | 2022-04-25 22:22:21 +0200 |
---|---|---|
committer | Tom Smeding <tom@tomsmeding.com> | 2022-04-25 22:22:21 +0200 |
commit | 8a1617df841423b7d87c2207bc80c4471ce70604 (patch) | |
tree | c4d3b545ab4b1a178675ca56ee09a778bd0d1aaf | |
parent | 6080ed0182e65d9cd51b9a1d7209ff82a5e41fa5 (diff) |
Fix dependency bounds
-rw-r--r-- | ghc-gc-hook.cabal | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ghc-gc-hook.cabal b/ghc-gc-hook.cabal index c39b3c2..0de7e5a 100644 --- a/ghc-gc-hook.cabal +++ b/ghc-gc-hook.cabal @@ -22,7 +22,7 @@ library c-sources: cbits/hook.c build-depends: base >= 4.14 && < 4.17, - clock + clock >= 0.8.3 && < 0.9 default-language: Haskell2010 cc-options: -Wall ghc-options: -Wall @@ -33,7 +33,7 @@ test-suite test hs-source-dirs: test c-sources: test/cbits/testhook.c build-depends: - base >= 4.14 && < 4.17, + base, ghc-gc-hook, clock default-language: Haskell2010 |