From 243eeee3e4f574499c8ddbc46d9b3ff6d9b2baf0 Mon Sep 17 00:00:00 2001 From: Arsenii Kulikov Date: Thu, 8 Feb 2024 16:21:37 +0300 Subject: [PATCH] fix --- Cargo.lock | 3 ++- Cargo.toml | 9 ++------- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e6a36e337875..c7421accaecc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3105,7 +3105,8 @@ dependencies = [ [[package]] name = "foundry-compilers" version = "0.3.2" -source = "git+https://github.com/foundry-rs/compilers?branch=main#757652ef7fc2f90cfe490319d99dd1cf13f54564" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d88392f8b9848cfac5b11054b14e14268ae5361450bd45169df276f9af748c5" dependencies = [ "alloy-json-abi", "alloy-primitives", diff --git a/Cargo.toml b/Cargo.toml index 3c9be6eeea4c..9beebb39db30 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,7 +28,7 @@ resolver = "2" [workspace.package] version = "0.2.0" edition = "2021" -rust-version = "1.74" # Remember to update clippy.toml as well +rust-version = "1.74" # Remember to update clippy.toml as well authors = ["Foundry Contributors"] license = "MIT OR Apache-2.0" homepage = "https://github.com/foundry-rs/foundry" @@ -173,10 +173,7 @@ alloy-rlp = "0.3.3" solang-parser = "=0.3.3" ## misc -chrono = { version = "0.4", default-features = false, features = [ - "clock", - "std", -] } +chrono = { version = "0.4", default-features = false, features = ["clock", "std"] } color-eyre = "0.6" derive_more = "0.99" eyre = "0.6" @@ -229,5 +226,3 @@ revm = { git = "https://github.com/bluealloy/revm", branch = "reth_freeze" } revm-primitives = { git = "https://github.com/bluealloy/revm", branch = "reth_freeze" } revm-interpreter = { git = "https://github.com/bluealloy/revm", branch = "reth_freeze" } revm-precompile = { git = "https://github.com/bluealloy/revm", branch = "reth_freeze" } - -foundry-compilers = { git = "https://github.com/foundry-rs/compilers", branch = "main" }