[package]
edition = "2021"
rust-version = "1.85"
name = "ms-codec"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reference implementation of the ms1 (HRP `ms`) backup format — BIP-93 codex32 directly applied to secret material (BIP-39 entropy, BIP-32 master seed, xpriv)."
homepage = "https://github.com/bg002h/mnemonic-secret"
documentation = "https://docs.rs/ms-codec"
readme = "README.md"
keywords = [
"bitcoin",
"codex32",
"bip93",
"backup",
"engraving",
]
categories = ["cryptography::cryptocurrencies"]
license = "MIT"
repository = "https://github.com/bg002h/mnemonic-secret"
[lib]
name = "ms_codec"
path = "src/lib.rs"
[[test]]
name = "bch_decode"
path = "tests/bch_decode.rs"
[[test]]
name = "bch_drift"
path = "tests/bch_drift.rs"
[[test]]
name = "bip39_integration"
path = "tests/bip39_integration.rs"
[[test]]
name = "bip93_cross_format"
path = "tests/bip93_cross_format.rs"
[[test]]
name = "bip93_inline_vectors"
path = "tests/bip93_inline_vectors.rs"
[[test]]
name = "forward_compat"
path = "tests/forward_compat.rs"
[[test]]
name = "lint_zeroize_discipline"
path = "tests/lint_zeroize_discipline.rs"
[[test]]
name = "negative"
path = "tests/negative.rs"
[[test]]
name = "parity_smoke"
path = "tests/parity_smoke.rs"
[[test]]
name = "round_trip"
path = "tests/round_trip.rs"
[[test]]
name = "vectors"
path = "tests/vectors.rs"
[dependencies.codex32]
version = "=0.1.0"
[dependencies.zeroize]
version = "1.8"
[dev-dependencies.bip39]
version = "2"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1"