cabal-version: 1.18 name: dependency version: 1.2.0.3 x-revision: 1 license: BSD3 license-file: LICENSE copyright: Copyright: (c) 2018 Vanessa McHale maintainer: vamchale@gmail.com author: Vanessa McHale synopsis: Dependency resolution for package management description: A library for resolving dependencies; uses a topological sort to construct a build plan and then allows choice between all compatible plans. category: Development, Build build-type: Simple extra-doc-files: README.md CHANGELOG.md source-repository head type: darcs location: https://hub.darcs.net/vmchale/ats flag development description: Enable `-Werror` default: False manual: True library exposed-modules: Data.Dependency hs-source-dirs: src other-modules: Data.Dependency.Type Data.Dependency.Error Data.Dependency.Sort default-language: Haskell2010 other-extensions: DeriveAnyClass DeriveGeneric OverloadedStrings DeriveFoldable DeriveFunctor TupleSections ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -Wcompat build-depends: base >=4.9 && <5, ansi-wl-pprint <1.0, containers >=0.5.9 && <0.7, microlens <0.5, binary <0.9, deepseq <1.5 if (flag(development) && impl(ghc <8.4)) ghc-options: -Werror test-suite dependency-test type: exitcode-stdio-1.0 main-is: Spec.hs hs-source-dirs: test default-language: Haskell2010 other-extensions: TupleSections ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -Wcompat build-depends: base -any, dependency -any, hspec <2.12, containers -any if flag(development) ghc-options: -Werror benchmark dependency-bench type: exitcode-stdio-1.0 main-is: Bench.hs hs-source-dirs: bench default-language: Haskell2010 other-extensions: TupleSections ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -Wcompat build-depends: base -any, dependency -any, containers -any, criterion <1.7 if flag(development) ghc-options: -Werror