Skip to content

Commit

Permalink
Raise serde version to support no-std builds (#19)
Browse files Browse the repository at this point in the history
Serde impls for Ip*Addr from serde 1.0.210 don't require std (if used
with rust>=1.77, which we require anyway).
  • Loading branch information
stbuehler committed Jan 18, 2025
1 parent 860fa2f commit f0b716c
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 @@ -27,7 +27,7 @@ serde = ["dep:serde"]

[dependencies]
bitstring = { version = "0.2.0", optional = true, features = ["net"] }
serde = { version = "1.0.27", optional = true }
serde = { version = "1.0.210", optional = true, default-features = false }

[dev-dependencies]
serde_test = "1.0.27"
Expand Down

0 comments on commit f0b716c

Please sign in to comment.