Fungi-1.0.5: Fungi.cabal
-- Initial Fungi.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: Fungi
-- The package version. See the Haskell package versioning policy (PVP)
-- for standards guiding when and how versions should be incremented.
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 1.0.5
-- A short (one-line) description of the package.
synopsis: Funge-98 interpreter written in Haskell
-- A longer description of the package.
-- description:
homepage: https://github.com/thomaseding/fungi
license: BSD3
license-file: LICENSE
author: Thomas Eding
maintainer: thomasedingcode@gmail.com
category: Compilers/Interpreters
build-type: Simple
-- Constraint on the version of Cabal needed to build this package.
cabal-version: >=1.8
executable fungi
main-is: Main.hs
ghc-options: -fsimpl-tick-factor=1000
-- Modules included in this executable, other than Main.
-- other-modules:
-- Other library packages from which modules are imported.
build-depends:
mwc-random == 0.13.*,
containers == 0.5.*,
mtl == 2.1.*,
old-time == 1.1.*,
bytestring == 0.10.*,
ListZipper == 1.2.*,
random == 1.0.*,
filepath == 1.3.*,
directory == 1.2.*,
process == 1.1.*,
transformers == 0.3.*,
tuple == 0.3.*,
base == 4.6.*
-- Directories containing source files.
hs-source-dirs: src