From 9239ee5c27eb6d87098b10cb8e1f4ea9465d1add Mon Sep 17 00:00:00 2001 From: Ryan Leckey Date: Tue, 7 Feb 2017 17:09:41 -0800 Subject: Add path resolution using a strict subset of JSONPath --- src/lib.rs | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index 5f8957a..89ffc69 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,7 @@ #![feature(drop_types_in_const)] #![allow(unknown_lints)] +#![feature(trace_macros)] //! Configuration is gathered by building a `Source` and then merging that source into the //! current state of the configuration. @@ -40,6 +41,9 @@ //! See the [examples](https://github.com/mehcode/config-rs/tree/master/examples) for //! more usage information. +#[macro_use] +extern crate nom; + #[cfg(feature = "toml")] extern crate toml; @@ -50,6 +54,7 @@ mod value; mod source; mod file; mod env; +mod path; mod config; use std::error::Error; -- cgit v1.2.3