Skip to content

Commit

Permalink
Fixes #61 - Wrong bls dependency (#62)
Browse files Browse the repository at this point in the history
* Fixes #61 - Wrong bls dependency
  • Loading branch information
vlopes11 authored Feb 9, 2021
1 parent c577c5b commit 9e51403
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -19,19 +19,19 @@ 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"
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"]
4 changes: 4 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -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`
Expand Down

0 comments on commit 9e51403

Please sign in to comment.