repos / debug-trace-file.hs.git


commit
2117f2c
parent
dedfb3f
author
Evgenii Akentev
date
2023-06-23 21:46:31 +0400 +04
Add bounds for libs
2 files changed,  +8, -5
M .gitignore
+4, -1
1@@ -21,4 +21,7 @@ cabal.project.local
2 cabal.project.local~
3 .HTF/
4 .ghc.environment.*
5-*.output
6+*.output
7+packagedb
8+cache
9+build
M debug-trace-file.cabal
+4, -4
 1@@ -1,4 +1,4 @@
 2-cabal-version:      2.2
 3+cabal-version:      3.8
 4 name:               debug-trace-file
 5 version:            0.1.0.0
 6 synopsis:           Like Debug.Trace but writing to files.
 7@@ -29,7 +29,7 @@ test-suite debug-trace-file-test
 8     main-is:          Main.hs
 9     build-depends:
10         base >= 4.7 && < 5,
11-        directory,
12-        tasty,
13-        tasty-golden,
14+        directory >= 1.3,
15+        tasty >= 1.0,
16+        tasty-golden >= 2.3,
17         debug-trace-file