summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 267e0d8..98c90b4 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -6,7 +6,7 @@
//! - Environment variables
//! - Another Config instance
//! - Remote configuration: etcd, Consul
-//! - Files: TOML, JSON, YAML, HJSON, INI, RON, JSON5
+//! - Files: TOML, JSON, YAML, INI, RON, JSON5
//! - Manual, programmatic override (via a `.set` method on the Config instance)
//!
//! Additionally, Config supports:
@@ -41,9 +41,6 @@ extern crate serde_json;
#[cfg(feature = "yaml")]
extern crate yaml_rust;
-#[cfg(feature = "hjson")]
-extern crate serde_hjson;
-
#[cfg(feature = "ini")]
extern crate ini;