Skip to content

Commit

Permalink
refactor(verifier): remove unused tokio-stream dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
rimrakhimov committed Oct 24, 2024
1 parent 2c3a040 commit 777080e
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion smart-contract-verifier/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion smart-contract-verifier/smart-contract-verifier/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ sscanf = "0.3"
tempfile = "3.3"
thiserror = "1.0"
tokio = { version = "1", features = ["macros"] }
tokio-stream = { version = "0.1.16" }
tracing = "0.1"
url = { version = "2.4", features = ["serde"] }
verification-common = { workspace = true }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use anyhow::Context;
use async_trait::async_trait;
use bytes::Bytes;
use foundry_compilers::error::SolcError;
use futures::{TryFutureExt};
use futures::TryFutureExt;
use nonempty::NonEmpty;
use serde::{de::DeserializeOwned, Deserialize};
use serde_json::Value;
Expand Down

0 comments on commit 777080e

Please sign in to comment.