[package]
edition = "2021"
name = "jam-null-authorizer"
version = "0.1.22"
authors = ["Parity Technologies <admin@parity.io>"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A JAM authorizer which always authorizes"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/paritytech/polkajam.git"
[features]
tiny = [
"jam-types/tiny",
"jam-pvm-common/tiny",
]
[lib]
name = "jam_null_authorizer"
crate-type = ["cdylib"]
path = "src/lib.rs"
[dependencies.jam-pvm-common]
version = "0.1.22"
features = [
"logging",
"authorizer",
]
default-features = false
[dependencies.jam-types]
version = "0.1.22"
default-features = false
[dependencies.polkavm-derive]
version = "0.24.0"
features = []
default-features = false
[lints.clippy]
fn_to_numeric_cast_any = "deny"
new_without_default = "allow"
redundant_closure = "allow"
result_unit_err = "allow"
too_many_arguments = "allow"
type_complexity = "allow"
unwrap_used = "deny"
use_debug = "deny"
[lints.clippy.correctness]
level = "deny"
priority = -1