[package] name = "substreams-ethereum-explorer" version = "0.1.0" description = "Substreams showcasing the building blocks of Ethereum" edition = "2021" repository = "https://github.com/streamingfast/substreams-explorers" license = "Apache 2.0" [lib] name = "substreams" crate-type = ["cdylib"] [dependencies] ethabi = "17" hex-literal = "0.3" num-bigint = "0.4" prost = "0.11" # Use latest from https://crates.io/crates/substreams substreams = "0.5" # Use latest from https://crates.io/crates/substreams-ethereum substreams-ethereum = "0.9" serde_qs = "0.12.0" serde = { version = "1.0", features = ["derive"] } anyhow = "1.0" # Required so that ethabi > ethereum-types build correctly under wasm32-unknown-unknown [target.wasm32-unknown-unknown.dependencies] getrandom = { version = "0.2", features = ["custom"] } [profile.release] lto = true opt-level = 's' strip = "debuginfo"