diff --git a/Cargo.lock b/Cargo.lock index 50d1197792..4792d18448 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3245,7 +3245,6 @@ dependencies = [ "domain-check-weight", "domain-pallet-executive", "domain-runtime-primitives", - "fp-account", "fp-rpc", "fp-self-contained", "frame-benchmarking", @@ -3305,7 +3304,6 @@ dependencies = [ "domain-pallet-executive", "domain-runtime-primitives", "domain-test-primitives", - "fp-account", "fp-rpc", "fp-self-contained", "frame-support", diff --git a/domains/primitives/runtime/Cargo.toml b/domains/primitives/runtime/Cargo.toml index 77348e0659..d026f0735b 100644 --- a/domains/primitives/runtime/Cargo.toml +++ b/domains/primitives/runtime/Cargo.toml @@ -12,7 +12,7 @@ description = "Common primitives of subspace domain runtime" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -fp-account = { version = "1.0.0-dev", default-features = false, git = "https://github.com/autonomys/frontier", rev = "f80f9e2bad338f3bf3854b256b3c4edea23e5968" } +fp-account = { version = "1.0.0-dev", default-features = false, features = ["serde"], git = "https://github.com/autonomys/frontier", rev = "f80f9e2bad338f3bf3854b256b3c4edea23e5968" } frame-support = { default-features = false, git = "https://github.com/subspace/polkadot-sdk", rev = "94a1a8143a89bbe9f938c1939ff68abc1519a305" } frame-system = { default-features = false, git = "https://github.com/subspace/polkadot-sdk", rev = "94a1a8143a89bbe9f938c1939ff68abc1519a305" } parity-scale-codec = { version = "3.6.12", default-features = false, features = ["derive"] } diff --git a/domains/runtime/evm/Cargo.toml b/domains/runtime/evm/Cargo.toml index bab1a7ed89..8b3ab73258 100644 --- a/domains/runtime/evm/Cargo.toml +++ b/domains/runtime/evm/Cargo.toml @@ -21,8 +21,6 @@ codec = { package = "parity-scale-codec", version = "3.6.12", default-features = domain-check-weight = { version = "0.1.0", path = "../../pallets/domain-check-weight", default-features = false } domain-pallet-executive = { version = "0.1.0", path = "../../pallets/executive", default-features = false } domain-runtime-primitives = { version = "0.1.0", path = "../../primitives/runtime", default-features = false } -# just here to activate the serde feature -fp-account = { version = "1.0.0-dev", default-features = false, features = ["serde"], git = "https://github.com/autonomys/frontier", rev = "f80f9e2bad338f3bf3854b256b3c4edea23e5968" } fp-rpc = { version = "3.0.0-dev", default-features = false, git = "https://github.com/autonomys/frontier", rev = "f80f9e2bad338f3bf3854b256b3c4edea23e5968" } fp-self-contained = { version = "1.0.0-dev", default-features = false, features = ["serde"], git = "https://github.com/autonomys/frontier", rev = "f80f9e2bad338f3bf3854b256b3c4edea23e5968" } frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/subspace/polkadot-sdk", rev = "94a1a8143a89bbe9f938c1939ff68abc1519a305" } @@ -86,7 +84,6 @@ std = [ "domain-check-weight/std", "domain-pallet-executive/std", "domain-runtime-primitives/std", - "fp-account/std", "fp-rpc/std", "fp-self-contained/std", "frame-benchmarking?/std", diff --git a/domains/test/runtime/evm/Cargo.toml b/domains/test/runtime/evm/Cargo.toml index 8590276993..f642cf7f7f 100644 --- a/domains/test/runtime/evm/Cargo.toml +++ b/domains/test/runtime/evm/Cargo.toml @@ -22,8 +22,6 @@ domain-check-weight = { version = "0.1.0", path = "../../../pallets/domain-check domain-pallet-executive = { version = "0.1.0", path = "../../../pallets/executive", default-features = false } domain-test-primitives = { version = "0.1.0", path = "../../primitives", default-features = false } domain-runtime-primitives = { version = "0.1.0", path = "../../../primitives/runtime", default-features = false } -# just here to activate the serde feature -fp-account = { version = "1.0.0-dev", default-features = false, features = ["serde"], git = "https://github.com/autonomys/frontier", rev = "f80f9e2bad338f3bf3854b256b3c4edea23e5968" } fp-rpc = { version = "3.0.0-dev", default-features = false, git = "https://github.com/autonomys/frontier", rev = "f80f9e2bad338f3bf3854b256b3c4edea23e5968" } fp-self-contained = { version = "1.0.0-dev", default-features = false, features = ["serde"], git = "https://github.com/autonomys/frontier", rev = "f80f9e2bad338f3bf3854b256b3c4edea23e5968" } frame-support = { default-features = false, git = "https://github.com/subspace/polkadot-sdk", rev = "94a1a8143a89bbe9f938c1939ff68abc1519a305" } @@ -83,7 +81,6 @@ std = [ "domain-pallet-executive/std", "domain-runtime-primitives/std", "domain-test-primitives/std", - "fp-account/std", "fp-rpc/std", "fp-self-contained/std", "frame-support/std",