This repository was archived by the owner on Feb 26, 2020. It is now read-only.
forked from arkpar/rust-secp256k1
-
Notifications
You must be signed in to change notification settings - Fork 38
Update to upstream #32
Draft
dvdplm
wants to merge
317
commits into
master
Choose a base branch
from
dp/chore/update-to-upstream
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Conversation
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
Use latest version at docs.rs
…ld-flags build.rs: change build flags to eliminate compiler warnings
remove `PublicKey::new()` and `PublicKey::is_valid()`
add feature-gated serde 1.0 support for Signature, SecretKey, PublicKey
bump version to 0.10.0; introduce CHANGELOG.md
…deps Update a couple dependencies
…tion Since making PublicKey::serialize return a fixed-size array, this no longer requires any allocation, so there's no reason not to have it.
improve documentation
…keys add Display impl for the key types which outputs their hex representation
…debug add Debug impl to context object
remove PublicKey::combine
switch to 64-bit compilation; add flag for 32-bit
This feature disables using the bundles sources and will link into existing libsecp256k1 symbols.
Add secp256k1-sys with prefixed sources
Wrap Secp256k1 from raw context in a ManuallyDrop
Alternative: Passing custom hash functions to ECDH
Update changelog for v0.17.0
…-reduce remove some keywoards from secp-sys Cargo.toml
Fix the manifest links property for secp256k1-sys
Fix fuzztarget symbols
* tag '0.17.2': Bump version to 0.17.2 Fix fuzztarget symbols Bump to v0.17.1 Bump secp256k1-sys to v0.1.1 Update Cargo.toml link in vendor script remove some keywoards from secp-sys Cargo.toml Update changelog for v0.17.0
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Sync the Parity fork with upstream and add the
SecretKey
inversion needed bysecret-store
.