Skip to content

Commit 0492be1

Browse files
committed
pallet-revive: remove related crates from umbrella
Signed-off-by: Iulian Barbu <[email protected]>
1 parent 4bf0998 commit 0492be1

File tree

8 files changed

+17
-57
lines changed

8 files changed

+17
-57
lines changed

Cargo.lock

-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

substrate/frame/revive/Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ include = ["CHANGELOG.md", "README.md", "build.rs", "src/**/*"]
1313
[lints]
1414
workspace = true
1515

16+
[package.metadata.polkadot-sdk]
17+
exclude-from-umbrella = true
18+
1619
[package.metadata.docs.rs]
1720
targets = ["x86_64-unknown-linux-gnu"]
1821

substrate/frame/revive/mock-network/Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ repository.workspace = true
99
description = "A mock network for testing pallet-revive."
1010
publish = false
1111

12+
[package.metadata.polkadot-sdk]
13+
exclude-from-umbrella = true
14+
1215
[lints]
1316
workspace = true
1417

substrate/frame/revive/proc-macro/Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ homepage.workspace = true
88
repository.workspace = true
99
description = "Procedural macros used in pallet_revive"
1010

11+
[package.metadata.polkadot-sdk]
12+
exclude-from-umbrella = true
13+
1114
[lints]
1215
workspace = true
1316

substrate/frame/revive/rpc/Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ homepage.workspace = true
88
repository.workspace = true
99
description = "An Ethereum JSON-RPC server for pallet-revive."
1010

11+
[package.metadata.polkadot-sdk]
12+
exclude-from-umbrella = true
13+
1114
[[bin]]
1215
name = "eth-rpc"
1316
path = "src/main.rs"

substrate/frame/revive/uapi/Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ homepage.workspace = true
88
repository.workspace = true
99
description = "Exposes all the host functions that a contract can import."
1010

11+
[package.metadata.polkadot-sdk]
12+
exclude-from-umbrella = true
13+
1114
[lints]
1215
workspace = true
1316

umbrella/Cargo.toml

+2-29
Large diffs are not rendered by default.

umbrella/src/lib.rs

-24
Original file line numberDiff line numberDiff line change
@@ -576,30 +576,6 @@ pub use pallet_referenda;
576576
#[cfg(feature = "pallet-remark")]
577577
pub use pallet_remark;
578578

579-
/// FRAME pallet for PolkaVM contracts.
580-
#[cfg(feature = "pallet-revive")]
581-
pub use pallet_revive;
582-
583-
/// An Ethereum JSON-RPC server for pallet-revive.
584-
#[cfg(feature = "pallet-revive-eth-rpc")]
585-
pub use pallet_revive_eth_rpc;
586-
587-
/// Fixtures for testing and benchmarking.
588-
#[cfg(feature = "pallet-revive-fixtures")]
589-
pub use pallet_revive_fixtures;
590-
591-
/// A mock network for testing pallet-revive.
592-
#[cfg(feature = "pallet-revive-mock-network")]
593-
pub use pallet_revive_mock_network;
594-
595-
/// Procedural macros used in pallet_revive.
596-
#[cfg(feature = "pallet-revive-proc-macro")]
597-
pub use pallet_revive_proc_macro;
598-
599-
/// Exposes all the host functions that a contract can import.
600-
#[cfg(feature = "pallet-revive-uapi")]
601-
pub use pallet_revive_uapi;
602-
603579
/// FRAME root offences pallet.
604580
#[cfg(feature = "pallet-root-offences")]
605581
pub use pallet_root_offences;

0 commit comments

Comments
 (0)