[package]
edition = "2021"
rust-version = "1.90"
name = "bal-layout"
version = "0.3.0"
authors = ["Artem <artemmartyhin@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "solc storageLayout -> slots and typed values. Knows nothing about storage backends."
homepage = "https://github.com/artemmartyhin/balq"
readme = "README.md"
keywords = [
"ethereum",
"eip-7928",
"storage",
"archive",
"bal",
]
categories = [
"cryptography::cryptocurrencies",
"database",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/artemmartyhin/balq"
[package.metadata.docs.rs]
all-features = true
[lib]
name = "bal_layout"
path = "src/lib.rs"
[dependencies.alloy-primitives]
version = "1"
features = ["rlp"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[lints.clippy]
expect_used = "warn"
unwrap_used = "warn"
[lints.rust]
missing_docs = "warn"
unsafe_code = "deny"