-
Notifications
You must be signed in to change notification settings - Fork 134
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
Update dependencies #87
Closed
Closed
Changes from 10 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
0b34a2e
Fix nightly, update rand_core, curve25519-dalek
f32a1e1
Set version to 2.0.0-pre.0
c012698
Actually bump rand.
cb40302
Remove curve25519-dalek patch.
371875f
newline added by editor, not going to fight it.
672f29e
Merge pull request #1 from jcape/features/new-rand-and-curve25519
0dcf640
Merge dalek/develop into mobilecoin
remoun 5d7c338
Bump curve25519-dalek version.
remoun 660d9b5
Update patched curve25519-dalek to point at MCF fork
d95fc91
Update a couple of stale version references.
39abb48
Bump MSRV to 1.51
f966b20
Add mobilecoin to list of branches to run CI on
a205cd5
Actually bump MSRV in workflow
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 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 |
---|---|---|
|
@@ -5,8 +5,7 @@ edition = "2018" | |
# - update version in README.md | ||
# - update html_root_url | ||
# - update CHANGELOG | ||
# - if any changes were made to README.md, mirror them in src/lib.rs docs | ||
version = "1.2.0" | ||
version = "2.0.0-pre.2" | ||
authors = [ | ||
"Isis Lovecruft <[email protected]>", | ||
"DebugSteven <[email protected]>", | ||
|
@@ -34,12 +33,12 @@ travis-ci = { repository = "dalek-cryptography/x25519-dalek", branch = "master"} | |
features = ["nightly", "reusable_secrets", "serde"] | ||
|
||
[dependencies] | ||
curve25519-dalek = { version = "3", default-features = false } | ||
rand_core = { version = "0.5", default-features = false } | ||
curve25519-dalek = { version = "4.0.0-pre.2", default-features = false } | ||
rand_core = { version = "0.6", default-features = false } | ||
# `serde` is renamed to `our_serde` in order to avoid a name collision between | ||
# importing the serde dependency and enabling the curve25519-dalek/serde feature | ||
our_serde = { package = "serde", version = "1", default-features = false, optional = true, features = ["derive"] } | ||
zeroize = { version = "=1.3", default-features = false, features = ["zeroize_derive"] } | ||
zeroize = { version = "1", default-features = false, features = ["zeroize_derive"] } | ||
|
||
[dev-dependencies] | ||
bincode = "1" | ||
|
@@ -59,3 +58,6 @@ u64_backend = ["curve25519-dalek/u64_backend"] | |
u32_backend = ["curve25519-dalek/u32_backend"] | ||
fiat_u64_backend = ["curve25519-dalek/fiat_u64_backend"] | ||
fiat_u32_backend = ["curve25519-dalek/fiat_u32_backend"] | ||
|
||
[patch.crates-io] | ||
curve25519-dalek = { git = "https://github.com/mobilecoinfoundation/curve25519-dalek.git", rev = "8791722e0273762552c9a056eaccb7df6baf44d7" } | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This can be removed once dalek-cryptography/curve25519-dalek#383 is merged and published. |
This file contains 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 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
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.
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.
This patch would unblock the coexistence of this crate with
elliptic-curve
. What would it take to get it released?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.
It needs to be updated to use dalek-cryptography/curve25519-dalek#405 once that's released