Andy Caldwell

Results 28 comments of Andy Caldwell

Ah, I've worked out why this is failing, the compiler has hit the decision of whether to use the `T -> T` implementation or the `T -> Repr -> T`...

Ah, yes, I missed that warning text. Two follow on questions: 1) Do you need more than specialisation? I think you need the "lattice impl" extension (maybe that's going to...

Would also fix https://github.com/rust-lang-nursery/failure/issues/110 which just tripped me up as unobvious (`bail!` is strictly less versatile than `?`)

I license past and future contributions under the dual MIT/Apache-2.0 license, allowing licensees to chose either at their option

I just ran into this and found a workaround - install `glibc-i18n` which (at a whopping 15Mb!) includes _all_ the additional locale definition files. Still seems like `locale-gen.sh` should work...

Thanks @anphel31, I've updated the toolchain manifests as you recommended. Yes, I'm aware of `build-essential` but installing that pulls 360Mb of packages whereas installing `gcc` (post this change) pulls merely...

@oliviacrain the change to remove the `libstdc++-devel` requirement from `gcc` is a no-op since it's already transitively required though the `gcc-c++` requirement that continues to exist (I only removed the...

That installation is pulling in a whole compiler toolchain (due to `rsyslog -> net-snmp-libs -> libperl -> perl -> perl-Extutils-CBuilder -> gcc -> glibc-devel -> etc`). I can't (quite) justify...

It looks like an alternative option would be to package (some of) the rsyslog plugins as their own packages (crucially in this case the `omsnmp` module is the one that's...

> Does http1_header_read_timeout start counting immediately or just once the first byte of the header is received? In any case, I don't think that'd help for an h2 connection, right?...