[package]
edition = "2024"
name = "winterwallet-core"
version = "0.1.0"
authors = ["Dean Little <hi@deanlittle.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "no_std Winternitz one-time signature primitives with BIP-39-style hierarchical key derivation, designed for efficient Solana on-chain verification."
readme = false
license = "MIT"
[lib]
name = "winterwallet_core"
path = "src/lib.rs"
[[test]]
name = "bip39_vectors"
path = "tests/bip39_vectors.rs"
[[test]]
name = "crypto"
path = "tests/crypto.rs"
[[test]]
name = "mnemonic"
path = "tests/mnemonic.rs"
[dependencies.solana-sha256-hasher]
version = "3.1.0"
default-features = false
[target.'cfg(not(any(target_arch = "bpf", target_os = "solana")))'.dependencies.hmac]
version = "0.12"
default-features = false
[target.'cfg(not(any(target_arch = "bpf", target_os = "solana")))'.dependencies.pbkdf2]
version = "0.12"
features = ["hmac"]
default-features = false
[target.'cfg(not(any(target_arch = "bpf", target_os = "solana")))'.dependencies.sha2]
version = "0.10"
default-features = false
[target.'cfg(not(any(target_arch = "bpf", target_os = "solana")))'.dependencies.solana-sha256-hasher]
version = "3.1.0"
features = ["sha2"]
default-features = false
[target.'cfg(not(any(target_arch = "bpf", target_os = "solana")))'.dependencies.zeroize]
version = "1.8"
features = ["derive"]
default-features = false
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
'cfg(target_os, values("solana"))',
'cfg(target_arch, values("bpf"))',
]