@@ -20,45 +20,52 @@ publish = false
2020
2121[workspace .dependencies ]
2222# reth
23- reth = { git = " https://github.com/paradigmxyz/reth" }
24- reth-chainspec = { git = " https://github.com/paradigmxyz/reth" }
25- reth-discv5 = { git = " https://github.com/paradigmxyz/reth" }
26- reth-execution-errors = { git = " https://github.com/paradigmxyz/reth" }
27- reth-execution-types = { git = " https://github.com/paradigmxyz/reth" }
28- reth-exex = { git = " https://github.com/paradigmxyz/reth" , features = [" serde" ] }
29- reth-eth-wire = { git = " https://github.com/paradigmxyz/reth" }
30- reth-evm = { git = " https://github.com/paradigmxyz/reth" }
31- reth-network = { git = " https://github.com/paradigmxyz/reth" , features = [" test-utils" ] }
32- reth-network-api = { git = " https://github.com/paradigmxyz/reth" }
33- reth-network-peers = { git = " https://github.com/paradigmxyz/reth" }
34- reth-node-api = { git = " https://github.com/paradigmxyz/reth" }
35- reth-node-ethereum = { git = " https://github.com/paradigmxyz/reth" }
36- reth-primitives = { git = " https://github.com/paradigmxyz/reth" }
37- reth-provider = { git = " https://github.com/paradigmxyz/reth" }
38- reth-revm = { git = " https://github.com/paradigmxyz/reth" }
39- reth-transaction-pool = { git = " https://github.com/paradigmxyz/reth" }
40- reth-tracing = { git = " https://github.com/paradigmxyz/reth" }
23+ reth = { git = " https://github.com/paradigmxyz/reth" , tag = " v1.1.3 " }
24+ reth-chainspec = { git = " https://github.com/paradigmxyz/reth" , tag = " v1.1.3 " }
25+ reth-discv5 = { git = " https://github.com/paradigmxyz/reth" , tag = " v1.1.3 " }
26+ reth-execution-errors = { git = " https://github.com/paradigmxyz/reth" , tag = " v1.1.3 " }
27+ reth-execution-types = { git = " https://github.com/paradigmxyz/reth" , tag = " v1.1.3 " }
28+ reth-exex = { git = " https://github.com/paradigmxyz/reth" , tag = " v1.1.3 " , features = [" serde" ] }
29+ reth-eth-wire = { git = " https://github.com/paradigmxyz/reth" , tag = " v1.1.3 " }
30+ reth-evm = { git = " https://github.com/paradigmxyz/reth" , tag = " v1.1.3 " }
31+ reth-network = { git = " https://github.com/paradigmxyz/reth" , tag = " v1.1.3 " , features = [" test-utils" ] }
32+ reth-network-api = { git = " https://github.com/paradigmxyz/reth" , tag = " v1.1.3 " }
33+ reth-network-peers = { git = " https://github.com/paradigmxyz/reth" , tag = " v1.1.3 " }
34+ reth-node-api = { git = " https://github.com/paradigmxyz/reth" , tag = " v1.1.3 " }
35+ reth-node-ethereum = { git = " https://github.com/paradigmxyz/reth" , tag = " v1.1.3 " }
36+ reth-primitives = { git = " https://github.com/paradigmxyz/reth" , tag = " v1.1.3 " }
37+ reth-provider = { git = " https://github.com/paradigmxyz/reth" , tag = " v1.1.3 " }
38+ reth-revm = { git = " https://github.com/paradigmxyz/reth" , tag = " v1.1.3 " }
39+ reth-transaction-pool = { git = " https://github.com/paradigmxyz/reth" , tag = " v1.1.3 " }
40+ reth-tracing = { git = " https://github.com/paradigmxyz/reth" , tag = " v1.1.3 " }
4141
4242# alloy
43- alloy-eips = { version = " 0.5.4 " , default-features = false }
44- alloy-consensus = { version = " 0.5.4 " , default-features = false }
45- alloy-primitives = { version = " 0.8.9 " , default-features = false }
43+ alloy-eips = { version = " 0.7 " , default-features = false }
44+ alloy-genesis = { version = " 0.7 " , default-features = false }
45+ alloy-consensus = { version = " 0.7 " , default-features = false }
4646alloy-rlp = " 0.3.4"
47- alloy-rpc-types = { version = " 0.5.4 " , features = [
47+ alloy-rpc-types = { version = " 0.7 " , features = [
4848 " eth" ,
4949], default-features = false }
50- alloy-signer = { version = " 0.5.4" , default-features = false }
51- alloy-signer-local = { version = " 0.5.4" , default-features = false }
50+ alloy-signer = { version = " 0.7" , default-features = false }
51+ alloy-signer-local = { version = " 0.7" , default-features = false }
52+
53+ alloy-primitives = { version = " 0.8" , default-features = false }
5254alloy-sol-types = { version = " 0.8" , features = [" json" ] }
5355
5456discv5 = " 0.8"
57+ enr = " 0.12.1"
58+ secp256k1 = { version = " 0.29" , default-features = false , features = [
59+ " global-context" ,
60+ " recovery" ,
61+ ] }
5562
5663# async
5764futures = " 0.3"
5865futures-util = " 0.3"
5966tokio = { version = " 1.0" , features = [" full" ] }
6067tokio-stream = " 0.1"
61- tokio-tungstenite = { version = " 0.23 " , features = [" native-tls" ] }
68+ tokio-tungstenite = { version = " 0.24 " , features = [" native-tls" ] }
6269
6370# serde
6471serde = " 1"
@@ -68,5 +75,5 @@ serde_json = "1"
6875eyre = " 0.6"
6976
7077# testing
71- reth-exex-test-utils = { git = " https://github.com/paradigmxyz/reth" }
72- reth-testing-utils = { git = " https://github.com/paradigmxyz/reth" }
78+ reth-exex-test-utils = { git = " https://github.com/paradigmxyz/reth" , tag = " v1.1.3 " }
79+ reth-testing-utils = { git = " https://github.com/paradigmxyz/reth" , tag = " v1.1.3 " }
0 commit comments