From f01ed68dbd3b85a1ac266c2be28cfd021b114ecc Mon Sep 17 00:00:00 2001 From: mmagician Date: Mon, 18 Sep 2023 22:30:26 +0200 Subject: [PATCH] revert keywords inheritance --- Cargo.toml | 1 - bench-templates/Cargo.toml | 2 +- ec/Cargo.toml | 2 +- ff-asm/Cargo.toml | 2 +- ff-macros/Cargo.toml | 2 +- ff/Cargo.toml | 2 +- poly/Cargo.toml | 2 +- serialize-derive/Cargo.toml | 2 +- serialize/Cargo.toml | 2 +- test-curves/Cargo.toml | 2 +- test-templates/Cargo.toml | 2 +- 11 files changed, 10 insertions(+), 11 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 16971f07a..c83469476 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,6 @@ version = "0.4.2" authors = [ "arkworks contributors" ] homepage = "https://arkworks.rs" repository = "https://github.com/arkworks-rs/algebra" -keywords = ["cryptography", "finite-fields", "elliptic-curves", "pairing"] categories = ["cryptography"] include = ["Cargo.toml", "src", "README.md", "LICENSE-APACHE", "LICENSE-MIT", "doc/katex-header.html"] license = "MIT OR Apache-2.0" diff --git a/bench-templates/Cargo.toml b/bench-templates/Cargo.toml index a099eb410..cf268fe5e 100644 --- a/bench-templates/Cargo.toml +++ b/bench-templates/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "ark-algebra-bench-templates" description = "A benchmark library for finite fields and elliptic curves" +keywords = ["cryptography", "finite-fields", "elliptic-curves", "pairing"] documentation = "https://docs.rs/ark-algebra-bench-templates/" version.workspace = true authors.workspace = true homepage.workspace = true repository.workspace = true -keywords.workspace = true categories.workspace = true include.workspace = true license.workspace = true diff --git a/ec/Cargo.toml b/ec/Cargo.toml index abb77ff1d..f58be9279 100644 --- a/ec/Cargo.toml +++ b/ec/Cargo.toml @@ -6,13 +6,13 @@ version.workspace = true authors.workspace = true homepage.workspace = true repository.workspace = true -keywords.workspace = true categories.workspace = true include.workspace = true license.workspace = true edition.workspace = true rust-version.workspace = true rustdocflags.workspace = true +keywords = ["cryptography", "elliptic-curves", "pairing"] [dependencies] ark-std.workspace = true diff --git a/ff-asm/Cargo.toml b/ff-asm/Cargo.toml index 4686c50b1..286343ba4 100644 --- a/ff-asm/Cargo.toml +++ b/ff-asm/Cargo.toml @@ -6,13 +6,13 @@ version.workspace = true authors.workspace = true homepage.workspace = true repository.workspace = true -keywords.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" ] [dependencies] quote.workspace = true diff --git a/ff-macros/Cargo.toml b/ff-macros/Cargo.toml index c60306e36..4d6f43a37 100644 --- a/ff-macros/Cargo.toml +++ b/ff-macros/Cargo.toml @@ -6,13 +6,13 @@ version.workspace = true authors.workspace = true homepage.workspace = true repository.workspace = true -keywords.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" ] [dependencies] quote.workspace = true diff --git a/ff/Cargo.toml b/ff/Cargo.toml index c67214a2d..b201b086b 100644 --- a/ff/Cargo.toml +++ b/ff/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "ark-ff" description = "A library for finite fields" +keywords = ["cryptography", "finite-fields" ] documentation = "https://docs.rs/ark-ff/" version.workspace = true authors.workspace = true homepage.workspace = true repository.workspace = true -keywords.workspace = true categories.workspace = true include.workspace = true license.workspace = true diff --git a/poly/Cargo.toml b/poly/Cargo.toml index 1ea4fb97f..86a7fb94a 100644 --- a/poly/Cargo.toml +++ b/poly/Cargo.toml @@ -6,13 +6,13 @@ version.workspace = true authors.workspace = true homepage.workspace = true repository.workspace = true -keywords.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", "fft", "polynomials"] [dependencies] ark-ff.workspace = true diff --git a/serialize-derive/Cargo.toml b/serialize-derive/Cargo.toml index eac29a1de..f6f3da7a3 100644 --- a/serialize-derive/Cargo.toml +++ b/serialize-derive/Cargo.toml @@ -6,13 +6,13 @@ version.workspace = true authors.workspace = true homepage.workspace = true repository.workspace = true -keywords.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", "elliptic-curves", "serialization"] ################################# Dependencies ################################ diff --git a/serialize/Cargo.toml b/serialize/Cargo.toml index 8ea0dd321..640b91bfb 100644 --- a/serialize/Cargo.toml +++ b/serialize/Cargo.toml @@ -6,13 +6,13 @@ version.workspace = true authors.workspace = true homepage.workspace = true repository.workspace = true -keywords.workspace = true categories.workspace = true include.workspace = true license.workspace = true edition.workspace = true rust-version.workspace = true rustdocflags.workspace = true +keywords = ["cryptography", "serialization" ] [dependencies] ark-serialize-derive = { workspace = true, optional = true } diff --git a/test-curves/Cargo.toml b/test-curves/Cargo.toml index 20ec68cb1..688cf358c 100644 --- a/test-curves/Cargo.toml +++ b/test-curves/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "ark-test-curves" description = "A library for testing ark-ec & ark-poly" +keywords = ["cryptography", "serialization" ] documentation = "https://docs.rs/ark-test-curves/" version.workspace = true authors.workspace = true homepage.workspace = true repository.workspace = true -keywords.workspace = true categories.workspace = true include.workspace = true license.workspace = true diff --git a/test-templates/Cargo.toml b/test-templates/Cargo.toml index 553762272..7451fe8b2 100644 --- a/test-templates/Cargo.toml +++ b/test-templates/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "ark-algebra-test-templates" description = "A library for tests for finite fields, elliptic curves, and pairings" +keywords = ["cryptography", "finite-fields", "elliptic-curves" ] documentation = "https://docs.rs/ark-algebra-test-templates/" version.workspace = true authors.workspace = true homepage.workspace = true repository.workspace = true -keywords.workspace = true categories.workspace = true include.workspace = true license.workspace = true