packdeps

Check your cabal packages for lagging dependencies.

MEMO

  • common stanza とかは今のところ使えないっぽい

  • ローカルのパッケージデータベースを使ってるみたいなので cabal update しないと最新のバージョンが反映されない

インストール

λ cabal install packdeps

λ packdeps
Missing: pkgname.cabal

Usage: packdeps [-r|--recursive] [-q|--quiet] [-g|--ghc-pkg] [-p|--preferred]
                [-e|--exclude pkgname] pkgname.cabal
  Check the given cabal file's dependency list to make sure that it does not
  exclude the newest package available. It's probably worth running the 'cabal
  update' command immediately before running this program.

使い方

λ cabal update
λ packdeps test.cabal
test-1.0.0: Cannot accept the following packages
lens 4.18
optparse-applicative 0.15.0.0

参考リソース

Last updated