Skip to content

Commit

Permalink
Disable unused features from serde_with
Browse files Browse the repository at this point in the history
Because of rust-lang/cargo#10801, the default
features from serde_with pull in a lot of unused cruft.
  • Loading branch information
glandium committed Feb 2, 2024
1 parent 85ab56f commit b8bc752
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qlog/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 14,5 @@ license = "BSD-2-Clause"
serde = { version = "1.0.139", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
serde_derive = "1.0"
serde_with = "3.0.0"
serde_with = { version = "3.0.0", default-features = false, features = ["macros"] }
smallvec = { version = "1.10", features = ["serde"] }

0 comments on commit b8bc752

Please sign in to comment.