app_properties
A Rust library for reading application properties from a file. The properties file, named 'app.properties', must be placed in the same folder as the binary that uses it and follows the YAML pattern.
Properties file example:
server: localhost
port: 8080
Using the lib:
app_properties = "0.1.1"
use AppProperties;
let properties: AppProperties = new;
let server = properties.get;
let port = properties.get;