diff --git a/.github/workflows/bench.yml b/.github/workflows/bench.yml index fb8da74b..43cad43b 100644 --- a/.github/workflows/bench.yml +++ b/.github/workflows/bench.yml @@ -13,7 +13,7 @@ env: jobs: build: - name: Run pollard benchmarks + name: Run orchard benchmarks runs-on: ubuntu-latest env: CRITERION_TOKEN: ${{ secrets.CRITERION_TOKEN }} diff --git a/.github/workflows/book.yml b/.github/workflows/book.yml index 3e8349d1..69c7b07c 100644 --- a/.github/workflows/book.yml +++ b/.github/workflows/book.yml @@ -1,4 +1,4 @@ -name: Pollard book +name: Orchard book on: push: @@ -16,7 +16,7 @@ jobs: with: mdbook-version: '0.4.4' - - name: Build Pollard book + - name: Build Orchard book run: mdbook build book/ - name: Deploy to GitHub Pages diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 69156309..f5411466 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,7 +48,7 @@ jobs: uses: peaceiris/actions-mdbook@v1 with: mdbook-version: '0.4.4' - - name: Test Pollard book + - name: Test Orchard book run: mdbook test book/ clippy: diff --git a/Cargo.toml b/Cargo.toml index 5820ec8a..22ba29ed 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "pollard" +name = "orchard" version = "0.0.0" authors = [ "Sean Bowe ", @@ -8,8 +8,8 @@ authors = [ edition = "2018" description = "Sapling on stilts!" license = "TGPPL" -repository = "https://github.com/zcash/pollard" -documentation = "https://docs.rs/pollard" +repository = "https://github.com/zcash/orchard" +documentation = "https://docs.rs/orchard" readme = "README.md" # We can't publish to crates.io under TGPPL yet. diff --git a/README.md b/README.md index e1e8cbc2..38308111 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ -# pollard [![Crates.io](https://img.shields.io/crates/v/pollard.svg)](https://crates.io/crates/pollard) # +# orchard [![Crates.io](https://img.shields.io/crates/v/orchard.svg)](https://crates.io/crates/orchard) # **IMPORTANT**: This library is being actively developed and should not be used in production software. ## Documentation -- [The Pollard Book](https://zcash.github.io/pollard/) -- [Crate documentation](https://docs.rs/pollard) +- [The Orchard Book](https://zcash.github.io/orchard/) +- [Crate documentation](https://docs.rs/orchard) ## License diff --git a/book/book.toml b/book/book.toml index f2520363..9c221ca0 100644 --- a/book/book.toml +++ b/book/book.toml @@ -3,4 +3,4 @@ authors = ["Jack Grigg"] language = "en" multilingual = false src = "src" -title = "The Pollard Book" +title = "The Orchard Book" diff --git a/book/src/SUMMARY.md b/book/src/SUMMARY.md index 59ff60a9..a9d7bc4c 100644 --- a/book/src/SUMMARY.md +++ b/book/src/SUMMARY.md @@ -1,6 +1,6 @@ -# The Pollard Book +# The Orchard Book -[Pollard](README.md) +[Orchard](README.md) - [Concepts](concepts.md) - [Preliminaries](concepts/preliminaries.md) - [User Documentation](user.md) diff --git a/src/lib.rs b/src/lib.rs index 5be3c139..227a3705 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -//! # pollard +//! # orchard #![cfg_attr(docsrs, feature(doc_cfg))] // Catch documentation errors caused by code changes.