Open ghenry opened 5 days ago
Hello @ghenry Looks like I need to make at least a docs update but it's erroring out here because we have toml
set as the default feature on, and you have activated another feature to get this to compile today you'll need to update your Cargo.toml
to:
[dependencies]
confy = { version = "0.6.1", default-features = false, features = ["ron_conf"] }
and it will compile fine with only ron
support.
I'll investigate further to see if we can at least update the documentation/error handing here.
Ah, thanks. I was reading the source to do a PR, but couldn't see the default one you've highlighted.
That's set here https://github.com/rust-cli/confy/blob/master/Cargo.toml#L21
Hi,
If I set a feature to
ron_conf
oryaml_conf
using:confy = { version = "0.6.1", features = ["ron_conf"] }
I get:
Am I doing something wrong?
Thanks.