Skip to content
This repository has been archived by the owner on Oct 23, 2024. It is now read-only.

Commit

Permalink
Fix build warning
Browse files Browse the repository at this point in the history
  • Loading branch information
drewstone committed Dec 11, 2023
1 parent 093316e commit 6429ba9
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion crates/consensus-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ eth2-serde-utils = { package = "webb-eth2-serde-utils", path = "../serde-utils",

bitvec = { workspace = true, features = ["atomic", "alloc"] }
hex = { workspace = true }
codec = { package = "parity-scale-codec", workspace = true }
codec = { workspace = true }
scale-info = { workspace = true }
serde = { workspace = true }
rlp = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/eth-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ tree-hash = { package = "webb-tree-hash", path = "../tree-hash", default-featur
tree-hash-derive = { package = "webb-tree-hash-derive", path = "../tree-hash-derive", default-features = false }
eth2-serde-utils = { package = "webb-eth2-serde-utils", path = "../serde-utils", default-features = false, optional = true }
hex = { workspace = true }
codec = { package = "parity-scale-codec", workspace = true }
codec = { workspace = true }
scale-info = { workspace = true }
serde = { workspace = true }
rlp = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion pallets/eth2-light-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ sp-core = { workspace = true }

log = { workspace = true }
serde = { workspace = true, optional = true }
codec = { package = "parity-scale-codec",workspace = true, features = ["derive", "max-encoded-len"] }
codec = { workspace = true, features = ["derive", "max-encoded-len"] }
scale-info = { workspace = true }
webb-proposals = { workspace = true, features = ["evm", "substrate"] }
ethereum-types = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion pallets/eth2-light-client/runtime-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
codec = { package = "parity-scale-codec", workspace = true }
codec = { workspace = true }
sp-api = { workspace = true }
webb-proposals = { workspace = true }
eth-types = { path = "../../../crates/eth-types", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion pallets/light-proposals/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ sp-core = { workspace = true, default-features = false }

log = { workspace = true, default-features = false }
serde = { workspace = true, optional = true, default-features = false }
codec = { package = "parity-scale-codec",workspace = true, features = ["derive", "max-encoded-len"] }
codec = { workspace = true, features = ["derive", "max-encoded-len"] }
scale-info = { workspace = true, default-features = false }
webb-proposals = { workspace = true, default-features = false, features = ["evm", "substrate"] }
ethereum-types = { workspace = true, default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion pallets/light-verifier/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ sp-core = { workspace = true }

log = { workspace = true }
serde = { workspace = true, optional = true }
codec = { package = "parity-scale-codec",workspace = true, features = ["derive", "max-encoded-len"] }
codec = { workspace = true, features = ["derive", "max-encoded-len"] }
scale-info = { workspace = true }
webb-proposals = { workspace = true, features = ["evm", "substrate"] }
ethereum-types = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ webb-proposals = { workspace = true }
ethereum-types = { workspace = true }
log = { workspace = true }
serde = { workspace = true, optional = true }
codec = { package = "parity-scale-codec", workspace = true, features = ["derive", "max-encoded-len"] }
codec = { workspace = true, features = ["derive", "max-encoded-len"] }
scale-info = { workspace = true }

[features]
Expand Down
2 changes: 1 addition & 1 deletion runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ repository = "https://github.com/substrate-developer-hub/substrate-node-template
targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
codec = { package = "parity-scale-codec", workspace = true, features = ["derive"] }
codec = { workspace = true, features = ["derive"] }
scale-info = { workspace = true }
log = { workspace = true }

Expand Down

0 comments on commit 6429ba9

Please sign in to comment.