Skip to content

Commit

Permalink
Merge pull request #365 from tottoto/remove-serde-derive-dependency
Browse files Browse the repository at this point in the history
use serde macro via serde crate instead of serde_derive
  • Loading branch information
kbknapp committed Nov 2, 2023
2 parents d32f1a6 + 7527676 commit 94b2bab
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ env_logger = "0.10.0"
git2-curl = "0.18.0"
semver = "1.0.0"
serde = {version="1.0.114", features = ["derive"]}
serde_derive = "1.0.114"
serde_json = "1.0.56"
tabwriter = "1.2.1"
tempfile = "3.6"
Expand Down
2 changes: 1 addition & 1 deletion src/cargo_ops/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ mod temp_project;
pub use self::{elaborate_workspace::ElaborateWorkspace, pkg_status::*, temp_project::TempProject};

/// A continent struct for quick parsing and manipulating manifest
#[derive(Debug, serde_derive::Serialize, serde_derive::Deserialize)]
#[derive(Debug, serde::Serialize, serde::Deserialize)]
struct Manifest {
#[serde(rename = "cargo-features", skip_serializing_if = "Option::is_none")]
pub cargo_features: Option<Value>,
Expand Down

0 comments on commit 94b2bab

Please sign in to comment.