-
Notifications
You must be signed in to change notification settings - Fork 64
Split orchard into orchard_internal (wide visibility) + orchard (API-preserving shim)
#480
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
8a23aa2
refactor: turn repository into cargo workspace
ebfull 2d9a186
refactor: turn root package into `orchard_internal` crate; expose API…
ebfull 9bcc140
nit: hide orchard_internal crate name from public `Address` docs code…
ebfull 8e9e736
fix: specify `orchard_internal` version via `[workspace.dependencies]`
nuttycom af5beb4
fix: resolve `public/README.md` via symlink to root `README.md`
nuttycom 58aca49
Use `#![forbid(unsafe_code)]` instead of `#![deny(unsafe_code)]`
nuttycom 6c6eb9d
Restore `src/value.rs` module-level documentation
czarcas7ic cc51ea3
Bump README MSRV to 1.85.1
czarcas7ic 5945216
Fix `Cargo.toml` author emails
czarcas7ic a067980
Update `public/LICENSE-MIT` copyright
czarcas7ic bcadd71
Symlink `public/katex-header.html` to root
czarcas7ic 0389ec3
Unblock no_std CI against typenum 1.20+
czarcas7ic 9b27cd2
Merge pull request #3 from valargroup/adam/address-pr-480-review
ebfull 9bb43b6
copyright: update and consolidate copyright information
ebfull 106d2d1
doc: deduplicate / propagate value module documentation
ebfull File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| # orchard_internal | ||
|
|
||
| This is the implementation crate for the Orchard shielded transaction protocol. It is not intended to be used directly. Depend on the [`orchard`](https://crates.io/crates/orchard) crate instead, which re-exports the public API from this crate. |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| [package] | ||
| name = "orchard" | ||
| version = "0.12.0" | ||
| authors = [ | ||
| "Sean Bowe <ewillbefull@gmail.com>", | ||
| "Jack Grigg <thestr4d@gmail.com>", | ||
| "Daira-Emma Hopwood <daira@jacaranda.org>", | ||
| "Ying Tong Lai", | ||
| "Kris Nuttycombe <kris@nutty.land>", | ||
| ] | ||
| edition = "2021" | ||
| rust-version = "1.70" | ||
| description = "The Orchard shielded transaction protocol" | ||
| license = "MIT OR Apache-2.0" | ||
| repository = "https://github.com/zcash/orchard" | ||
| documentation = "https://docs.rs/orchard" | ||
| readme = "README.md" | ||
| categories = ["cryptography::cryptocurrencies"] | ||
| keywords = ["zcash"] | ||
|
|
||
| [package.metadata.docs.rs] | ||
| all-features = true | ||
| rustdoc-args = ["--cfg", "docsrs", "--html-in-header", "katex-header.html"] | ||
|
|
||
| [dependencies] | ||
| __impl = { workspace = true } | ||
|
|
||
| [features] | ||
| default = ["circuit", "multicore", "std"] | ||
| std = ["__impl/std"] | ||
| circuit = ["__impl/circuit"] | ||
| multicore = ["__impl/multicore"] | ||
| unstable-frost = ["__impl/unstable-frost"] | ||
| dev-graph = ["__impl/dev-graph"] | ||
| test-dependencies = ["__impl/test-dependencies"] | ||
|
|
||
| [dev-dependencies] | ||
| incrementalmerkletree = "0.8.1" | ||
| rand = "0.8" | ||
| shardtree = "0.6" | ||
| zcash_note_encryption = "0.4" |
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| ../LICENSE-APACHE |
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| ../LICENSE-MIT |
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| ../README.md |
|
ebfull marked this conversation as resolved.
|
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| ../katex-header.html |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.