Skip to content
This repository has been archived by the owner on Jan 16, 2025. It is now read-only.

Commit

Permalink
Fixes #34 - jubjub dep unset default-features (#35)
Browse files Browse the repository at this point in the history
* Fixes #34 - `jubjub` dep unset `default-features`
  • Loading branch information
vlopes11 authored Feb 9, 2021
1 parent 1b0d045 commit 165e46a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.2] - 2021-02-09

### Changed

- Disable `jubjub` default-features flag [#34](https://github.com/dusk-network/dusk-pki/issues/34)

## [0.5.1] - 2021-02-01

### Changed
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[package]
name = "dusk-pki"
version = "0.5.1"
version = "0.5.2"
authors = ["zer0 <[email protected]>", "Victor Lopez <[email protected]>"]
edition = "2018"

[dependencies]
rand_core = "0.5"
dusk-jubjub = "0.8"
poseidon252 = {git = "https://github.com/dusk-network/Poseidon252", tag = "v0.17.0", default-features = false}
dusk-bytes = "0.1"
subtle = "^2.2.1"
dusk-jubjub = {version="0.8", default-features=false}
poseidon252 = {git = "https://github.com/dusk-network/Poseidon252", tag = "v0.17.0", default-features = false}
canonical = {version = "0.5", optional = true}
canonical_derive = {version = "0.5", optional = true}
dusk-bytes = { version = "0.1" }

[dev-dependencies]
rand ="0.7"
Expand Down

0 comments on commit 165e46a

Please sign in to comment.