[package]
edition = "2024"
name = "kobe-core"
version = "0.2.8"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core wallet types for Kobe multi-chain wallet CLI"
readme = false
keywords = [
"crypto",
"wallet",
"bip39",
"mnemonic",
"no_std",
]
categories = [
"cryptography",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/pyroth/kobe"
[features]
alloc = [
"bip39/alloc",
"zeroize/alloc",
]
default = ["std"]
rand = ["bip39/rand"]
std = [
"alloc",
"bip39/std",
"zeroize/std",
]
[lib]
name = "kobe_core"
path = "src/lib.rs"
[dependencies.bip39]
version = "2.1"
default-features = false
[dependencies.zeroize]
version = "1.7"
features = ["derive"]
default-features = false
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.complexity]
level = "warn"
priority = -1
[lints.clippy.correctness]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.clippy.perf]
level = "warn"
priority = -1
[lints.clippy.style]
level = "warn"
priority = -1
[lints.clippy.suspicious]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "warn"
[lints.rust.rust_2024_compatibility]
level = "warn"
priority = -1