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

Commit

Permalink
Fixes #36 - Disable default-features for subtle (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
vlopes11 authored Feb 9, 2021
1 parent 165e46a commit 4ed3eab
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 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.3] - 2021-02-09

### Changed

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

## [0.5.2] - 2021-02-09

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

[dependencies]
rand_core = "0.5"
dusk-bytes = "0.1"
subtle = "^2.2.1"
subtle = {version="^2.2.1", default-features=false}
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}
Expand Down

0 comments on commit 4ed3eab

Please sign in to comment.