Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Tx ext stage 2: 2/4] Introduce #[pallet::authorize(...)] macro attribute and AuthorizeCall system transaction extension #6324

Open
wants to merge 23 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 8 additions & 11 deletions substrate/frame/support/procedural/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,18 +38,14 @@ codec = { features = [
"max-encoded-len",
], workspace = true }
regex = { workspace = true }
sp-metadata-ir = { workspace = true, features = ["std"] }
sp-metadata-ir = { workspace = true }
scale-info = { features = ["derive"], workspace = true }
sp-core = { workspace = true, features = ["std"] }
sp-io = { workspace = true, features = ["std"] }
sp-runtime = { features = [
"runtime-benchmarks",
"serde",
"std",
], workspace = true }
frame-system = { workspace = true, features = ["runtime-benchmarks", "std"] }
frame-support = { workspace = true, features = ["runtime-benchmarks", "std"] }
frame-benchmarking = { workspace = true, features = ["std"] }
sp-core = { workspace = true }
sp-io = { workspace = true }
sp-runtime = { features = ["runtime-benchmarks", "serde"], workspace = true }
frame-system = { workspace = true, features = ["runtime-benchmarks"] }
frame-support = { workspace = true, features = ["runtime-benchmarks"] }
gui1117 marked this conversation as resolved.
Show resolved Hide resolved
frame-benchmarking = { workspace = true }
pretty_assertions = { workspace = true }
static_assertions = { workspace = true }

Expand All @@ -65,6 +61,7 @@ std = [
"sp-io/std",
"sp-metadata-ir/std",
"sp-runtime/std",
"frame-benchmarking/std",
]
no-metadata-docs = []
experimental = []
Expand Down
Loading