Skip to content
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

Make helium-crypto-rs compilable with the latest ed25519-compact version #69

Merged
merged 4 commits into from
Feb 5, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ serde = { version = "1", features = ["derive"] }
rand_core = "^0.6"
getrandom = "0"
sha2 = { version = "0.10", default-features = false, features = ["std", "oid"] }
ed25519-compact = { version = "2", features = ["std", "traits"] }
ed25519-compact = { version = "=2.0.6", features = ["std", "traits"] }
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Instead of pinning can you fix the issue so we don’t have to keep the ed crate in the past?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Instead of pinning can you fix the issue so we don’t have to keep the ed crate in the past?

Ok will try to do that

p256 = { version = "0.10", default-features = false, features = [
"arithmetic",
"ecdsa",
Expand Down
Loading