Allan Zhang

Results 70 comments of Allan Zhang

Could you provide a minimal example with your code and your *.env* file?

Could you provide example .env files?

It works for me. PowerShell/echo created the file in UTF-8 on my system. ```rust use dotenvy::dotenv; use std::{env, error::Error}; fn main() -> Result { dotenv()?; println!("DATABASE_URL: {}", env::var("DATABASE_URL")?); Ok(()) }...

Using my earlier example, you would get this error: ``` thread 'main' panicked at 'Error: Io(Error { kind: InvalidData, message: "stream did not contain valid UTF-8" })', src\main.rs:5:14 ``` If...

Hi @cbeck88, thanks for the detailed issue. There are a lot of issues popping up about dotenvy not supporting X, which is supported by other dotenv implementations. I'm currently working...

Hi Steve, I was able to reproduce your problem. [allan2/dotenvy-workspace-example](https://github.com/allan2/dotenvy-workspace-example) The issue is that `dotenvy::dotenv` and the `dotenvy!` macro both start finding from `std::env::current_dir`. If the user runs from the...

I noticed this when I added multiple accounts and they were all named "Nextcloud" in Windows Explorer quick access. A feature to customize the quick access text would be nice....

@jokil123 You should use gloo-net because that's where the development is happening. This crate just re-exports gloo-net anyways, so they are the same except for the crate name. The reason...

There is no higher-level non-legacy client at the moment. Keep as-is until the new one arrives? Sources: https://github.com/hyperium/hyper/issues/3414 https://hyper.rs/contrib/roadmap/

I just wanted to mention that `HostedZone` has `string | undefined` type for the field `id`. There are other fields affected. The [Go API Reference](https://docs.aws.amazon.com/sdk-for-go/api/service/route53/#HostedZone) states that that fields are...