Skip to content

Commit

Permalink
fix(primitives): set serde derive feature (#359)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes authored Oct 9, 2023
1 parent 9597caf commit 8b6f12b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
with:
cache-on-failure: true
- name: cargo hack
run: cargo hack check --feature-powerset --depth 2 --all-targets
run: cargo hack check --feature-powerset --depth 2

clippy:
runs-on: ubuntu-latest
Expand Down
3 changes: 1 addition & 2 deletions crates/primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ cfg-if.workspace = true
alloy-rlp = { workspace = true, optional = true }

# serde
serde = { workspace = true, optional = true }
serde = { workspace = true, optional = true, features = ["derive"] }

# getrandom
getrandom = { workspace = true, optional = true }
Expand All @@ -50,7 +50,6 @@ proptest-derive = { workspace = true, optional = true }
[dev-dependencies]
bincode.workspace = true
serde_json.workspace = true
serde = { workspace = true, features = ["derive"] }

[features]
default = ["std"]
Expand Down

0 comments on commit 8b6f12b

Please sign in to comment.