We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d74cf22 commit df2365eCopy full SHA for df2365e
src/de.rs
@@ -141,12 +141,6 @@ impl<'de> de::Deserializer<'de> for Value {
141
142
struct StrDeserializer<'a>(&'a str);
143
144
-impl<'a> StrDeserializer<'a> {
145
- fn new(key: &'a str) -> Self {
146
- StrDeserializer(key)
147
- }
148
-}
149
-
150
impl<'de, 'a> de::Deserializer<'de> for StrDeserializer<'a> {
151
type Error = ConfigError;
152
src/lib.rs
@@ -17,7 +17,6 @@
17
//!
18
//! See the [examples](https://github.com/mehcode/config-rs/tree/master/examples) for
19
//! general usage information.
20
-#![allow(dead_code)]
21
#![allow(unused_imports)]
22
#![allow(unused_variables)]
23
#![allow(unknown_lints)]
0 commit comments