forked from filecoin-project/ec-gpu
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: update to Rust 2021 edition (filecoin-project#34)
As the resolver v2 is used on the workspace, it makes sense to upgrade all crates to Rust edition 2021. BREAKING CHANGE: Switch to Rust edition 2021
- Loading branch information
Showing
2 changed files
with
2 additions
and
2 deletions.
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "ec-gpu-gen" | ||
version = "0.4.0" | ||
authors = ["dignifiedquire <[email protected]>"] | ||
edition = "2018" | ||
edition = "2021" | ||
description = "Code generator for field and eliptic curve operations on the GPUs" | ||
homepage = "https://github.com/filecoin-project/ff-cl-gen" | ||
repository = "https://github.com/filecoin-project/ff-cl-gen" | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "ec-gpu" | ||
version = "0.2.0" | ||
authors = ["dignifiedquire <[email protected]>"] | ||
edition = "2018" | ||
edition = "2021" | ||
description = "Traits for field and eliptic curve operations on GPUs" | ||
homepage = "https://github.com/filecoin-project/ff-cl-gen" | ||
repository = "https://github.com/filecoin-project/ff-cl-gen" | ||
|