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.
2 parents 129ba43 + 7452976 commit 2694972Copy full SHA for 2694972
Cargo.toml
@@ -8,7 +8,8 @@ repository = "https://github.com/rust-lang/rustdoc-types"
8
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
9
10
[dependencies]
11
-serde = {version="1", features=["derive"]}
+serde = {version="1"}
12
+serde_derive = {version="1"}
13
rustc-hash = {version="2", optional=true}
14
15
[features]
src/lib.rs
@@ -21,7 +21,7 @@ use std::path::PathBuf;
21
22
#[cfg(feature = "rustc-hash")]
23
use rustc_hash::FxHashMap as HashMap;
24
-use serde::{Deserialize, Serialize};
+use serde_derive::{Deserialize, Serialize};
25
26
27
/// The version of JSON output that this crate represents.
0 commit comments