[package]
edition = "2021"
name = "sc-client-db"
version = "0.52.0"
authors = ["Parity Technologies <admin@parity.io>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Client backend that uses RocksDB database as storage."
homepage = "https://paritytech.github.io/polkadot-sdk/"
readme = "README.md"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
repository = "https://github.com/paritytech/polkadot-sdk.git"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[features]
default = []
jemalloc-allocator = ["kvdb-rocksdb?/jemalloc"]
rocksdb = [
"kvdb-rocksdb",
"sp-database/rocksdb",
]
runtime-benchmarks = ["sp-runtime/runtime-benchmarks"]
test-helpers = []
[lib]
name = "sc_client_db"
path = "src/lib.rs"
bench = false
[[bench]]
name = "state_access"
path = "benches/state_access.rs"
harness = false
[dependencies.codec]
version = "3.7.5"
features = ["derive"]
default-features = true
package = "parity-scale-codec"
[dependencies.hash-db]
version = "0.16.0"
default-features = true
[dependencies.kvdb]
version = "0.13.0"
[dependencies.kvdb-memorydb]
version = "0.13.0"
[dependencies.kvdb-rocksdb]
version = "0.21.0"
optional = true
[dependencies.linked-hash-map]
version = "0.5.4"
[dependencies.log]
version = "0.4.22"
default-features = true
[dependencies.parity-db]
version = "0.4.12"
[dependencies.parking_lot]
version = "0.12.1"
default-features = true
[dependencies.prometheus-endpoint]
version = "0.17.7"
default-features = true
package = "substrate-prometheus-endpoint"
[dependencies.sc-client-api]
version = "45.0.0"
default-features = true
[dependencies.sc-state-db]
version = "0.42.0"
default-features = true
[dependencies.schnellru]
version = "0.2.3"
[dependencies.sp-arithmetic]
version = "28.0.1"
default-features = true
[dependencies.sp-blockchain]
version = "44.0.0"
default-features = true
[dependencies.sp-core]
version = "40.0.0"
default-features = true
[dependencies.sp-database]
version = "10.0.1"
default-features = true
[dependencies.sp-runtime]
version = "46.0.0"
default-features = true
[dependencies.sp-state-machine]
version = "0.50.0"
default-features = true
[dependencies.sp-trie]
version = "43.0.0"
default-features = true
[dependencies.sysinfo]
version = "0.30"
[dev-dependencies.array-bytes]
version = "6.2.2"
default-features = true
[dev-dependencies.criterion]
version = "0.5.1"
default-features = true
[dev-dependencies.kvdb-rocksdb]
version = "0.21.0"
[dev-dependencies.rand]
version = "0.8.5"
default-features = true
[dev-dependencies.tempfile]
version = "3.8.1"
[lints.clippy.all]
level = "allow"
priority = 0
[lints.clippy.bind_instead_of_map]
level = "allow"
priority = 2
[lints.clippy.borrowed-box]
level = "allow"
priority = 2
[lints.clippy.complexity]
level = "warn"
priority = 1
[lints.clippy.correctness]
level = "warn"
priority = 1
[lints.clippy.default_constructed_unit_structs]
level = "allow"
priority = 2
[lints.clippy.derivable_impls]
level = "allow"
priority = 2
[lints.clippy.eq_op]
level = "allow"
priority = 2
[lints.clippy.erasing_op]
level = "allow"
priority = 2
[lints.clippy.extra-unused-type-parameters]
level = "allow"
priority = 2
[lints.clippy.identity-op]
level = "allow"
priority = 2
[lints.clippy.if-same-then-else]
level = "allow"
priority = 2
[lints.clippy.needless-lifetimes]
level = "allow"
priority = 2
[lints.clippy.needless_option_as_deref]
level = "allow"
priority = 2
[lints.clippy.nonminimal-bool]
level = "allow"
priority = 2
[lints.clippy.option-map-unit-fn]
level = "allow"
priority = 2
[lints.clippy.stable_sort_primitive]
level = "allow"
priority = 2
[lints.clippy.too-many-arguments]
level = "allow"
priority = 2
[lints.clippy.type_complexity]
level = "allow"
priority = 2
[lints.clippy.unit_arg]
level = "allow"
priority = 2
[lints.clippy.unnecessary_cast]
level = "allow"
priority = 2
[lints.clippy.useless_conversion]
level = "allow"
priority = 2
[lints.clippy.while_immutable_condition]
level = "allow"
priority = 2
[lints.clippy.zero-prefixed-literal]
level = "allow"
priority = 2
[lints.rust.suspicious_double_ref_op]
level = "allow"
priority = 2
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
'cfg(build_opt_level, values("3"))',
'cfg(build_profile, values("debug", "release"))',
"cfg(enable_alloc_error_handler)",
"cfg(fuzzing)",
"cfg(ignore_flaky_test)",
"cfg(substrate_runtime)",
]