signatory 0.12.0

Multi-provider elliptic curve digital signature library with ECDSA and Ed25519 support
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies
#
# If you believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)

[package]
edition = "2018"
name = "signatory"
version = "0.12.0"
authors = ["Tony Arcieri <tony@iqlusion.io>"]
autobenches = false
description = "Multi-provider elliptic curve digital signature library with ECDSA and Ed25519 support"
homepage = "https://github.com/tendermint/signatory"
readme = "README.md"
keywords = ["cryptography", "ecdsa", "ed25519", "signing", "signatures"]
categories = ["authentication", "cryptography", "no-std"]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/tendermint/signatory/tree/develop"
[package.metadata.docs.rs]
all-features = true
[profile.bench]
opt-level = 3
lto = false
codegen-units = 1
debug = false
debug-assertions = false
rpath = false

[profile.release]
opt-level = 3
lto = false
codegen-units = 1
debug = false
debug-assertions = false
rpath = false
panic = "abort"
[dependencies.generic-array]
version = "0.12"
optional = true
default-features = false

[dependencies.getrandom]
version = "0.1"
optional = true
default-features = false

[dependencies.sha2]
version = "0.8"
optional = true
default-features = false

[dependencies.signature]
version = "0.2"
default-features = false

[dependencies.subtle-encoding]
version = "0.3.6"
features = ["base64", "hex"]
optional = true
default-features = false

[dependencies.zeroize]
version = "0.9"
optional = true
default-features = false

[features]
alloc = []
default = ["encoding", "getrandom", "std"]
digest = ["signature/digest"]
ecdsa = ["generic-array", "zeroize"]
ed25519 = ["zeroize"]
encoding = ["subtle-encoding", "zeroize"]
pkcs8 = ["encoding"]
std = ["alloc", "signature/std", "subtle-encoding/std"]
test-vectors = []
[badges.circle-ci]
branch = "develop"
repository = "tendermint/signatory"