-
Notifications
You must be signed in to change notification settings - Fork 256
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Use workspace inheritance for dependencies * Fix CI: move algebra outside of curves dir If we clone algebra inside curves, it will look at the curves Cargo.toml for workspace dependencies. Cloning it outside fixes this. * Use workspace package for crate information * Try fix README * WIP * remove trailing space * update crate version numbers to 0.4.2 * bump Rust version * `algebra` path would overwrite the contents of the parent change dir to ark-algebra reference the right filepath in patching step * clone curves into a separate dir * update action versions * remove dir prints * revert keywords inheritance --------- Co-authored-by: William Arnold <will748@gmail.com> Co-authored-by: Weikeng Chen <w.k@berkeley.edu> Co-authored-by: Pratyush Mishra <pratyushmishra@berkeley.edu>
- Loading branch information
1 parent
494830d
commit 5f588ef
Showing
12 changed files
with
271 additions
and
205 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,22 @@ | ||
[package] | ||
name = "ark-ff-asm" | ||
version = "0.4.2" | ||
authors = [ "arkworks contributors" ] | ||
description = "A library for generating x86-64 assembly for finite field multiplication" | ||
homepage = "https://arkworks.rs" | ||
repository = "https://github.com/arkworks-rs/algebra" | ||
documentation = "https://docs.rs/ark-ff-asm/" | ||
version.workspace = true | ||
authors.workspace = true | ||
homepage.workspace = true | ||
repository.workspace = true | ||
categories.workspace = true | ||
include.workspace = true | ||
license.workspace = true | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
rustdocflags.workspace = true | ||
keywords = ["cryptography", "finite-fields", "assembly" ] | ||
categories = ["cryptography"] | ||
include = ["Cargo.toml", "src", "README.md", "LICENSE-APACHE", "LICENSE-MIT"] | ||
license = "MIT OR Apache-2.0" | ||
edition = "2021" | ||
rust-version = "1.60" | ||
|
||
[dependencies] | ||
quote = "1.0.0" | ||
syn = { version = "1.0.0", features = ["full", "parsing", "extra-traits"]} | ||
quote.workspace = true | ||
syn = { workspace = true, features = ["full", "parsing", "extra-traits"]} | ||
|
||
[lib] | ||
proc-macro = true |
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 |
---|---|---|
@@ -1,24 +1,25 @@ | ||
[package] | ||
name = "ark-ff-macros" | ||
version = "0.4.2" | ||
authors = [ "arkworks contributors" ] | ||
description = "A library for generating x86-64 assembly for finite field multiplication" | ||
homepage = "https://arkworks.rs" | ||
repository = "https://github.com/arkworks-rs/algebra" | ||
documentation = "https://docs.rs/ark-ff-asm/" | ||
documentation = "https://docs.rs/ark-ff-macros/" | ||
version.workspace = true | ||
authors.workspace = true | ||
homepage.workspace = true | ||
repository.workspace = true | ||
categories.workspace = true | ||
include.workspace = true | ||
license.workspace = true | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
rustdocflags.workspace = true | ||
keywords = ["cryptography", "finite-fields", "assembly" ] | ||
categories = ["cryptography"] | ||
include = ["Cargo.toml", "src", "README.md", "LICENSE-APACHE", "LICENSE-MIT"] | ||
license = "MIT OR Apache-2.0" | ||
edition = "2021" | ||
rust-version = "1.60" | ||
|
||
[dependencies] | ||
quote = "1.0.0" | ||
proc-macro2 = { version = "1" } | ||
syn = { version = "1.0.0", features = ["full", "parsing", "extra-traits"]} | ||
num-bigint = { version = "0.4", default-features = false } | ||
num-traits = { version = "0.2", default-features = false } | ||
quote.workspace = true | ||
proc-macro2.workspace = true | ||
syn = { workspace = true, features = ["full", "parsing", "extra-traits"]} | ||
num-bigint.workspace = true | ||
num-traits.workspace = true | ||
|
||
[lib] | ||
proc-macro = true |
Oops, something went wrong.