Remove references to serde_derive (#581)

This commit is contained in:
Nathan Henrie
2023-01-09 15:46:00 -07:00
committed by GitHub
parent 032bfb4b27
commit 33fb553a28

View File

@@ -465,10 +465,6 @@ impl Response {
/// // Put this in Cargo.toml: serde = { version = "1", features = ["derive"] }
/// use serde::{Deserialize};
///
/// // An alternative way to is to use the `serde_derive` crate.
/// // Put this in Cargo.toml: serde_derive = "1"
/// // use serde_derive::{Deserialize};
///
/// #[derive(Deserialize)]
/// struct Message {
/// hello: String,