[package]
edition = "2024"
rust-version = "1.95.0"
name = "sourse-hash"
version = "0.0.1-pre-alpha.0"
authors = ["Sourse Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Domain-separated BLAKE3 hashing for Sourse"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/sourse-dev/sourse"
resolver = "2"
[lib]
name = "sourse_hash"
path = "src/lib.rs"
[dependencies.blake3]
version = "1.5"
[dependencies.hex]
version = "0.4"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.sourse-core]
version = "0.0.1-pre-alpha.0"
[dependencies.thiserror]
version = "2.0"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"