lquerel / gcp-bigquery-client

GCP BigQuery Client (Rust)
Apache License 2.0
92 stars 60 forks source link

[request] release a new crate version #58

Closed andrehp closed 1 year ago

andrehp commented 1 year ago

Hi @lquerel, first of all, thanks a lot for developing this crate! I'm using it and it works quite nicely!

And the reason for this issue, can you release a new crate? I'm having issues running a project that relies on it due to conflicts on the hyper-rustls version. Releasing a new version with the hyper-rustls 0.24 should fix it.

   --> /Users/andrehahn/.cargo/registry/src/index.crates.io-6f17d22bba15001f/gcp-bigquery-client-0.16.6/src/auth.rs:66:28
    |
66  |                 auth: Some(auth),
    |                       ---- ^^^^ expected `HttpsConnector<HttpConnector>`, found `hyper_rustls::connector::HttpsConnector<HttpConnector>`
    |                       |
    |                       arguments to this enum variant are incorrect
    |
    = note: `hyper_rustls::connector::HttpsConnector<HttpConnector>` and `HttpsConnector<HttpConnector>` have similar names, but are actually distinct types
note: `hyper_rustls::connector::HttpsConnector<HttpConnector>` is defined in crate `hyper_rustls`
   --> /Users/andrehahn/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hyper-rustls-0.24.0/src/connector.rs:19:1
    |
19  | pub struct HttpsConnector<T> {
    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: `HttpsConnector<HttpConnector>` is defined in crate `hyper_rustls`
   --> /Users/andrehahn/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hyper-rustls-0.23.2/src/connector.rs:20:1
    |
20  | pub struct HttpsConnector<T> {
    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    = note: perhaps two different versions of crate `hyper_rustls` are being used?

Thanks!

lquerel commented 1 year ago

Thanks for your support. I will update the crate as soon as possible (probably for the end of this week).

lquerel commented 1 year ago

@andrehp Sorry for the delay. A new version of the gcp-bigquery-client has been published with the last version of hyper-rustls. Thanks

andrehp commented 1 year ago

Thanks for the fix!