Skip to content

Commit

Permalink
build: update Cargo.toml files for release (#10)
Browse files Browse the repository at this point in the history
# Rationale for this change

A few of the fields in the `Cargo.toml` files that are required to
publish to crates.io are either missing or out of date. This PR fixes
them.
  • Loading branch information
JayWhite2357 authored Jun 13, 2024
1 parent babf296 commit d6d91f4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ edition = "2021"
exclude = ["**/.gitignore", ".gitignore"]
repository = "https://github.com/spaceandtimelabs/sxt-proof-of-sql"
version = "0.0.0" # DO NOT CHANGE THIS LINE! This will be automatically updated
license-file = "LICENSE"

[workspace.dependencies]
ark-bls12-381 = { version = "0.4.0" }
Expand Down
3 changes: 2 additions & 1 deletion crates/proof-of-sql-parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ version = { workspace = true }
edition = { workspace = true }
repository = { workspace = true }
build = "build.rs"
description = "Parse provable SQL queries into Intermediate ASTs"
description = "Library for SQL parsing for the Proof of SQL execution engine."
exclude = { workspace = true }
license-file = { workspace = true }

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
Expand Down
3 changes: 2 additions & 1 deletion crates/proof-of-sql/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ name = "proof-of-sql"
version = { workspace = true }
edition = { workspace = true }
repository = { workspace = true }
description = "Generates and verifies cryptographic proofs for SxT OLTP queries."
description = "High performance zero knowledge (ZK) prover for SQL."
exclude = { workspace = true }
license-file = { workspace = true }

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
Expand Down
2 changes: 1 addition & 1 deletion crates/proof-of-sql/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! The Proof of SQL library
//! High performance zero knowledge (ZK) prover for SQL.
#![doc = include_str!("../../../README.md")]
pub mod base;
pub mod proof_primitive;
Expand Down

0 comments on commit d6d91f4

Please sign in to comment.