Skip to content

Commit

Permalink
fix: fix visibility for usage outside of the crate (#112)
Browse files Browse the repository at this point in the history
# Rationale for this change

Fix visibility so that I can use the proof-of-sql crate as a library for
my Wasm verifier.
<!--
Why are you proposing this change? If this is already explained clearly
in the linked Jira ticket then this section is not needed.
Explaining clearly why changes are proposed helps reviewers understand
your changes and offer better suggestions for fixes.
-->

# What changes are included in this PR?

<!--
There is no need to duplicate the description in the ticket here but it
is sometimes worth providing a summary of the individual changes in this
PR.
-->

# Are these changes tested?

<!--
We typically require tests for all PRs in order to:
1. Prevent the code from being accidentally broken by subsequent changes
2. Serve as another way to document the expected behavior of the code

If tests are not included in your PR, please explain why (for example,
are they covered by existing tests)?
-->
  • Loading branch information
dasebek authored Aug 16, 2024
1 parent 54fbc9a commit afccbe8
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions crates/proof-of-sql/src/sql/proof/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ mod provable_result_column;
pub(crate) use provable_result_column::ProvableResultColumn;

mod provable_query_result;
pub(crate) use provable_query_result::ProvableQueryResult;
pub use provable_query_result::ProvableQueryResult;
#[cfg(test)]
mod provable_query_result_test;

Expand All @@ -41,9 +41,6 @@ pub use proof_exprs::ProofExpr;
pub(crate) use proof_exprs::{HonestProver, ProverEvaluate, ProverHonestyMarker};

mod query_proof;
#[cfg(not(feature = "test"))]
pub(crate) use query_proof::QueryProof;
#[cfg(feature = "test")]
pub use query_proof::QueryProof;
#[cfg(all(test, feature = "blitzar"))]
mod query_proof_test;
Expand Down

0 comments on commit afccbe8

Please sign in to comment.