commit_verify 0.10.0-rc.1

Commit-verify API for client-side validation
Documentation
[package]
name = "commit_verify"
version = "0.10.0-rc.1"
description = "Commit-verify API for client-side validation"
keywords = ["lnp-bp", "smart-contracts", "blockchain", "commitments"]
categories = ["cryptography"]
authors = { workspace = true }
repository = { workspace = true }
homepage = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
rust-version = { workspace = true }
readme = "README.md"

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

[[bin]]
name = "commit-stl"
required-features = ["stl"]

[dependencies]
amplify = { version = "4.0.0-beta.19", features = ["hex", "apfloat"] }
strict_encoding = "2.0.0-rc.2"
strict_types = { version = "1.0.0-beta.4", optional = true }
rand = { version = "0.8.5", optional = true }
serde_crate = { version = "1.0", package = "serde", optional = true }

[dev-dependencies]
rand = "0.8.5"

[features]
default = []
all = ["rand", "serde", "stl"]
serde = ["serde_crate", "amplify/serde"]
stl = ["strict_types", "strict_types/base64"]

[package.metadata.docs.rs]
features = [ "all" ]