Skip to content

Commit 18cdf19

Browse files
committed
Move serde feature to domain-runtime-primitives
1 parent 79b4863 commit 18cdf19

File tree

4 files changed

+1
-9
lines changed

4 files changed

+1
-9
lines changed

Cargo.lock

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

domains/primitives/runtime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ description = "Common primitives of subspace domain runtime"
1212
targets = ["x86_64-unknown-linux-gnu"]
1313

1414
[dependencies]
15-
fp-account = { version = "1.0.0-dev", default-features = false, git = "https://github.com/autonomys/frontier", rev = "f80f9e2bad338f3bf3854b256b3c4edea23e5968" }
15+
fp-account = { version = "1.0.0-dev", default-features = false, features = ["serde"], git = "https://github.com/autonomys/frontier", rev = "f80f9e2bad338f3bf3854b256b3c4edea23e5968" }
1616
frame-support = { default-features = false, git = "https://github.com/subspace/polkadot-sdk", rev = "94a1a8143a89bbe9f938c1939ff68abc1519a305" }
1717
frame-system = { default-features = false, git = "https://github.com/subspace/polkadot-sdk", rev = "94a1a8143a89bbe9f938c1939ff68abc1519a305" }
1818
parity-scale-codec = { version = "3.6.12", default-features = false, features = ["derive"] }

domains/runtime/evm/Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ codec = { package = "parity-scale-codec", version = "3.6.12", default-features =
2121
domain-check-weight = { version = "0.1.0", path = "../../pallets/domain-check-weight", default-features = false }
2222
domain-pallet-executive = { version = "0.1.0", path = "../../pallets/executive", default-features = false }
2323
domain-runtime-primitives = { version = "0.1.0", path = "../../primitives/runtime", default-features = false }
24-
# just here to activate the serde feature
25-
fp-account = { version = "1.0.0-dev", default-features = false, features = ["serde"], git = "https://github.com/autonomys/frontier", rev = "f80f9e2bad338f3bf3854b256b3c4edea23e5968" }
2624
fp-rpc = { version = "3.0.0-dev", default-features = false, git = "https://github.com/autonomys/frontier", rev = "f80f9e2bad338f3bf3854b256b3c4edea23e5968" }
2725
fp-self-contained = { version = "1.0.0-dev", default-features = false, features = ["serde"], git = "https://github.com/autonomys/frontier", rev = "f80f9e2bad338f3bf3854b256b3c4edea23e5968" }
2826
frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/subspace/polkadot-sdk", rev = "94a1a8143a89bbe9f938c1939ff68abc1519a305" }
@@ -86,7 +84,6 @@ std = [
8684
"domain-check-weight/std",
8785
"domain-pallet-executive/std",
8886
"domain-runtime-primitives/std",
89-
"fp-account/std",
9087
"fp-rpc/std",
9188
"fp-self-contained/std",
9289
"frame-benchmarking?/std",

domains/test/runtime/evm/Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ domain-check-weight = { version = "0.1.0", path = "../../../pallets/domain-check
2222
domain-pallet-executive = { version = "0.1.0", path = "../../../pallets/executive", default-features = false }
2323
domain-test-primitives = { version = "0.1.0", path = "../../primitives", default-features = false }
2424
domain-runtime-primitives = { version = "0.1.0", path = "../../../primitives/runtime", default-features = false }
25-
# just here to activate the serde feature
26-
fp-account = { version = "1.0.0-dev", default-features = false, features = ["serde"], git = "https://github.com/autonomys/frontier", rev = "f80f9e2bad338f3bf3854b256b3c4edea23e5968" }
2725
fp-rpc = { version = "3.0.0-dev", default-features = false, git = "https://github.com/autonomys/frontier", rev = "f80f9e2bad338f3bf3854b256b3c4edea23e5968" }
2826
fp-self-contained = { version = "1.0.0-dev", default-features = false, features = ["serde"], git = "https://github.com/autonomys/frontier", rev = "f80f9e2bad338f3bf3854b256b3c4edea23e5968" }
2927
frame-support = { default-features = false, git = "https://github.com/subspace/polkadot-sdk", rev = "94a1a8143a89bbe9f938c1939ff68abc1519a305" }
@@ -83,7 +81,6 @@ std = [
8381
"domain-pallet-executive/std",
8482
"domain-runtime-primitives/std",
8583
"domain-test-primitives/std",
86-
"fp-account/std",
8784
"fp-rpc/std",
8885
"fp-self-contained/std",
8986
"frame-support/std",

0 commit comments

Comments
 (0)