app-dirs-rs
                                
                                
                                
                                    app-dirs-rs copied to clipboard
                            
                            
                            
                        Put your Rust app's data in the right place on every platform
I am porting my apps to the new winapi for better compile times, but I am still compiling the old winapi one for this dependency. Can we get this updated?...
I don't think I see this feature anywhere? I read the source and it says it's disabled on *nix because specs don't require it. I'm learning Rust and porting a...
I think trying to use this on Android would activate the `unix` branch and try to use the XDG spec... which I'm _pretty sure_ that Android doesn't follow. :scream:
They're kind of terrible, and I *think* I have a better scheme now: * `app_dir` -> `ensure_app_dir` * `get_app_dir` -> `compute_app_dir` Discussion is very welcome...
Hi, Would it be possible to add a temporary folder to this package? This is not part of the XDG Base specification but would be very usefull to have in...
Some of us want to make a library that uses `app_dirs` to manage data but lets the user of the library specify the strings for the application using it. Forcing...
This patch changes the `path` parameters to functions from `&str` to `AsRef`. The benefit of doing this I see is: 1. The same function will be able to accept several...
[This user](https://www.reddit.com/r/rust/comments/59s8si/new_crate_app_dirs_puts_all_your_apps_data_in_the/d9bjnon/) on Reddit has an example of when using the first thing returned by XDG isn't a good idea. Perhaps we could check each path it returns and choose...
Clicking at `[src]` in the documentation does not show any special handling of things like CON, PRN, AUX, NUL, COM1, COM2, COM3, COM4, COM5, COM6, COM7, COM8, COM9, LPT1, LPT2,...
If we can resolve the [mixed slashes issue on Windows](https://github.com/AndyBarron/app-dirs-rs/pull/9#issuecomment-257011676), we should make `[get_]app_dir` generic over `P: AsRef`.