-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: prep rustdocs for docs.rs (#9)
# Rationale for this change When pushing to crates.io, we want the docs to look good. # What changes are included in this PR? * The README is embeded in the `proof-of-sql` lib docs. * The link in the README are turned into absolute, rather than relative, link. * A link to the `proof-of-sql` crate is added to the `proof-of-sql-parser` crate. # Are these changes tested? Yes. The docs look good locally. It is possible that pushing to `docs.rs` will result in some other issues, but this is hard to test without pushing.
- Loading branch information
1 parent
e85945d
commit babf296
Showing
3 changed files
with
13 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
//! The Proof of SQL library | ||
#![doc = include_str!("../../../README.md")] | ||
pub mod base; | ||
pub mod proof_primitive; | ||
pub mod sql; |