Files
tycho-protocol-sdk/substreams/Cargo.toml
Zizou 39934347b3 refactor(substreams): remove workspace dependencies (#129)
This is to make each substreams completely independent, before when we would need a new version of a dependency, we would have to change it for every crate which would lead to a change of every substreams module hash. We want to make every Substreams completely independant and frozen, this also helps to maintain a correct versionning.

Co-authored-by: zizou <111426680+flopell@users.noreply.github.com>
2025-01-07 16:04:17 +00:00

20 lines
382 B
TOML

[workspace]
members = [
"ethereum-balancer-v2",
"ethereum-curve",
"crates/tycho-substreams",
"crates/substreams-helper",
"ethereum-ambient",
"ethereum-uniswap-v2",
"ethereum-uniswap-v3",
"ethereum-sfrax",
"ethereum-sfraxeth",
"ethereum-uniswap-v3-logs-only",
]
resolver = "2"
[profile.release]
lto = true
opt-level = 's'
strip = "debuginfo"