mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 16:57:58 +00:00
232a30fdb4
* checkpoint before removing CT from change trie * before trie backend without tx * undo * Started no transaction, but would need using a different root calculation method, out of the scope of this pr, will roll back. * Remove NoTransaction. * partially address review. dummy stats implementation for no_std. * Remove ChangeTrieOverlay. * modified function * Remove witness_ext * need noops changes root * update from cumulus branch * line break * remove warning * line break * From review: renamings and stats active in no std (except time). * include cache, exclude change trie cache with individual temporary bad looking no_std check * little test * fuse imports and filter_map prepare_extrinsics_input_inner fold. * put back ExtInner into Ext, awkward double proto for new function. * Apply suggestions from code review * Update primitives/state-machine/Cargo.toml Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>
29 lines
855 B
TOML
29 lines
855 B
TOML
[package]
|
|
name = "sp-externalities"
|
|
version = "0.8.0-rc6"
|
|
license = "Apache-2.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
homepage = "https://substrate.dev"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "Substrate externalities abstraction"
|
|
documentation = "https://docs.rs/sp-externalities"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
sp-storage = { version = "2.0.0-rc6", path = "../storage", default-features = false }
|
|
sp-std = { version = "2.0.0-rc6", path = "../std", default-features = false }
|
|
environmental = { version = "1.1.1", default-features = false }
|
|
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"environmental/std",
|
|
"sp-std/std",
|
|
"sp-storage/std",
|
|
]
|