haskell-games/snake/snake.cabal

59 lines
1 KiB
Plaintext
Raw Normal View History

2023-09-25 15:25:46 +02:00
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.35.2.
--
-- see: https://github.com/sol/hpack
name: snake
version: 0.1.0.0
author: Magic_RB
maintainer: magic_rb@redalder.org
build-type: Simple
library
exposed-modules:
Snake
other-modules:
Paths_snake
hs-source-dirs:
lib
other-extensions:
ImportQualifiedPost
OverloadedStrings
build-depends:
base
, bytestring
, effectful-core
, extra
, lens
, random
, sdl2
, sdl2-image
, text >=2.0.1
, unordered-containers
, vector
default-language: GHC2021
executable snake
main-is: Main.hs
hs-source-dirs:
app
other-extensions:
ImportQualifiedPost
OverloadedStrings
ghc-options: -threaded
build-depends:
base
, bytestring
, effectful-core
, extra
, lens
, random
, sdl2
, sdl2-image
, snake
, text >=2.0.1
, unordered-containers
, vector
default-language: GHC2021