Haskell-Data-Analysis-Cookbook/Ch03/Code05_rk/Code0305.cabal
2014-06-12 22:19:26 -04:00

25 lines
903 B
Plaintext

-- Initial Code0305.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: Code0305
version: 0.1.0.0
synopsis: Performing the Rabin-Karp string search.
-- description:
homepage: haskelldata.com
license: GPL-2
license-file: ../LICENSE
author: Nishant Shukla
maintainer: nick722@gmail.com
-- copyright:
category: Text
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
executable Code0305
main-is: Main.hs
-- other-modules:
other-extensions: OverloadedStrings
build-depends: base >=4.6 && <4.7, stringsearch >=0.3 && <0.4, bytestring >=0.10 && <0.11, deepseq >=1.3 && <1.4, containers >=0.5 && <0.6
-- hs-source-dirs:
default-language: Haskell2010