Mateusz Kowalczyk

Results 98 comments of Mateusz Kowalczyk

@Ericson2314 Not sure what you're asking me to verify w.r.t. #257. As long as `crate metadata` is being invoked, IFD and similar approaches don't come into the picture, no?

I had a somewhat related issue. I wanted to use the `DATE` postgres function on a field that was `Timestamptz`. diesel is only happy with `Timestamp`. For anyone stumbling upon...

This presumably will never be implemented if AWS doesn't add the relevant API which AFAIU has not happened.

http://hackage.haskell.org/package/double-conversion-2.0.2.0 ?

I found even more problems with this nix 2.3 codepath: for example, it'll remove `.gitignore` from the workspace crates while later versions will not: this is due to current `sourceFilter`...

I have ran into this in the wild today. I made a reproducer. https://github.com/Fuuzetsu/crate2nix-stack-overflow-repro/tree/fb5913fd7d56ad870fa763e2b9b47f3beeb25e32 In the reproducer you I bundle a patched `nix` which allows us to further figure out...

The below patch should work I think. I'm able to apply this to our rather large tree and it fetches from the binary cache which implies that usual behaviour is...

We've also been hit by this. We're using `rmp_serde` in combination with `enum_map` crate. Simple code like below, fails. ```rust use enum_map::*; use serde::*; fn main() { let val =...

There's `pkgconfig` which is old alias for `pkg-config`. But there's also `pkgconfig`-the-python-package... I think these `self.pkg-config` refer to the python package set which only has `self.pkgconfig`-the-python-package... so perhaps the #1446...

@thufschmitt I tried `remote-program` and it works with `ssh://` though not `ssh-ng://` (see at the bottom, :shrug:) thank you for pointing me to that. This is much better than the...