Ian

Results 41 comments of Ian

Not sure why Travis is failing to build this; I'm running this change in production without any issues.

I think this may be due to certain libraries not being statically included in the DLL. I was able to get it working by copying several additional DLLs from the...

Agreed, regardless of what way ultimately gets recommended, all I'm trying to call out here is that some additional documentation for building with mingw64 would be nice

GraphQL is sort of protocol-agnostic, so you are correct that it does not provide guidelines for HTTP status codes, but that doesn't mean this implementation of GraphQL over HTTP should...

@ivanjaros are you still interested in this and is the bounty still active?

FWIW, I also cannot get this working with 0.13.2 and nested structs in my config. When I use `.add_source(config::Environment::with_prefix("TEST"))` then I can successfully use environment variables like `TEST_MYSTRUCT.MYFIELD` However, when...

Here is the problem: https://github.com/mehcode/config-rs/blob/master/src/env.rs#L222 ```rust // If separator is given replace with `.` if !separator.is_empty() { key = key.replace(separator, "."); } ``` If I have a struct in my...

This crate allows you to parse a config into an actual struct using `.try_deserialize()`, rather than retrieving keys using strings: https://github.com/mehcode/config-rs/blob/c8ee9f1335fb093cda3debabe15ad0f7a3ab9071/examples/env-list/main.rs My use case is ultimately setting values in my...

> In this vein, though probably not possible, if we could get config to know what kind of env to fill a field with in maybe some sort of more...