txgate-crypto 0.3.0

Cryptographic operations for TxGate - key management, signing, and verification
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 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.75"
name = "txgate-crypto"
version = "0.3.0"
authors = ["TxGate Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cryptographic operations for TxGate - key management, signing, and verification"
readme = "README.md"
keywords = [
    "txgate",
    "crypto",
    "signing",
    "keys",
]
categories = ["cryptography"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/luisjpf/txgate"

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

[[test]]
name = "comprehensive_coverage"
path = "tests/comprehensive_coverage.rs"

[dependencies.argon2]
version = "0.5"

[dependencies.bitcoin]
version = "0.32"
features = ["serde"]

[dependencies.bs58]
version = "0.5"

[dependencies.chacha20poly1305]
version = "0.10"

[dependencies.dirs]
version = "6.0"

[dependencies.ed25519-dalek]
version = "2.1"
features = [
    "rand_core",
    "zeroize",
]

[dependencies.hex]
version = "0.4"

[dependencies.k256]
version = "0.13"
features = [
    "ecdsa",
    "sha256",
]

[dependencies.rand]
version = "0.8"

[dependencies.sha3]
version = "0.10"

[dependencies.subtle]
version = "2.6"

[dependencies.txgate-core]
version = "0.3.0"

[dependencies.zeroize]
version = "1.8"
features = ["derive"]

[dev-dependencies.mockall]
version = "0.13"

[dev-dependencies.proptest]
version = "1.5"

[dev-dependencies.tempfile]
version = "3.14"

[lints.clippy]
expect_used = "warn"
indexing_slicing = "deny"
panic = "deny"
todo = "warn"
unwrap_used = "deny"

[lints.clippy.all]
level = "warn"
priority = -1

[lints.clippy.nursery]
level = "warn"
priority = -1

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"