[package]
edition = "2021"
name = "eot"
version = "0.2.0"
authors = ["alake"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "EVM opcodes library with fork-aware gas costs, static metadata, and bytecode analysis"
homepage = "https://github.com/g4titanx/eot"
documentation = "https://docs.rs/eot"
readme = "README.md"
keywords = [
"ethereum",
"evm",
"opcodes",
"blockchain",
"smart-contracts",
]
categories = ["cryptography::cryptocurrencies"]
license = "MIT"
repository = "https://github.com/g4titanx/eot"
[features]
default = []
serde = ["dep:serde"]
unified-opcodes = []
[lib]
name = "eot"
path = "src/lib.rs"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[[example]]
name = "gas_analysis"
path = "examples/gas_analysis.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "unified_opcodes"
path = "tests/unified_opcodes.rs"
[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true