Skip to content

Commit

Permalink
fix: disable solidity tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JayWhite2357 authored and iajoiner committed Sep 18, 2024
1 parent f6b0fbe commit cd52beb
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 12 deletions.
13 changes: 6 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" ] }
Expand All @@ -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" }
Expand All @@ -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"
8 changes: 4 additions & 4 deletions crates/proof-of-sql/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion crates/proof-of-sql/src/tests/mod.rs
Original file line number Diff line number Diff line change
@@ -1 +1 @@
mod sol_test;
// mod sol_test;

0 comments on commit cd52beb

Please sign in to comment.