在我的项目的.cabal文件中,我在executable
部分下面有以下内容:
executable ArchPkgstatsScraper
hs-source-dirs: app
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, ArchPkgStatsScraper
, text
, conduit
, html-conduit
, http-conduit
, xml-conduit
, resourcet
, transformers
在使用堆栈成功安装/构建上述内容后,如何检查安装了哪个版本的xml-conduit?
答案 0 :(得分:21)
命令
stack list-dependencies
将列出为当前项目安装的每个依赖项及其版本。
答案 1 :(得分:10)