litcoinlib 0.29.4

General purpose library for using and interoperating with Litecoin and other cryptocurrencies.
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]
name = "litcoinlib"
version = "0.29.4"
authors = ["Waheed <marspoolxyz@gmail.com>"]
exclude = ["./test_data"]
description = "General purpose library for using and interoperating with Litecoin and other cryptocurrencies."
homepage = "https://github.com/marspoolxyz/rust-litecoin/"
documentation = "https://docs.rs/bitcoin/"
readme = "README.md"
keywords = [
    "crypto",
    "bitcoin",
    "litecoin",
]
license = "CC0-1.0"
repository = "https://github.com/marspoolxyz/rust-litecoin/"

[package.metadata.docs.rs]
features = [
    "std",
    "secp-recovery",
    "base64",
    "rand",
    "use-serde",
    "bitcoinconsensus",
]
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[[example]]
name = "bip32"

[[example]]
name = "handshake"
required-features = ["std"]

[dependencies.base64-compat]
version = "1.0.0"
optional = true

[dependencies.bech32]
version = "0.8.1"
default-features = false

[dependencies.bitcoin_hashes]
version = "0.10.0"
default-features = false

[dependencies.bitcoinconsensus]
version = "0.19.0-3"
optional = true

[dependencies.core2]
version = "0.3.0"
optional = true
default-features = false

[dependencies.hashbrown]
version = "0.8"
optional = true

[dependencies.secp256k1]
version = "0.22.0"
default-features = false

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

[dev-dependencies.bincode]
version = "1.3.1"

[dev-dependencies.ryu]
version = "<1.0.5"

[dev-dependencies.secp256k1]
version = "0.22.0"
features = [
    "recovery",
    "rand-std",
]

[dev-dependencies.serde_json]
version = "<1.0.45"

[dev-dependencies.serde_test]
version = "1"

[features]
base64 = ["base64-compat"]
default = [
    "std",
    "secp-recovery",
]
no-std = [
    "hashbrown",
    "core2/alloc",
    "bitcoin_hashes/alloc",
    "secp256k1/alloc",
]
rand = ["secp256k1/rand-std"]
secp-lowmemory = ["secp256k1/lowmemory"]
secp-recovery = ["secp256k1/recovery"]
std = [
    "secp256k1/std",
    "bitcoin_hashes/std",
    "bech32/std",
]
unstable = []
use-serde = [
    "serde",
    "bitcoin_hashes/serde",
    "secp256k1/serde",
]