From 3d92ae6c1833d9fc9f4d179d8488d3c02742f9f3 Mon Sep 17 00:00:00 2001 From: Joseph Livesey Date: Tue, 9 Jul 2024 17:59:59 -0400 Subject: [PATCH] refactor(Cargo.toml): alphabetize dependencies --- Cargo.toml | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f8f30f1..17edec1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,24 +9,23 @@ edition = "2021" alloy-primitives = "0.7.7" alloy-rlp = "0.3.7" anyhow = "1.0.72" +bincode = "1.3.3" clap = { version = "4.3.21", features = ["derive"] } -revm-primitives = "=1.1.2" +ethereum-types = "=0.14.1" +prost = "0.12.3" +prost-types = "0.12.3" rand = "0.8.5" -reth-trie-common = { git = "https://github.com/paradigmxyz/reth", version = "1.0.1", tag = "v1.0.1" } +rayon = "1.8.0" reth-primitives = { git = "https://github.com/paradigmxyz/reth", version = "1.0.1", tag = "v1.0.1" } -thiserror = "1.0.44" -serde_json = "1.0.108" +reth-trie-common = { git = "https://github.com/paradigmxyz/reth", version = "1.0.1", tag = "v1.0.1" } +revm-primitives = "=1.1.2" serde = { version = "1.0.196", features = ["derive"] } -zstd = "0.13.0" +serde_json = "1.0.108" +sf-protos = { git = "https://github.com/semiotic-ai/sf-protos.git", version = "0.1.0" } simple-log = "1.6.0" -rayon = "1.8.0" -ethereum-types = "=0.14.1" -bincode = "1.3.3" +thiserror = "1.0.44" tokio = { version = "1.35.0", features = ["full"] } -sf-protos = { git = "https://github.com/semiotic-ai/sf-protos.git", version = "0.1.0" } - -prost = "0.12.3" -prost-types = "0.12.3" +zstd = "0.13.0" [dev-dependencies] criterion = { version = "0.5.1", features = ["html_reports"] }