summary refs log tree commit diff
path: root/beekeep.cabal
diff options
context:
space:
mode:
authormelody!2024-08-07 21:23:52 -0400
committermelody!2024-08-07 21:23:52 -0400
commit7133a728596918544601a18e3090281eaff34ad1 (patch)
tree79aa8aec9445372c8e6fe3f8bef723dd76cdefb3 /beekeep.cabal
parent7a6eb573543666ef3f642f84dbb4a386429bf75e (diff)
did stuff
Diffstat (limited to 'beekeep.cabal')
-rw-r--r--beekeep.cabal17
1 files changed, 10 insertions, 7 deletions
diff --git a/beekeep.cabal b/beekeep.cabal
index cd3cb10..455d902 100644
--- a/beekeep.cabal
+++ b/beekeep.cabal
@@ -46,6 +46,7 @@ build-type:         Simple
 
 -- Extra doc files to be distributed with the package, such as a CHANGELOG or a README.
 extra-doc-files:    CHANGELOG.md
+                  , README.md
 
 -- Extra source files to be distributed with the package, such as examples, or a tutorial module.
 -- extra-source-files:
@@ -58,16 +59,18 @@ library
     import:           warnings
 
     -- Modules exported by the library.
-    exposed-modules:  MyLib
+    exposed-modules:  Beekeep
 
     -- Modules included in this library but not exported.
-    -- other-modules:
+    other-modules:    Plant
+                    , Bee
 
     -- LANGUAGE extensions used by modules in this package.
     -- other-extensions:
 
     -- Other library packages from which modules are imported.
-    build-depends:    base ^>=4.17.2.1
+    build-depends:    base ^>=4.13.0.0
+                    , array ^>= 0.5.4.0
 
     -- Directories containing source files.
     hs-source-dirs:   src
@@ -83,15 +86,15 @@ executable beekeep
     main-is:          Main.hs
 
     -- Modules included in this executable, other than Main.
-    -- other-modules:
+    other-modules:    Screen
 
     -- LANGUAGE extensions used by modules in this package.
     -- other-extensions:
 
     -- Other library packages from which modules are imported.
     build-depends:
-        base ^>=4.17.2.1,
-        beekeep
+        base ^>=4.13.0.0
+      , beekeep
 
     -- Directories containing source files.
     hs-source-dirs:   app
@@ -123,5 +126,5 @@ test-suite beekeep-test
 
     -- Test dependencies.
     build-depends:
-        base ^>=4.17.2.1,
+        base ^>=4.13.0.0,
         beekeep