conways-game-of-life/conways-game-of-life.cabal

24 lines
695 B
Plaintext
Raw Normal View History

2021-12-11 15:13:39 -05:00
name: conways-game-of-life
version: 0.1
synopsis: A simple implementation of Conway's Game of Life using comonads
author: Kiana Sheibani
license: MIT
build-type: Simple
cabal-version: >= 1.8
2021-12-28 22:55:42 -05:00
executable gol
2021-12-20 15:25:54 -05:00
main-is: Main.hs
other-modules: GOL.Rule,
GOL.Space,
2021-12-26 19:41:32 -05:00
GOL.Engine,
2021-12-26 20:41:28 -05:00
Graphics.GlossUtils,
2021-12-28 14:26:32 -05:00
Graphics.Config,
2021-12-28 00:46:39 -05:00
Graphics.Engine,
Graphics.Display
2021-12-20 15:25:54 -05:00
build-depends: base,
2021-12-26 19:41:32 -05:00
vector,
2021-12-20 15:25:54 -05:00
comonad,
2021-12-21 21:36:59 -05:00
distributive,
adjunctions,
2021-12-26 19:41:32 -05:00
Yampa,
gloss