-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
26 lines (23 loc) · 1.04 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[workspace]
members = ["abigen", "abigen-tests", "core", "derive", "substreams-ethereum"]
resolver = "2"
[workspace.package]
version = "0.10.1"
edition = "2021"
description = "Substreams development kit for Ethereum chains, contains Firehose Block model and helpers as well as utilities for Ethereum ABI encoding/decoding."
homepage = "https://substreams.streamingfast.io/"
repository = "https://github.com/streamingfast/substreams-ethereum/tree/develop/substreams-ethereum"
license = "Apache-2.0"
readme = "README.md"
keywords = ["substreams", "ethereum", "streamingfast", "firehose", "thegraph"]
categories = ["api-bindings", "external-ffi-bindings", "wasm"]
rust-version = "1.60"
[workspace.dependencies]
substreams-ethereum = { version = "0.10.1", path = "./substreams-ethereum" }
substreams-ethereum-abigen = { version = "0.10.1", path = "./abigen" }
substreams-ethereum-core = { version = "0.10.1", path = "./core" }
substreams-ethereum-derive = { version = "0.10.1", path = "./derive" }
[profile.release]
lto = true
opt-level = 's'
strip = "debuginfo"