kennytm

Results 391 comments of kennytm

We'll support this by the end of next sprint (likely through [`gcp_auth`](https://crates.io/crates/gcp_auth)), but we need a GCP environment to verify it.

This issue has nothing to do with `chrono-tz`, the implementation properly returns `LocalResult::Ambiguous`. The problem is that `chrono`'s implementation of `LocalResult::and_hms_opt` [*discards* the `Ambiguous` result](https://github.com/chronotope/chrono/blob/1407309b877b201ff79c016d1d1b1c261c02c386/src/offset/mod.rs#L96-L103). `Local` "works" because `Local` [never...

Oh. Since cargo-lipo is removing the 32-bit targets and Apple is also deprecating the 32-bit targets the proper fix would be to remove the 32-bit targets here as well.

Backup with a follower or re-elected leader is probably not going to work because of `local://` (bruh). In network storage, if we write a file X from source A, and...

Since you mentioned "generator" here, the RFC could be simplified a lot (hiding the state machine) if it can be explained in terms of #2033 generator. From what I understand,...

I've checked this from 1.13.0 to the current nightly and it is obvious that the regression is introduced in 1.19.0 and 1.20.0. The speed is recovering in more recent version...

@arielb1 Probably not to a specific commit, but I'm now doing a date-based bisection which should point to a narrow-enough commit range.

From the timing of nightlies between 2017-04-24 to 2017-07-17: * Regression at `nightly-2017-04-26` (+43µs): 63c77214c1d38789652b465694b254205d1886e0...2b4c911581099e247a68b3a8adc782d778f5190b (likely #40123 (LLVM 4.0 Upgrade)) * Regression at `nightly-2017-05-14` (+26µs): e17a1227ac779a181b2839998e26a7e4e434c2a0...826d8f3850b37a23481dfcf4a899b5dfc82d22e3 (likely #41920 (remove the...

Rust recently added CloudABI support, and this will cause `encode`/`decode` to become `unimplemented!` for `target_os = "cloudabi"`, which I don't think is correct.

Instead of removing 1.0.0, better just restrict the `rand` dependency to a version which 1.0.0 can work, something like: ```toml [dev-dependencies] rand = ">=0.3.0,