├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-BSD ├── LICENSE-MIT ├── README.md ├── appveyor.yml ├── codeowners ├── img └── flowchart.png ├── rustfmt.toml └── src ├── error.rs ├── file_handler.rs ├── global_mutex.rs └── lib.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/config_file_handler/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/config_file_handler/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/config_file_handler/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/config_file_handler/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/config_file_handler/HEAD/LICENSE-BSD -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/config_file_handler/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/config_file_handler/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/config_file_handler/HEAD/appveyor.yml -------------------------------------------------------------------------------- /codeowners: -------------------------------------------------------------------------------- 1 | * @ustulation 2 | -------------------------------------------------------------------------------- /img/flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/config_file_handler/HEAD/img/flowchart.png -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- 1 | use_try_shorthand = true 2 | -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/config_file_handler/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/file_handler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/config_file_handler/HEAD/src/file_handler.rs -------------------------------------------------------------------------------- /src/global_mutex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/config_file_handler/HEAD/src/global_mutex.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/config_file_handler/HEAD/src/lib.rs --------------------------------------------------------------------------------