dusk-pki 0.8.0

A library that holds the types and functions required to perform keys operations in Dusk
Documentation
[package]
name = "dusk-pki"
version = "0.8.0"
authors = ["zer0 <matteo@dusk.network>", "Victor Lopez <victor@dusk.network>"]
edition = "2018"

repository = "https://github.com/dusk-network/dusk-pki"
keywords = ["cryptography", "crypto", "pki", "bls12-381"]
categories =["cryptography", "cryptography::cryptocurrencies", "no-std", "wasm"]
description = "A library that holds the types and functions required to perform keys operations in Dusk"
license = "MPL-2.0"
exclude = [".github/workflows/ci.yml", ".gitignore"]

[dependencies]
rand_core = { version = "0.6", default-features = false }
dusk-bytes = "0.1"
subtle = { version = "^2.2.1", default-features = false }
dusk-jubjub = { version = "0.10", default-features = false }
dusk-poseidon = { version = "0.22", default-features = false }
canonical = { version = "0.6", optional = true }
canonical_derive = { version = "0.6", optional = true }

[dev-dependencies]
sha2 = "0.8"

[features]
canon = [
    "canonical",
    "canonical_derive",
    "dusk-jubjub/canon"
]