2020-06-30 16:59:14 +03:00
|
|
|
cabal-version: 3.0
|
|
|
|
license: BSD-3-Clause
|
2020-03-15 18:23:48 +03:00
|
|
|
license-file: LICENSE
|
|
|
|
name: weeder
|
|
|
|
author: Ollie Charles <ollie@ocharles.org.uk>
|
2020-03-15 21:11:18 +03:00
|
|
|
maintainer: Ollie Charles <ollie@ocharles.org.uk>
|
2020-03-15 18:23:48 +03:00
|
|
|
build-type: Simple
|
2021-08-29 12:40:36 +03:00
|
|
|
version: 2.2.0
|
2020-03-15 18:23:48 +03:00
|
|
|
copyright: Neil Mitchell 2017-2020, Oliver Charles 2020
|
|
|
|
synopsis: Detect dead code
|
|
|
|
description: Find declarations.
|
|
|
|
homepage: https://github.com/ocharles/weeder#readme
|
|
|
|
bug-reports: https://github.com/ocharles/weeder/issues
|
2020-03-15 21:11:18 +03:00
|
|
|
category: Development
|
2020-03-15 18:23:48 +03:00
|
|
|
extra-doc-files:
|
|
|
|
README.md
|
|
|
|
CHANGELOG.md
|
2019-09-10 12:23:57 +03:00
|
|
|
|
2019-09-16 11:59:37 +03:00
|
|
|
library
|
2020-03-08 16:49:48 +03:00
|
|
|
build-depends:
|
2020-06-30 16:59:14 +03:00
|
|
|
, algebraic-graphs ^>= 0.4 || ^>= 0.5
|
|
|
|
, base ^>= 4.13.0.0 || ^>= 4.14.0.0
|
2020-12-11 12:24:04 +03:00
|
|
|
, bytestring ^>= 0.10.9.0 || ^>= 0.11.0.0
|
2020-06-30 16:59:14 +03:00
|
|
|
, containers ^>= 0.6.2.1
|
2021-08-29 12:36:08 +03:00
|
|
|
, dhall ^>= 1.30.0 || ^>= 1.31.0 || ^>= 1.32.0 || ^>= 1.33.0 || ^>= 1.34.0 || ^>= 1.35.0 || ^>= 1.36.0 || ^>= 1.37.0 || ^>= 1.40.0
|
2020-06-30 16:59:14 +03:00
|
|
|
, directory ^>= 1.3.3.2
|
|
|
|
, filepath ^>= 1.4.2.1
|
2021-08-29 12:36:08 +03:00
|
|
|
, generic-lens ^>= 1.1.0.0 || ^>= 1.2.0.0 || ^>= 2.0.0.0 || ^>= 2.2.0.0
|
2020-06-30 16:59:14 +03:00
|
|
|
, ghc ^>= 8.8.1 || ^>= 8.10
|
2021-08-29 12:36:08 +03:00
|
|
|
, lens ^>= 4.18.1 || ^>= 4.19 || ^>= 5.0.1
|
2020-06-30 16:59:14 +03:00
|
|
|
, mtl ^>= 2.2.2
|
2020-09-09 17:19:59 +03:00
|
|
|
, optparse-applicative ^>= 0.14.3.0 || ^>= 0.15.1.0 || ^>= 0.16.0.0
|
2020-06-30 16:59:14 +03:00
|
|
|
, regex-tdfa ^>= 1.2.0.0 || ^>= 1.3.1.0
|
|
|
|
, text ^>= 1.2.3.0
|
2021-08-29 12:36:08 +03:00
|
|
|
, transformers ^>= 0.5.6.2 || ^>= 0.6
|
2019-09-10 12:23:57 +03:00
|
|
|
hs-source-dirs: src
|
2020-03-14 19:19:13 +03:00
|
|
|
exposed-modules:
|
|
|
|
Weeder
|
|
|
|
Weeder.Config
|
|
|
|
Weeder.Main
|
2020-05-21 23:05:04 +03:00
|
|
|
autogen-modules:
|
|
|
|
Paths_weeder
|
|
|
|
other-modules:
|
|
|
|
Paths_weeder
|
2020-03-06 12:04:49 +03:00
|
|
|
ghc-options: -Wall -fwarn-incomplete-uni-patterns
|
2020-03-15 21:10:33 +03:00
|
|
|
default-language: Haskell2010
|
2019-09-16 11:59:37 +03:00
|
|
|
|
|
|
|
|
2019-09-16 12:02:58 +03:00
|
|
|
executable weeder
|
2020-03-08 16:49:48 +03:00
|
|
|
build-depends:
|
2021-08-29 12:36:08 +03:00
|
|
|
, base
|
|
|
|
, bytestring
|
|
|
|
, containers
|
|
|
|
, directory
|
|
|
|
, filepath
|
|
|
|
, ghc
|
|
|
|
, optparse-applicative
|
|
|
|
, transformers
|
2020-06-30 16:59:14 +03:00
|
|
|
, weeder
|
2019-09-16 12:02:58 +03:00
|
|
|
main-is: Main.hs
|
|
|
|
hs-source-dirs: exe-weeder
|
2020-03-06 12:04:49 +03:00
|
|
|
ghc-options: -Wall -fwarn-incomplete-uni-patterns
|
2020-03-15 21:10:33 +03:00
|
|
|
default-language: Haskell2010
|