[package]
name = "blockchain-runtime"
version = "0.1.0"
edition = "2021"
authors = ["Red Asgard <hello@redasgard.com>"]
license = "MIT"
description = "Blockchain-agnostic runtime abstraction for dynamic analysis, testing, and simulation"
repository = "https://github.com/redasgard/blockchain-runtime"
keywords = ["blockchain", "runtime", "simulation", "testing", "ethereum"]
categories = ["development-tools", "simulation"]
readme = "README.md"
[dependencies]
tokio = { version = "1.0", features = ["full"] }
async-trait = "0.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
anyhow = "1.0"
thiserror = "1.0"
tracing = { version = "0.1", optional = true }
[dev-dependencies]
[features]
default = []
tracing = ["dep:tracing"]
[lib]
name = "blockchain_runtime"
path = "src/lib.rs"