* fix: index two crypto factory * ci: make clippy happy --------- Co-authored-by: zizou <111426680+flopell@users.noreply.github.com>
33 lines
764 B
TOML
33 lines
764 B
TOML
[package]
|
|
name = "ethereum-curve"
|
|
version = "0.3.1"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "ethereum_curve"
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
substreams.workspace = true
|
|
substreams-ethereum.workspace = true
|
|
prost.workspace = true
|
|
prost-types.workspace = true
|
|
hex-literal.workspace = true
|
|
ethabi.workspace = true
|
|
hex.workspace = true
|
|
bytes = "1.5.0"
|
|
anyhow = "1.0.75"
|
|
num-bigint = "0.4.4"
|
|
tycho-substreams.workspace = true
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_qs = "0.13.0"
|
|
itertools = "0.13.0"
|
|
|
|
[build-dependencies]
|
|
anyhow = "1"
|
|
substreams-ethereum = "0.9"
|
|
|
|
# Required so that ethabi > ethereum-types build correctly under wasm32-unknown-unknown
|
|
[target.wasm32-unknown-unknown.dependencies]
|
|
getrandom = { version = "0.2", features = ["custom"] }
|