Skip to content

Commit

Permalink
Added missing 'serde' feature
Browse files Browse the repository at this point in the history
  • Loading branch information
ancwrd1 committed Apr 26, 2024
1 parent e1a9602 commit 96dc284
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ipp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ enum-primitive-derive = "0.3"
futures-executor = { version = "0.3", optional = true }
log = "0.4"
num-traits = "0.2"
bytes = { version = "1", features = ["serde"] }
bytes = "1"
thiserror = "1"
http = "1"
serde = { version = "1", optional = true, features = ["derive"] }
Expand Down Expand Up @@ -49,6 +49,7 @@ tokio = { version = "1", features = ["macros", "rt-multi-thread"] }

[features]
default = ["async-client", "client", "async-client-tls", "client-tls"]
serde = ["dep:serde", "bytes/serde"]
async = ["futures-util", "futures-executor"]
async-client = ["async", "reqwest", "tokio-util", "base64"]
client = ["ureq", "base64"]
Expand Down

0 comments on commit 96dc284

Please sign in to comment.