csv-adapter-core 0.1.1

Chain-agnostic core traits and types for CSV (Client-Side Validation) adapters
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-core"
version = "0.1.1"
authors = ["Amin Razavi, Qwen3"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Chain-agnostic core traits and types for CSV (Client-Side Validation) adapters"
homepage = "https://github.com/zorvan/csv-adapter"
documentation = "https://docs.rs/csv-adapter-core"
readme = "README.md"
keywords = [
    "blockchain",
    "cryptography",
    "csv-validation",
    "cross-chain",
    "smart-contracts",
]
categories = [
    "cryptography::cryptocurrencies",
    "authentication",
]
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 = ["std"]
std = [
    "serde/std",
    "sha2/std",
    "hex/std",
]
tapret = ["bitcoin"]

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

[[example]]
name = "basic_right"
path = "examples/basic_right.rs"

[[example]]
name = "commitment_chain"
path = "examples/commitment_chain.rs"

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

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

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

[dependencies.bincode]
version = "1.3"

[dependencies.bitcoin]
version = "0.30"
optional = true

[dependencies.ed25519-dalek]
version = "2.0"
features = ["rand_core"]

[dependencies.hex]
version = "0.4"
features = ["serde"]
default-features = false

[dependencies.secp256k1]
version = "0.28"
features = ["rand-std"]

[dependencies.serde]
version = "1.0"
features = ["derive"]
default-features = false

[dependencies.sha2]
version = "0.10"
default-features = false

[dependencies.thiserror]
version = "1.0"

[dev-dependencies.ed25519-dalek]
version = "2.0"
features = ["rand_core"]

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

[dev-dependencies.rand]
version = "0.8"