csv-adapter-bitcoin 0.1.1

Bitcoin adapter for CSV (Client-Side Validation) with UTXO seals and SPV proofs
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 = "csv-adapter-bitcoin"
version = "0.1.1"
authors = ["Amin Razavi, Qwen3"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Bitcoin adapter for CSV (Client-Side Validation) with UTXO seals and SPV proofs"
homepage = "https://github.com/zorvan/csv-adapter"
documentation = "https://docs.rs/csv-adapter-bitcoin"
readme = "README.md"
keywords = [
    "bitcoin",
    "blockchain",
    "cryptography",
    "csv-validation",
    "utxo",
]
categories = ["cryptography::cryptocurrencies"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/zorvan/csv-adapter"

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

[features]
default = []
production = ["rpc"]
rpc = [
    "bitcoincore-rpc",
    "csv-adapter-store",
]
signet-rest = [
    "reqwest",
    "csv-adapter-store",
]

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

[[example]]
name = "signet_fixed_seed"
path = "examples/signet_fixed_seed.rs"
required-features = ["signet-rest"]

[[example]]
name = "signet_funding_addr"
path = "examples/signet_funding_addr.rs"
required-features = ["signet-rest"]

[[example]]
name = "signet_real_tx_demo"
path = "examples/signet_real_tx_demo.rs"
required-features = ["signet-rest"]

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

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

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

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

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

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

[dependencies.bip32]
version = "0.5"
features = [
    "std",
    "mnemonic",
]

[dependencies.bitcoin]
version = "0.30"
features = [
    "serde",
    "rand",
    "bitcoinconsensus",
]

[dependencies.bitcoin_hashes]
version = "0.12"

[dependencies.bitcoincore-rpc]
version = "0.17"
optional = true

[dependencies.csv-adapter-core]
version = "0.1"

[dependencies.csv-adapter-store]
version = "0.1"
optional = true

[dependencies.hex]
version = "0.4"

[dependencies.log]
version = "0.4"

[dependencies.rand]
version = "0.8"

[dependencies.reqwest]
version = "0.12"
features = [
    "json",
    "blocking",
]
optional = true

[dependencies.secp256k1]
version = "0.27"
features = [
    "rand-std",
    "global-context",
]

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.sha2]
version = "0.10"

[dependencies.thiserror]
version = "1.0"

[dev-dependencies.bitcoin_hashes]
version = "0.12"

[dev-dependencies.reqwest]
version = "0.12"
features = [
    "json",
    "blocking",
]

[dev-dependencies.serde_json]
version = "1.0"