json_config 0.1.3

A JSON based configuration management solution for Rust applications.
docs.rs failed to build json_config-0.1.3
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: json_config-0.1.4

json_config

json_config is a JSON based configuration management solution for Rust applications. It allows you to do the following,

  1. Maintain application settings in JSON form. i.e. in a file, as a string based variable, string literal and in pure JSON form
  2. Span and maintain your application settings across multiple different sources, i.e. multiple
  3. Maintain a base configuration and override it with JSON partials
  4. Define bundles which encapsulate logically related configuration sections and later override the base configuration with them as necessary
  5. Do all of the above either at runtime or compile time via build.rs

The library also exposes macros which help you do all of the above in a very convenient manner.

Documentation is still in progress...

#License Dual licensed under MIT/Apache-2.0.