File tree 4 files changed +6
-3
lines changed
4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ edition = "2021"
7
7
exclude = [" **/.gitignore" , " .gitignore" ]
8
8
repository = " https://github.com/spaceandtimelabs/sxt-proof-of-sql"
9
9
version = " 0.0.0" # DO NOT CHANGE THIS LINE! This will be automatically updated
10
+ license-file = " LICENSE"
10
11
11
12
[workspace .dependencies ]
12
13
ark-bls12-381 = { version = " 0.4.0" }
Original file line number Diff line number Diff line change @@ -5,8 +5,9 @@ version = { workspace = true }
5
5
edition = { workspace = true }
6
6
repository = { workspace = true }
7
7
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. "
9
9
exclude = { workspace = true }
10
+ license-file = { workspace = true }
10
11
11
12
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
12
13
[lib ]
Original file line number Diff line number Diff line change @@ -4,8 +4,9 @@ name = "proof-of-sql"
4
4
version = { workspace = true }
5
5
edition = { workspace = true }
6
6
repository = { workspace = true }
7
- description = " Generates and verifies cryptographic proofs for SxT OLTP queries ."
7
+ description = " High performance zero knowledge (ZK) prover for SQL ."
8
8
exclude = { workspace = true }
9
+ license-file = { workspace = true }
9
10
10
11
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
11
12
[lib ]
Original file line number Diff line number Diff line change 1
- //! The Proof of SQL library
1
+ //! High performance zero knowledge (ZK) prover for SQL.
2
2
#![ doc = include_str ! ( "../../../README.md" ) ]
3
3
pub mod base;
4
4
pub mod proof_primitive;
You can’t perform that action at this time.
0 commit comments