sov-chain-state 0.3.0

A Sovereign SDK module for storing a rollup's historical state
[package]
name = "sov-chain-state"
authors = { workspace = true }
description = "A Sovereign SDK module for storing a rollup's historical state"
edition = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
repository = { workspace = true }

version = { workspace = true }
readme = "README.md"
resolver = "2"

[dependencies]
anyhow = { workspace = true }
borsh = { workspace = true, features = ["rc"] }
serde = { workspace = true }
serde_json = { workspace = true, optional = true }
jsonrpsee = { workspace = true, features = ["macros", "client-core", "server"], optional = true }

sov-modules-api = { path = "../../sov-modules-api", version = "0.3" }
sov-state = { path = "../../sov-state", version = "0.3" }
sov-rollup-interface = { path = "../../../rollup-interface", version = "0.3" }

[dev-dependencies]
tempfile = { workspace = true }
sov-data-generators = { path = "../../utils/sov-data-generators" }
sov-chain-state = { path = ".", features = ["native"] }
sov-rollup-interface = { path = "../../../rollup-interface", features = ["mocks"] }


[features]
default = []
native = ["serde_json", "jsonrpsee", "sov-state/native", "sov-modules-api/native"]