Jenda Kolena
Jenda Kolena
Hello, will the fix be backported to 0.18, please? I'd love to use newer lins but there is some dependency hell (Monix incompatible with cats-effect 1.0 yet, but http4s >...
I guess the documentation is ahead of releasing. I ran into exactly the same issue (I wonder why 😂 😂 ). => #136
It has just happened to me :disappointed: SBT 1.4.7, Scala 2.13.4, missinglink 0.3.1, shapeless 2.3.3. Solved by excluding the Shapeless from Missinglink... :neutral_face:
Hi @jgoerzen, not exactly answering your question but since you're interested in remote storages, see my recent PR: https://github.com/dpc/rdedup/pull/184 BTW, after you check the linked code, you will understand that...
OK, it works with version 0.8.0 (and transitive fs2 1.0.0-M5). But I still need to get it working with latest stable... :-(
Well I ended up with doing the conversion to `Stream` by myself (sorry...) through async `Queue`. It's a little bit slower but doesn't lose anything :smiley: I can provide you...
This doesn't work for me either. I have vanilla JSON, downloaded from GCP, and configured the path with `GOOGLE_APPLICATION_CREDENTIALS_JSON` env. This error hit me in the face...
Let me add that this works just fine: ```rust let credentials: CredentialsFile = serde_json::from_slice(&fs::read(std::env::var( "GOOGLE_APPLICATION_CREDENTIALS_JSON", )?)?)?; let config = ClientConfig::default() .with_credentials(credentials) .await?; ```
Ehm, I am ashamed but my problem was that I used `GOOGLE_APPLICATION_CREDENTIALS_JSON` and put there _path_ to the JSON file. Using `GOOGLE_APPLICATION_CREDENTIALS` works just fine.
Hi @saghul, first: thank you for your great job! I'm just still a little bit confused about this topic. Doc says: ``` If running in a LAN environment (as well...