packages feed

ac-machine-0.2.0.1: ac-machine.cabal

name:                ac-machine
version:             0.2.0.1
synopsis:            Aho-Corasick string matching algorithm in Haskell
description:         An implementation of the Aho-Corasick string matching algorithm written in Haskell.
license:             BSD3
license-file:        LICENSE
author:              Yuta Taniguchi <yuta.taniguchi.y.t@gmail.com>
maintainer:          Yuta Taniguchi <yuta.taniguchi.y.t@gmail.com>
category:            Data
build-type:          Simple
extra-source-files:  examples/Simple.hs
cabal-version:       >=1.10

library
  exposed-modules:     Data.AhoCorasick
  other-extensions:    DeriveGeneric
  build-depends:       base >=4.6 && <4.7, hashable >=1.2 && <1.3, unordered-containers >=0.2 && <0.3, vector >=0.10 && <0.11
  default-language:    Haskell2010

source-repository head
  type:     git
  location: git://github.com/yuttie/ACMachine.git