confy icon indicating copy to clipboard operation
confy copied to clipboard

🛋 Zero-boilerplate configuration management in Rust

Results 25 confy issues
Sort by recently updated
recently updated
newest added

Please release more often. Even a few smaller improvements can make a big difference, according to what the user needs. For example: I am desperately waiting for `pub fn get_configuration_file_path(name:...

Hi! Let's release 0.5.0!

Are there any opinions on adding JSON as a serialization format? My project uses JSON because it requires interop between multiple components, and JSON's tooling is very strong and ubiquitous....

confy requires serde for serialization and deserialization and the documentaion is not clear about this. Also confy will fail in file is missing `my_app` so Default trait was also added....

I use confy to store float values in toml. It was working fine until recently (a month ago?) instead of storing something like ```value = 0.0``` it is stored like...

I've noticed that when confy tries to write to a file path, it overwrites the file in-place: https://github.com/rust-cli/confy/blob/cd6932214ec16d50aa0f0defeb847a2e12618e61/src/lib.rs#L281-L287 In my experience (though not with apps using confy), overwriting files in-place...

![image](https://user-images.githubusercontent.com/9505196/85811683-ccc30b80-b72c-11ea-912a-2be8fe3bce82.png)

@nyanpasu64 mentioned #48 that we maybe should run CI also on other images than ubuntu as well. What'd you think?

This PR adds a generic type parameter to specify the deserialization format. This PR is not ready yet, and - maybe more importantly - is a draft because I just...

Comments can make config files more user-friendly by giving hints about possible values and where more info can be found. When config files get large, sections are useful to break...