cyphergraphy 0.3.1

Implementation-independent abstractions for main cryptographic algorithms (part of cyphernet suite)
# 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 are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.69"
name = "cyphergraphy"
version = "0.3.1"
authors = ["Dr. Maxim Orlovsky <orlovsky@cyphernet.io>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Implementation-independent abstractions for main cryptographic algorithms (part of cyphernet suite)"
homepage = "https://cyphernet.io"
readme = "README.md"
keywords = [
    "cyphernet",
    "privacy",
    "secp256k1",
    "curve25519",
    "ed25519",
]
categories = [
    "network-programming",
    "cryptography",
]
license = "Apache-2.0"
repository = "https://github.com/Cyphernet-DAO/rust-cyphernet"

[package.metadata.docs.rs]
all-features = true
rustc-args = [
    "--cfg",
    "docsrs",
]

[features]
bip340 = ["secp256k1"]
blake3 = ["dep:blake3"]
ec25519 = ["dep:ec25519"]
ed25519 = [
    "ec25519/ed25519",
    "ec25519/random",
]
keygen_25519 = ["ec25519/random"]
keygen_secp256k1 = ["secp256k1"]
multibase = ["dep:multibase"]
pem = [
    "ec25519/pem",
    "ec25519/std",
]
secp256k1 = ["dep:secp256k1"]
serde = ["dep:serde"]
sha2 = ["dep:sha2"]
sha3 = ["dep:sha3"]
x25519 = ["ec25519/x25519"]

[lib]
name = "cypher"
path = "src/lib.rs"

[dependencies.amplify]
version = "4.6.0"

[dependencies.blake3]
version = "1.3.3"
optional = true

[dependencies.ec25519]
version = "0.1.0"
optional = true
default-features = false

[dependencies.multibase]
version = "0.9.1"
optional = true

[dependencies.secp256k1]
version = "0.29.0"
features = ["rand"]
optional = true

[dependencies.serde]
version = "1"
features = ["derive"]
optional = true

[dependencies.sha2]
version = "0.10.6"
optional = true

[dependencies.sha3]
version = "0.10.6"
optional = true