packages feed

AhoCorasick-0.0.4: AhoCorasick.cabal

cabal-version:   3.0
name:            AhoCorasick
version:         0.0.4
license:         BSD-3-Clause
license-file:    LICENSE
category:        Text
copyright:       Sergey S Lymar (c) 2012
author:          Sergey S Lymar <sergey.lymar@gmail.com>
maintainer:      Karl Ostmo <kostmo@gmail.com>
stability:       experimental
tested-with:     GHC == 9.4.5
synopsis:        Aho-Corasick string matching algorithm
homepage:        http://github.com/kostmo/AhoCorasick
bug-reports:     http://github.com/kostmo/AhoCorasick/issues
build-type:      Simple
description:
    Aho-Corasick string matching algorithm.
    
    See usage examples in "Text.AhoCorasick".

extra-doc-files:
    README.md
    CHANGELOG.md

library
  exposed-modules:
    Text.AhoCorasick

  other-modules:
    Text.AhoCorasick.Internal.Deque

  build-depends:
    base == 4.*
    ,unordered-containers
    ,hashable
    ,array
    ,mtl

  default-language: Haskell2010

test-suite unit-tests
    main-is:          Main.hs
    type:             exitcode-stdio-1.0
    build-depends:    tasty                         >= 0.10 && < 1.5,
                      tasty-hunit                   >= 0.10 && < 0.11,
                      -- Imports shared with the library don't need bounds
                      base,
                      containers,
                      AhoCorasick
    hs-source-dirs:   test/unit
    default-language: Haskell2010
    ghc-options:      -threaded

source-repository head
  type:     git
  location: http://github.com/kostmo/AhoCorasick