Skip to content

Commit

Permalink
Allow serde and serde_derive to compile in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Jun 15, 2023
1 parent 547d3f5 commit 3838953
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ proc-macro2 = { version = "1.0", features = ["span-locations"] }
rayon = "1.0"
reqwest = { version = "0.11", features = ["blocking", "json"] }
semver = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde = "1.0"
serde_derive = "1.0"
syn = { version = "2.0", default-features = false, features = ["full", "parsing", "visit"] }
tar = "0.4"
walkdir = "2.3"
Expand Down
2 changes: 1 addition & 1 deletion src/lints.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use anyhow::Result;
use serde::Deserialize;
use serde_derive::Deserialize;
use std::collections::BTreeSet as Set;
use std::fmt::{self, Display};

Expand Down

0 comments on commit 3838953

Please sign in to comment.