simply parse unknown json-strings as strings instead of erroring

This commit is contained in:
Oliver Schneider 2016-06-06 11:03:15 +02:00
parent a2c427470b
commit a3f7fea36c
No known key found for this signature in database
GPG Key ID: 56D6EEA0FC67AC46

View File

@ -32,7 +32,7 @@ pub struct Dependency {
optional: bool,
uses_default_features: bool,
features: Vec<String>,
target: Option<()>,
target: Option<String>,
}
#[derive(RustcDecodable, Debug)]