From cd52beb167faf30d814ef91eed3f6bfa3c828f4a Mon Sep 17 00:00:00 2001 From: Jay White Date: Wed, 18 Sep 2024 11:53:51 -0400 Subject: [PATCH] fix: disable solidity tests --- Cargo.toml | 13 ++++++------- crates/proof-of-sql/Cargo.toml | 8 ++++---- crates/proof-of-sql/src/tests/mod.rs | 2 +- 3 files changed, 11 insertions(+), 12 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index bb5b05e71..94c58ebed 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,8 +10,8 @@ version = "0.0.0" # DO NOT CHANGE THIS LINE! This will be automatically updated license-file = "LICENSE" [workspace.dependencies] -alloy-primitives = { version = "0.8.0" } -alloy-sol-types = { version = "0.8.0" } +# alloy-primitives = { version = "0.8.1" } +# alloy-sol-types = { version = "0.8.1" } ark-bls12-381 = { version = "0.4.0" } ark-curve25519 = { version = "0.4.0" } ark-ec = { version = "0.4.0", features = [ "parallel" ] } @@ -35,7 +35,7 @@ chrono = { version = "0.4.38", default-features = false } curve25519-dalek = { version = "4", features = ["rand_core"] } derive_more = { version = "0.99" } flexbuffers = { version = "2.0.0" } -forge-script = { git = "https://github.com/foundry-rs/foundry", rev = "d663f38be3114ccb94f08fe3b8ea26e27e2043c1" } +# forge-script = { git = "https://github.com/foundry-rs/foundry", tag = "nightly-bf1a39980532f76cd76fd87ee32661180f606435" } indexmap = { version = "2.1" } itertools = { version = "0.13.0" } lalrpop-util = { version = "0.20.0" } @@ -55,13 +55,12 @@ serde = { version = "1" } serde_json = { version = "1" } thiserror = { version = "1" } tiny-keccak = { version = "2.0.2", features = [ "keccak" ] } -tokio = { version = "1.39.3" } +# tokio = { version = "1.39.3" } tracing = { version = "0.1.36" } tracing-opentelemetry = { version = "0.22.0" } tracing-subscriber = { version = "0.3.0" } wasm-bindgen = { version = "0.2.92" } zerocopy = { version = "0.7.34" } -[workspace.lints] -rust.missing_docs = "warn" -clippy.missing_docs_in_private_items = "warn" +[workspace.lints.rust] +missing_docs = "warn" diff --git a/crates/proof-of-sql/Cargo.toml b/crates/proof-of-sql/Cargo.toml index cfcf2473f..496f14a8d 100644 --- a/crates/proof-of-sql/Cargo.toml +++ b/crates/proof-of-sql/Cargo.toml @@ -50,19 +50,19 @@ tracing = { workspace = true, features = ["attributes"] } zerocopy = { workspace = true } [dev-dependencies] -alloy-primitives = { workspace = true } -alloy-sol-types = { workspace = true } +# alloy-primitives = { workspace = true } +# alloy-sol-types = { workspace = true } arrow-csv = { workspace = true } blitzar = { workspace = true } clap = { workspace = true, features = ["derive"] } criterion = { workspace = true, features = ["html_reports"] } -forge-script = { workspace = true } +# forge-script = { workspace = true } opentelemetry = { workspace = true } opentelemetry-jaeger = { workspace = true } rand = { workspace = true, default-features = false } rand_core = { workspace = true, default-features = false } serde_json = { workspace = true } -tokio = { workspace = true } +# tokio = { workspace = true } tracing = { workspace = true } tracing-opentelemetry = { workspace = true } tracing-subscriber = { workspace = true } diff --git a/crates/proof-of-sql/src/tests/mod.rs b/crates/proof-of-sql/src/tests/mod.rs index 80cad8641..13880d03a 100644 --- a/crates/proof-of-sql/src/tests/mod.rs +++ b/crates/proof-of-sql/src/tests/mod.rs @@ -1 +1 @@ -mod sol_test; +// mod sol_test;