name: dom-lt version: 0.2.1 cabal-version: >= 1.10 build-type: Simple tested-with: GHC == 8.10.1 || == 8.8.4 || == 8.0.1 license: BSD3 license-file: LICENSE category: Algorithms, Graphs author: Matt Morrow copyright: (c) Matt Morrow, 2009 maintainer: Andreas Klebinger bug-reports: https://github.com/AndreasPK/dom-lt/issues stability: stable synopsis: The Lengauer-Tarjan graph dominators algorithm. description: The Lengauer-Tarjan graph dominators algorithm. Included are ways to compute domination and post-domination relationships. Extra-Source-Files: Changelog.md source-repository head type: git location: https://github.com/AndreasPK/dom-lt library Default-Language: Haskell2010 includes: build-tools: extra-libraries: hs-source-dirs: . ghc-options: -O2 -funbox-strict-fields default-extensions: RankNTypes build-depends: base >= 4.9 && < 5 , array , containers >= 0.5 && < 0.7 exposed-modules: Data.Graph.Dom test-suite dom-lt-tests Default-Language: Haskell2010 type: exitcode-stdio-1.0 Main-Is: Main.hs hs-source-dirs: tests build-depends: base >=4.6 && <5 , dom-lt , containers , HUnit >=1.3 && <1.7 default-extensions: Ghc-Options: -Wall benchmark dom-lt-bench Default-Language: Haskell2010 type: exitcode-stdio-1.0 Main-Is: Main.hs hs-source-dirs: benchmarks Build-Depends: base, dom-lt, containers, criterion >= 1.4, deepseq default-extensions: Ghc-Options: -O2 -fno-full-laziness