Skip to content

Commit

Permalink
Remove experimental feature
Browse files Browse the repository at this point in the history
  • Loading branch information
aurexav committed Jan 24, 2025
1 parent d794f71 commit 55c532a
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 19 deletions.
30 changes: 15 additions & 15 deletions substrate/frame/nis/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "pallet-nis"
version = "28.0.0"
authors.workspace = true
edition.workspace = true
license = "Apache-2.0"
homepage.workspace = true
authors.workspace = true
description = "FRAME pallet for rewarding account freezing."
edition.workspace = true
homepage.workspace = true
license = "Apache-2.0"
name = "pallet-nis"
readme = "README.md"
repository.workspace = true
description = "FRAME pallet for rewarding account freezing."
readme = "README.md"
version = "28.0.0"

[lints]
workspace = true
Expand All @@ -16,25 +16,25 @@ workspace = true
targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
codec = { features = ["derive"], workspace = true }
codec = { features = ["derive"], workspace = true }
frame = { workspace = true, features = ["runtime"] }
scale-info = { features = ["derive"], workspace = true }
frame = { workspace = true, features = ["experimental", "runtime"] }

[dev-dependencies]
pallet-balances = { workspace = true, default-features = true }
sp-io = { workspace = true, default-features = true }
sp-io = { workspace = true, default-features = true }

[features]
default = ["std"]
runtime-benchmarks = [
"frame/runtime-benchmarks",
"pallet-balances/runtime-benchmarks",
]
std = [
"codec/std",
"frame/std",
"scale-info/std",
]
runtime-benchmarks = [
"frame/runtime-benchmarks",
"pallet-balances/runtime-benchmarks",
]
try-runtime = [
"frame/try-runtime",
"pallet-balances/try-runtime",
Expand Down
5 changes: 1 addition & 4 deletions substrate/frame/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -546,10 +546,7 @@ pub mod arithmetic {

/// All token related types and traits.
pub mod token {
pub use frame_support::traits::{
tokens::*,
OnUnbalanced,
};
pub use frame_support::traits::{tokens::*, OnUnbalanced};
}

/// All derive macros used in frame.
Expand Down

0 comments on commit 55c532a

Please sign in to comment.