blob: 685607988456bb7645a4d3400c1326ed0249854a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
cabal-version: >=1.10
-- Initial package description 'evolution.cabal' generated by 'cabal init'.
-- For further documentation, see http://haskell.org/cabal/users-guide/
name: evolution
version: 0.1.0.0
-- synopsis:
-- description:
-- bug-reports:
-- license:
license-file: LICENSE
author: Ray Hogenson
maintainer: rhogenson@posteo.net
-- copyright:
-- category:
build-type: Simple
extra-source-files: CHANGELOG.md
executable evolution
main-is: Main.hs
other-modules: BrainFuck Par Evolve RandomState EditDistance
-- other-extensions:
build-depends: base >=4.12 && <4.13, containers>=0.6, parallel>=3.2, random, mtl
-- hs-source-dirs:
default-language: Haskell2010
ghc-options: -Wall -Werror -threaded -with-rtsopts=-N
|