Rename to Orchard

This commit is contained in:
Jack Grigg 2021-01-08 16:32:36 +00:00
parent 4a4d7ea818
commit 10bae831eb
8 changed files with 14 additions and 14 deletions

View File

@ -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 }}

View File

@ -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

View File

@ -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:

View File

@ -1,5 +1,5 @@
[package]
name = "pollard"
name = "orchard"
version = "0.0.0"
authors = [
"Sean Bowe <sean@electriccoin.co>",
@ -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.

View File

@ -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

View File

@ -3,4 +3,4 @@ authors = ["Jack Grigg"]
language = "en"
multilingual = false
src = "src"
title = "The Pollard Book"
title = "The Orchard Book"

View File

@ -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)

View File

@ -1,4 +1,4 @@
//! # pollard
//! # orchard
#![cfg_attr(docsrs, feature(doc_cfg))]
// Catch documentation errors caused by code changes.