Alexey Kiryushin

Results 44 comments of Alexey Kiryushin

Since the file `/home/maerwald/git/hpath/dist-newstyle/setup-config` doesn't exist, then it is possible that the package `hpath` was not built. The package should be built (using `cabal` or `stack`) before indexing (i.e., `cabal...

Oh, now I see, I've provided an incorrect example in the README. `dist` directory (where `setup-config` file is saved) for `cabal new-build` should be not just `dist-newstyle`, but something like...

Can you show the output of `haskell-code-indexer` with `--verbose` option?

`cabal-helper-0.8.0.2` that is used by `haskell-code-indexer` supports only Cabal >=1.14 &&

Of course, compiling and linking `cabal-helper` executable at runtime is an additional point of failure. Is there a simpler way to get build information ([https://www.haskell.org/cabal/release/latest/doc/API/Cabal/Distribution-Simple-LocalBuildInfo.html](https://www.haskell.org/cabal/release/latest/doc/API/Cabal/Distribution-Simple-LocalBuildInfo.html))? The problem is that a...

When there is no `--dist` option, `haskell-code-indexer` tries to find the 'dist' directory: [https://haskell-code-explorer.mfix.io/package/haskell-code-explorer-0.1.0.0/show/src/HaskellCodeExplorer/PackageInfo.hs#L315](https://haskell-code-explorer.mfix.io/package/haskell-code-explorer-0.1.0.0/show/src/HaskellCodeExplorer/PackageInfo.hs#L315) The logic is as follows: if the package directory contains `stack.yaml` file, `haskell-code-indexer` executes `stack path...

That's true, these lines were added by the C preprocessor (CPP). It's the correct behavior of Haskell code explorer at the moment. When CPP is only used for conditional compilation,...

@seanmonstar thanks for the response! > If an option can be applied to both DNS resolvers As far as I understand, `GaiResolver` from `hyper` has no options. Would it be...

Sure, it is possible to have the methods directly on `ClientBuilder`: ```rust impl ClientBuilder { // ... /// Sets the name servers for the `trust-dns` async resolver. /// /// #...

Great suggestion, thanks! I'll update the PR accordingly.