Skip to content

Commit

Permalink
fix: serde alloc feature
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes committed Dec 12, 2023
1 parent e9fd2e3 commit bd3e4de
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ num_enum = { version = "0.7", default-features = false }
strum = { version = "0.25", default-features = false, features = ["derive"] }

# serde
serde = { version = "1.0", default-features = false, features = ["derive"], optional = true }
serde = { version = "1.0", default-features = false, features = [
"derive",
"alloc",
], optional = true }

# rlp
alloy-rlp = { version = "0.3", default-features = false, features = ["derive"], optional = true }
Expand Down

0 comments on commit bd3e4de

Please sign in to comment.