about summary refs log tree commit diff
diff options
context:
space:
mode:
authorsternenseemann <git@lukasepple.de>2019-05-20 19:05:40 +0200
committersternenseemann <git@lukasepple.de>2019-05-20 19:05:40 +0200
commite39508ad23af63275568bce5c7e2d2949c207e09 (patch)
tree6b16d43b06093d92b5658733cd618ca43a650dac
parenta2f7ed5ca13a9d967f2455ce239e2125094b4a1d (diff)
add version constraints
-rw-r--r--grav2ty.cabal11
1 files changed, 6 insertions, 5 deletions
diff --git a/grav2ty.cabal b/grav2ty.cabal
index 5dbafd5..becf712 100644
--- a/grav2ty.cabal
+++ b/grav2ty.cabal
@@ -4,7 +4,7 @@ cabal-version:       2.4
 
 name:                grav2ty
 version:             0.1.0.0
--- synopsis:
+synopsis:            a 2d space (ship) game with realistic physics-based gameplay
 -- description:
 -- bug-reports:
 license:             GPL-3.0-only
@@ -16,6 +16,7 @@ category:            Game
 extra-source-files:  CHANGELOG.md
                    , README.md
                    , doc/intersection-line-circle.pdf
+                   , doc/grav2ty-first-commit.png
 
 library grav2ty-lib
   exposed-modules:     Grav2ty.Simulation
@@ -24,8 +25,8 @@ library grav2ty-lib
   -- other-extensions:
   build-depends:       base ^>=4.12.0.0
                      , containers ^>=0.6.0.1
-                     , linear
-                     , lens
+                     , linear ^>=1.20.8
+                     , lens ^>= 4.17.1
   hs-source-dirs:      lib
   default-language:    Haskell2010
 
@@ -35,8 +36,8 @@ executable grav2ty
   -- other-extensions:
   build-depends:       base ^>=4.12.0.0
                      , containers ^>=0.6.0.1
-                     , gloss
-                     , linear
+                     , gloss ^>=1.13.0.1
+                     , linear ^>=1.20.8
                      , grav2ty-lib
   hs-source-dirs:      src
   default-language:    Haskell2010