-
Notifications
You must be signed in to change notification settings - Fork 251
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
Post sapling crypto extraction cleanup #1068
Conversation
9928fe1
to
341637c
Compare
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #1068 +/- ##
==========================================
+ Coverage 66.17% 66.19% +0.01%
==========================================
Files 112 112
Lines 10795 10797 +2
==========================================
+ Hits 7144 7147 +3
+ Misses 3651 3650 -1 ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
utACK
@@ -220,45 +91,33 @@ and this library adheres to Rust's notion of | |||
|
|||
### Removed | |||
- `zcash_primitives::constants`: | |||
- All `const` values (moved to `zcash_primitives::sapling::constants`). | |||
- All `const` values (moved to `sapling_crypto::constants`). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I find the use of sapling
, sapling_crypto
, and sapling-crypto
to all mean the same thing a bit confusing.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sapling-crypto
and sapling_crypto
are the same thing in Rust; from a module import perspective, they are both sapling_crypto
. And thus to a downstream user of this crate, they will be importing from use sapling_crypto::foo
unless they rename the dependency. We do rename the dependency in our workspace here to sapling
for parity with orchard
.
341637c
to
35ea2ff
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
utACK
Paired with zcash/sapling-crypto#110.