mirror of
https://github.com/pezkuwichain/revive-differential-tests.git
synced 2026-06-18 04:41:08 +00:00
Fix tests
This commit is contained in:
Generated
-2
@@ -4561,7 +4561,6 @@ version = "0.1.0"
|
|||||||
dependencies = [
|
dependencies = [
|
||||||
"alloy",
|
"alloy",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"dashmap",
|
|
||||||
"revive-common",
|
"revive-common",
|
||||||
"revive-dt-common",
|
"revive-dt-common",
|
||||||
"revive-dt-config",
|
"revive-dt-config",
|
||||||
@@ -4595,7 +4594,6 @@ dependencies = [
|
|||||||
"revive-dt-format",
|
"revive-dt-format",
|
||||||
"serde",
|
"serde",
|
||||||
"serde_json",
|
"serde_json",
|
||||||
"tracing",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
|||||||
@@ -102,14 +102,11 @@ impl SolidityCompiler for Resolc {
|
|||||||
};
|
};
|
||||||
|
|
||||||
let mut command = AsyncCommand::new(&self.resolc_path);
|
let mut command = AsyncCommand::new(&self.resolc_path);
|
||||||
unsafe {
|
command
|
||||||
command
|
.stdin(Stdio::piped())
|
||||||
.stdin(Stdio::piped())
|
.stdout(Stdio::piped())
|
||||||
.stdout(Stdio::piped())
|
.stderr(Stdio::piped())
|
||||||
.stderr(Stdio::piped())
|
.arg("--standard-json");
|
||||||
.arg("--standard-json")
|
|
||||||
.pre_exec(|| Ok(()))
|
|
||||||
};
|
|
||||||
|
|
||||||
if let Some(ref base_path) = base_path {
|
if let Some(ref base_path) = base_path {
|
||||||
command.arg("--base-path").arg(base_path);
|
command.arg("--base-path").arg(base_path);
|
||||||
|
|||||||
@@ -11,7 +11,6 @@ rust-version.workspace = true
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = { workspace = true }
|
anyhow = { workspace = true }
|
||||||
alloy = { workspace = true }
|
alloy = { workspace = true }
|
||||||
dashmap = { workspace = true }
|
|
||||||
tracing = { workspace = true }
|
tracing = { workspace = true }
|
||||||
tokio = { workspace = true }
|
tokio = { workspace = true }
|
||||||
|
|
||||||
|
|||||||
@@ -14,7 +14,6 @@ revive-dt-format = { workspace = true }
|
|||||||
revive-dt-compiler = { workspace = true }
|
revive-dt-compiler = { workspace = true }
|
||||||
|
|
||||||
anyhow = { workspace = true }
|
anyhow = { workspace = true }
|
||||||
tracing = { workspace = true }
|
|
||||||
serde = { workspace = true }
|
serde = { workspace = true }
|
||||||
serde_json = { workspace = true }
|
serde_json = { workspace = true }
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user