Skip to content

Commit d6d91f4

Browse files
authored
build: update Cargo.toml files for release (#10)
# 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.
1 parent babf296 commit d6d91f4

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ edition = "2021"
77
exclude = ["**/.gitignore", ".gitignore"]
88
repository = "https://github.com/spaceandtimelabs/sxt-proof-of-sql"
99
version = "0.0.0" # DO NOT CHANGE THIS LINE! This will be automatically updated
10+
license-file = "LICENSE"
1011

1112
[workspace.dependencies]
1213
ark-bls12-381 = { version = "0.4.0" }

crates/proof-of-sql-parser/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ version = { workspace = true }
55
edition = { workspace = true }
66
repository = { workspace = true }
77
build = "build.rs"
8-
description = "Parse provable SQL queries into Intermediate ASTs"
8+
description = "Library for SQL parsing for the Proof of SQL execution engine."
99
exclude = { workspace = true }
10+
license-file = { workspace = true }
1011

1112
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1213
[lib]

crates/proof-of-sql/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ name = "proof-of-sql"
44
version = { workspace = true }
55
edition = { workspace = true }
66
repository = { workspace = true }
7-
description = "Generates and verifies cryptographic proofs for SxT OLTP queries."
7+
description = "High performance zero knowledge (ZK) prover for SQL."
88
exclude = { workspace = true }
9+
license-file = { workspace = true }
910

1011
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1112
[lib]

crates/proof-of-sql/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! The Proof of SQL library
1+
//! High performance zero knowledge (ZK) prover for SQL.
22
#![doc = include_str!("../../../README.md")]
33
pub mod base;
44
pub mod proof_primitive;

0 commit comments

Comments
 (0)