From 9e5140398bf8c9af20ba5e2a197c4c319c5e43d6 Mon Sep 17 00:00:00 2001 From: Victor Lopes Date: Tue, 9 Feb 2021 12:24:56 +0100 Subject: [PATCH] Fixes #61 - Wrong bls dependency (#62) * Fixes #61 - Wrong bls dependency --- Cargo.toml | 14 +++++++------- RELEASES.md | 4 ++++ 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 336f838..d850ce0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ homepage = "https://github.com/dusk-network/jubjub" license = "MIT/Apache-2.0" name = "dusk-jubjub" repository = "https://github.com/dusk-network/jubjub" -version = "0.8.0" +version = "0.8.1" keywords = ["cryptography", "jubjub", "zk-snarks", "ecc", "elliptic-curve"] categories =["algorithms", "cryptography", "science"] edition = "2018" @@ -19,13 +19,13 @@ exclude = [".github/workflows/ci.yml", "github/workflows/rust.yml", ] [dependencies] -dusk-bls12_381 = "0.6" -blake2 = "0.9.0" -canonical = {version = "0.5", optional = true} -canonical_derive = {version = "0.5", optional = true} +blake2 = "0.9" +dusk-bytes = "0.1" +dusk-bls12_381 = {version="0.6", default-features=false} subtle = {version="^2.3", default-features = false} rand_core = {version = "0.5", default-features=false} -dusk-bytes = "0.1" +canonical = {version = "0.5", optional = true} +canonical_derive = {version = "0.5", optional = true} [dev-dependencies] rand = "0.7" @@ -33,5 +33,5 @@ rand_xorshift = {version="0.2", default-features = false} [features] default = ["std"] -std = ["dusk-bls12_381/alloc"] +std = ["dusk-bls12_381/default"] canon = ["canonical", "canonical_derive", "dusk-bls12_381/canon"] diff --git a/RELEASES.md b/RELEASES.md index 54f4375..b949e40 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,3 +1,7 @@ +# 0.8.1 +### Change +- Issue #61 - Fix on default-features prop of dusk-bls12_381 dependency + # 0.8.0 ### Change - Update canonical to `v0.5`