name: turing version: 0.1.1 synopsis: A simple simulator for Turing machines description: This package provides some basic functions and types to simulate a Turing machine. homepage: http://github.com/sebastianpoeplau/turing#readme license: GPL license-file: LICENSE author: Sebastian Poeplau maintainer: Sebastian Poeplau copyright: 2015 Sebastian Poeplau category: Education build-type: Simple -- extra-source-files: cabal-version: >=1.10 library hs-source-dirs: src exposed-modules: Data.Turing build-depends: base >= 4.7 && < 5 default-language: Haskell2010 test-suite turing-test type: exitcode-stdio-1.0 hs-source-dirs: test main-is: Spec.hs build-depends: base , hspec , QuickCheck , turing ghc-options: -threaded -rtsopts -with-rtsopts=-N default-language: Haskell2010 test-suite doctests type: exitcode-stdio-1.0 hs-source-dirs: test main-is: Doctest.hs build-depends: base , doctest ghc-options: -threaded default-language: Haskell2010 source-repository head type: git location: https://github.com/sebastianpoeplau/turing