mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 13:13:34 +00:00
simply parse unknown json-strings as strings instead of erroring
This commit is contained in:
parent
a2c427470b
commit
a3f7fea36c
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ pub struct Dependency {
|
|||
optional: bool,
|
||||
uses_default_features: bool,
|
||||
features: Vec<String>,
|
||||
target: Option<()>,
|
||||
target: Option<String>,
|
||||
}
|
||||
|
||||
#[derive(RustcDecodable, Debug)]
|
||||
|
|
Loading…
Reference in a new issue