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>
This commit is contained in:
@@ -8,17 +8,17 @@ homepage = "https://messari.io/"
|
||||
repository = "https://github.com/messari/substreams/substreams-helper"
|
||||
|
||||
[dependencies]
|
||||
ethabi.workspace = true
|
||||
hex.workspace = true
|
||||
hex-literal.workspace = true
|
||||
prost.workspace = true
|
||||
prost-types.workspace = true
|
||||
ethabi = "18.0.0"
|
||||
hex = "0.4.3"
|
||||
hex-literal = "0.4.1"
|
||||
prost = "0.11"
|
||||
prost-types = "0.12.3"
|
||||
num-bigint = "0.4"
|
||||
bigdecimal = "0.3"
|
||||
pad = "0.1"
|
||||
tiny-keccak = { version = "2.0", features = ["keccak"] }
|
||||
substreams = { workspace = true }
|
||||
substreams-ethereum = { workspace = true }
|
||||
substreams = "0.5.22"
|
||||
substreams-ethereum = "0.9.9"
|
||||
thiserror = "1.0.37"
|
||||
downcast-rs = "1.2.0"
|
||||
substreams-entity-change = "1.1.0"
|
||||
@@ -26,4 +26,4 @@ base64 = "0.13.0"
|
||||
|
||||
|
||||
[build-dependencies]
|
||||
anyhow.workspace = true
|
||||
anyhow = "1.0.75"
|
||||
|
||||
@@ -4,12 +4,12 @@ version = "0.2.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
substreams-ethereum.workspace = true
|
||||
substreams.workspace = true
|
||||
prost.workspace = true
|
||||
hex.workspace = true
|
||||
substreams-ethereum = "0.9.9"
|
||||
substreams = "0.5.22"
|
||||
prost = "0.11"
|
||||
hex = "0.4.3"
|
||||
itertools = "0.12.0"
|
||||
ethabi.workspace = true
|
||||
ethabi = "18.0.0"
|
||||
num-bigint = "0.4.4"
|
||||
serde.workspace = true
|
||||
serde_json.workspace = true
|
||||
serde = "1.0.204"
|
||||
serde_json = "1.0.120"
|
||||
|
||||
Reference in New Issue
Block a user