-
Notifications
You must be signed in to change notification settings - Fork 87
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
Bump dalek version because of RustSec Advisory #547
Conversation
fuel-vm/Cargo.toml
Outdated
@@ -36,7 +36,7 @@ tai64 = "4.0" | |||
thiserror = "1.0" | |||
|
|||
[dev-dependencies] | |||
ed25519-dalek = "1.0" # TODO: upgrade to 2.0 when it's released, and remove rand below | |||
ed25519-dalek = "2.0.0" | |||
ed25519-dalek_old_rand = { package = "rand", version = "0.7.3" } |
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.
Do we still need to use this one?=)
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.
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.
Yep. That seems to work.
@@ -15,7 +15,7 @@ borrown = "0.1" | |||
coins-bip32 = { version = "0.8", default-features = false, optional = true } | |||
coins-bip39 = { version = "0.8", default-features = false, features = ["english"], optional = true } | |||
ecdsa = { version = "0.16", default-features = false } | |||
ed25519-dalek = { version = "1.0", default-features = false, features = ["u64_backend"] } | |||
ed25519-dalek = { version = "2.0.0", default-features = false } |
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.
Is u64_backend
a default behavior right now?
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 couldn't see what happened to it, so I figured I'd rely on the the compiler to tell me.
No description provided.