Skip to content

Commit

Permalink
Do not pull in serde_with_macros (awslabs#27)
Browse files Browse the repository at this point in the history
This patch disables the default features for serde_with, which pulls in
its macros feature.
This expands the dependencies farther than we need, since we don't use
the macros at all.

Signed-off-by: Patrick Uiterwijk <patrick@puiterwijk.org>
  • Loading branch information
puiterwijk committed Aug 12, 2021
1 parent c38c8ec commit 699aa93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ description = "This library aims to provide a safe Rust implementation of COSE,
serde_cbor = { version="0.11", features = ["tags"] }
serde_repr = "0.1"
serde_bytes = "0.11"
serde_with = "1.5"
serde_with = { version = "1.5", default_features = false }
openssl = "0.10"

[dependencies.serde]
Expand Down

0 comments on commit 699aa93

Please sign in to comment.